From: Bryan Schumaker <bjschuma@xxxxxxxxxx> I ended up with multiple files including this file, so to prevent compiler errors later on I add ifndef guards now. Signed-off-by: Bryan Schumaker <bjschuma@xxxxxxxxxx> --- fs/nfs/internal.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index 5ee9253..1dd22dc 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -2,6 +2,9 @@ * NFS internal definitions */ +#ifndef __LINUX_NFS_INTERNAL_H +#define __LINUX_NFS_INTERNAL_H + #include "nfs4_fs.h" #include <linux/mount.h> #include <linux/security.h> @@ -461,3 +464,4 @@ unsigned int nfs_page_array_len(unsigned int base, size_t len) PAGE_SIZE - 1) >> PAGE_SHIFT; } +#endif /* __LINUX_NFS_INTERNAL_H */ -- 1.7.8.3 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html