linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] error-injection: Include definitions for bool and true/false
@ 2019-04-25 14:33 Qu Wenruo
  0 siblings, 0 replies; only message in thread
From: Qu Wenruo @ 2019-04-25 14:33 UTC (permalink / raw)
  To: linux-btrfs, ast, jbacik; +Cc: linux-kernel, kbuild test robot

If error injection user hasn't included definitions for bool and
true/false, kernel may not compile under certain case, just like:

  All errors (new ones prefixed by >>):

     In file included from fs//btrfs/tree-checker.c:18:
  >> include/linux/error-injection.h:15:15: error: unknown type name 'bool'
      static inline bool within_error_injection_list(unsigned long addr)
                    ^~~~
     include/linux/error-injection.h: In function 'within_error_injection_list':
  >> include/linux/error-injection.h:17:9: error: 'false' undeclared (first use in this function)
       return false;
              ^~~~~
     include/linux/error-injection.h:17:9: note: each undeclared identifier is reported only once for each function it appears in

Anyway the fix is straightforward, include <linux/types.h> for bool and
<linux/stddef.h> for true/false in error-injection.h to make it self
contained.

Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Qu Wenruo <wqu@suse.com>
---
 include/linux/error-injection.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/linux/error-injection.h b/include/linux/error-injection.h
index 280c61ecbf20..1a8e09978616 100644
--- a/include/linux/error-injection.h
+++ b/include/linux/error-injection.h
@@ -2,6 +2,8 @@
 #ifndef _LINUX_ERROR_INJECTION_H
 #define _LINUX_ERROR_INJECTION_H
 
+#include <linux/types.h>	/* for bool */
+#include <linux/stddef.h>	/* for true/false */
 #ifdef CONFIG_FUNCTION_ERROR_INJECTION
 
 #include <asm/error-injection.h>
-- 
2.21.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-25 14:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-25 14:33 [PATCH] error-injection: Include definitions for bool and true/false Qu Wenruo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).