diff options
author | Suresh Jayaraman <sjayaraman@suse.de> | 2010-06-22 20:52:50 +0530 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2010-08-02 12:40:32 +0000 |
commit | abd2e44dca2c5d65e047224c6ba4b4c8059f97f8 (patch) | |
tree | b6f71a269e58ba5aecf6b71219178e1510e0b6af /fs/cifs | |
parent | 9fe6206f400646a2322096b56c59891d530e8d51 (diff) | |
download | linux-3.10-abd2e44dca2c5d65e047224c6ba4b4c8059f97f8.tar.gz linux-3.10-abd2e44dca2c5d65e047224c6ba4b4c8059f97f8.tar.bz2 linux-3.10-abd2e44dca2c5d65e047224c6ba4b4c8059f97f8.zip |
cifs: guard cifsglob.h against multiple inclusion
Add conditional compile macros to guard the header file against multiple
inclusion.
Signed-off-by: Suresh Jayaraman <sjayaraman@suse.de>
Acked-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifsglob.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index a88479ceaad..6b2c39d809f 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -16,6 +16,9 @@ * the GNU Lesser General Public License for more details. * */ +#ifndef _CIFS_GLOB_H +#define _CIFS_GLOB_H + #include <linux/in.h> #include <linux/in6.h> #include <linux/slab.h> @@ -733,3 +736,5 @@ GLOBAL_EXTERN unsigned int cifs_min_small; /* min size of small buf pool */ GLOBAL_EXTERN unsigned int cifs_max_pending; /* MAX requests at once to server*/ extern const struct slow_work_ops cifs_oplock_break_ops; + +#endif /* _CIFS_GLOB_H */ |