]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
tools headers: Synchronize linux/build_bug.h with the kernel sources
authorArnaldo Carvalho de Melo <acme@redhat.com>
Sun, 22 Mar 2026 21:33:28 +0000 (18:33 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sun, 22 Mar 2026 21:34:39 +0000 (18:34 -0300)
To pick up the changes in:

  6ffd853b0b10e1e2 ("build_bug.h: correct function parameters names in kernel-doc")

That just add some comments, addressing this perf tools build warning:

  Warning: Kernel ABI header differences:
    diff -u tools/include/linux/build_bug.h include/linux/build_bug.h

Please take a look at tools/include/uapi/README for further info on this
synchronization process.

Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Ian Rogers <irogers@google.com>
Cc: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/include/linux/build_bug.h

index ab2aa97bd8ce441d1e9b0eabf9221661d839ed39..406923bd4846c37fe7187c116042e0f69469ba0b 100644 (file)
@@ -32,7 +32,8 @@
 /**
  * BUILD_BUG_ON_MSG - break compile if a condition is true & emit supplied
  *                   error message.
- * @condition: the condition which the compiler should know is false.
+ * @cond: the condition which the compiler should know is false.
+ * @msg: build-time error message
  *
  * See BUILD_BUG_ON for description.
  */
@@ -60,6 +61,7 @@
 
 /**
  * static_assert - check integer constant expression at build time
+ * @expr: expression to be checked
  *
  * static_assert() is a wrapper for the C11 _Static_assert, with a
  * little macro magic to make the message optional (defaulting to the