diff options
author | Cedric Le Goater <[email protected]> | 2006-10-04 02:16:21 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2006-10-04 07:55:24 -0700 |
commit | f7aa2638f288f4c67acdb55947472740bd27d27a (patch) | |
tree | 3710565111a49ac65a190268dd7c0eaab301b478 | |
parent | 42ca09938157105c1f573c831a35e9c3e02eb354 (diff) |
[PATCH] Fix linux/nfsd/const.h for make headers_check
make headers_check fails on linux/nfsd/const.h.
Since linux/sunrpc/msg_prot.h does not seem to export anything interesting
for userspace, this patch moves it in the __KERNEL__ protected section.
Signed-off-by: Cedric Le Goater <[email protected]>
Cc: David Woodhouse <[email protected]>
Cc: Neil Brown <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/nfsd/const.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/nfsd/const.h b/include/linux/nfsd/const.h index f478066f9cd5..f0cc77790527 100644 --- a/include/linux/nfsd/const.h +++ b/include/linux/nfsd/const.h @@ -13,7 +13,6 @@ #include <linux/nfs2.h> #include <linux/nfs3.h> #include <linux/nfs4.h> -#include <linux/sunrpc/msg_prot.h> /* * Maximum protocol version supported by knfsd @@ -29,6 +28,8 @@ #ifdef __KERNEL__ +#include <linux/sunrpc/msg_prot.h> + #ifndef NFS_SUPER_MAGIC # define NFS_SUPER_MAGIC 0x6969 #endif |