Hi Stephen,

On 6/9/25 3:41 AM, Stephen Hemminger wrote:
Use the header as produced by the kernel:
  $ make headers_install

We use the header as produced by our import script (devtools/linux-
uapi.sh) as defined in the contribution guidelines and approved by the
tech and gov boards.

I'm fine with changing from _UAPI_VDUSE_H_ to _VDUSE_H_, but you need to
change it in the script not to break the checker.

So that it exact match to what would be in distros and other tools.

Signed-off-by: Stephen Hemminger <step...@networkplumber.org>
---
  kernel/linux/uapi/linux/vduse.h | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/linux/uapi/linux/vduse.h b/kernel/linux/uapi/linux/vduse.h
index 68a627d04a..f46269af34 100644
--- a/kernel/linux/uapi/linux/vduse.h
+++ b/kernel/linux/uapi/linux/vduse.h
@@ -1,6 +1,6 @@
  /* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR 
BSD-3-Clause) */
-#ifndef _UAPI_VDUSE_H_
-#define _UAPI_VDUSE_H_
+#ifndef _VDUSE_H_
+#define _VDUSE_H_
#include <linux/types.h> @@ -350,4 +350,4 @@ struct vduse_dev_response {
        };
  };
-#endif /* _UAPI_VDUSE_H_ */
+#endif /* _VDUSE_H_ */

Reply via email to