lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 24 Mar 2009 10:14:32 +0200
From:	Pekka Enberg <penberg@...helsinki.fi>
To:	mingo@...e.hu
Cc:	eduard.munteanu@...ux360.ro, linux-kernel@...r.kernel.org
Subject: [PATCH 2/2] kmemtrace: fix build brekage in linux/fs.h

From: Pekka Enberg <penberg@...helsinki.fi>

Impact: fix build

This patch fixes up the following build breakage caused by commit
e251ea2fa52321009940fad02238ef1c369531ae ("rcu: don't include unnecessary
headers, allow kmemtrace w/ tracepoints").

    CC      init/do_mounts_initrd.o
  In file included from init/do_mounts_initrd.c:3:
  include/linux/fs.h: In function ‘alloc_secdata’:
  include/linux/fs.h:2237: error: implicit declaration of function ‘get_zeroed_page’
  include/linux/fs.h:2237: error: ‘GFP_KERNEL’ undeclared (first use in this function)
  include/linux/fs.h:2237: error: (Each undeclared identifier is reported only once
  include/linux/fs.h:2237: error: for each function it appears in.)
  include/linux/fs.h: In function ‘free_secdata’:
  include/linux/fs.h:2242: error: implicit declaration of function ‘free_page’
  In file included from include/linux/slab.h:12,
                   from include/linux/percpu.h:5,
                   from include/linux/percpu_counter.h:13,
                   from include/linux/ext2_fs_sb.h:20,
                   from include/linux/ext2_fs.h:69,
                   from init/do_mounts_initrd.c:5:
  include/linux/gfp.h: At top level:
  include/linux/gfp.h:223: error: conflicting types for ‘get_zeroed_page’
  include/linux/fs.h:2237: error: previous implicit declaration of ‘get_zeroed_page’ was here
  make[1]: *** [init/do_mounts_initrd.o] Error 1
  make: *** [init] Error 2

Cc: Eduard - Gabriel Munteanu <eduard.munteanu@...ux360.ro>
Signed-off-by: Pekka Enberg <penberg@...helsinki.fi>
---
 include/linux/fs.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/include/linux/fs.h b/include/linux/fs.h
index 92734c0..add95da 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -8,6 +8,7 @@
 
 #include <linux/limits.h>
 #include <linux/ioctl.h>
+#include <linux/gfp.h>
 
 /*
  * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
-- 
1.5.4.3



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists