Re: [RFC v3 1/4] kernel/api: introduce kernel API specification framework
From: Askar Safin <hidden>
Date: 2025-07-16 07:21:55
Also in:
linux-doc, lkml, tools
From: Askar Safin <hidden>
Date: 2025-07-16 07:21:55
Also in:
linux-doc, lkml, tools
+ KAPI_PARAM_IN = (1 << 0), + KAPI_PARAM_OUT = (1 << 1), + KAPI_PARAM_INOUT = (1 << 2),
There is no need for KAPI_PARAM_INOUT. It could be replaced by KAPI_PARAM_IN | KAPI_PARAM_OUT -- Askar Safin