diff options
author | Sage Weil <sage@newdream.net> | 2010-07-07 11:38:17 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-08-01 23:11:42 -0400 |
commit | 5cd068c200795537fd78c423254389c8a07e2d20 (patch) | |
tree | 303f92b1eb74bca53ab7c9abb2f8701487ac3883 /fs/ceph | |
parent | 9688f19a188e5ef6ac8a4b6a5b17273028d1090e (diff) |
ceph: clean up header guards
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/ceph_frag.h | 4 | ||||
-rw-r--r-- | fs/ceph/ceph_fs.h | 4 | ||||
-rw-r--r-- | fs/ceph/ceph_hash.h | 4 | ||||
-rw-r--r-- | fs/ceph/crush/crush.h | 4 | ||||
-rw-r--r-- | fs/ceph/crush/hash.h | 4 | ||||
-rw-r--r-- | fs/ceph/crush/mapper.h | 4 | ||||
-rw-r--r-- | fs/ceph/msgr.h | 4 | ||||
-rw-r--r-- | fs/ceph/rados.h | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/fs/ceph/ceph_frag.h b/fs/ceph/ceph_frag.h index 793f50cb7c22..5babb8e95352 100644 --- a/fs/ceph/ceph_frag.h +++ b/fs/ceph/ceph_frag.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _FS_CEPH_FRAG_H | 1 | #ifndef FS_CEPH_FRAG_H |
2 | #define _FS_CEPH_FRAG_H | 2 | #define FS_CEPH_FRAG_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * "Frags" are a way to describe a subset of a 32-bit number space, | 5 | * "Frags" are a way to describe a subset of a 32-bit number space, |
diff --git a/fs/ceph/ceph_fs.h b/fs/ceph/ceph_fs.h index 86fadeb9fd42..663ff9021111 100644 --- a/fs/ceph/ceph_fs.h +++ b/fs/ceph/ceph_fs.h | |||
@@ -9,8 +9,8 @@ | |||
9 | * LGPL2 | 9 | * LGPL2 |
10 | */ | 10 | */ |
11 | 11 | ||
12 | #ifndef _FS_CEPH_CEPH_FS_H | 12 | #ifndef CEPH_FS_H |
13 | #define _FS_CEPH_CEPH_FS_H | 13 | #define CEPH_FS_H |
14 | 14 | ||
15 | #include "msgr.h" | 15 | #include "msgr.h" |
16 | #include "rados.h" | 16 | #include "rados.h" |
diff --git a/fs/ceph/ceph_hash.h b/fs/ceph/ceph_hash.h index 5ac470c433c9..d099c3f90236 100644 --- a/fs/ceph/ceph_hash.h +++ b/fs/ceph/ceph_hash.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _FS_CEPH_HASH_H | 1 | #ifndef FS_CEPH_HASH_H |
2 | #define _FS_CEPH_HASH_H | 2 | #define FS_CEPH_HASH_H |
3 | 3 | ||
4 | #define CEPH_STR_HASH_LINUX 0x1 /* linux dcache hash */ | 4 | #define CEPH_STR_HASH_LINUX 0x1 /* linux dcache hash */ |
5 | #define CEPH_STR_HASH_RJENKINS 0x2 /* robert jenkins' */ | 5 | #define CEPH_STR_HASH_RJENKINS 0x2 /* robert jenkins' */ |
diff --git a/fs/ceph/crush/crush.h b/fs/ceph/crush/crush.h index dcd7e7523700..97e435b191f4 100644 --- a/fs/ceph/crush/crush.h +++ b/fs/ceph/crush/crush.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _CRUSH_CRUSH_H | 1 | #ifndef CEPH_CRUSH_CRUSH_H |
2 | #define _CRUSH_CRUSH_H | 2 | #define CEPH_CRUSH_CRUSH_H |
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | 5 | ||
diff --git a/fs/ceph/crush/hash.h b/fs/ceph/crush/hash.h index ff48e110e4bb..91e884230d5d 100644 --- a/fs/ceph/crush/hash.h +++ b/fs/ceph/crush/hash.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _CRUSH_HASH_H | 1 | #ifndef CEPH_CRUSH_HASH_H |
2 | #define _CRUSH_HASH_H | 2 | #define CEPH_CRUSH_HASH_H |
3 | 3 | ||
4 | #define CRUSH_HASH_RJENKINS1 0 | 4 | #define CRUSH_HASH_RJENKINS1 0 |
5 | 5 | ||
diff --git a/fs/ceph/crush/mapper.h b/fs/ceph/crush/mapper.h index 98e90046fd9f..c46b99c18bb0 100644 --- a/fs/ceph/crush/mapper.h +++ b/fs/ceph/crush/mapper.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _CRUSH_MAPPER_H | 1 | #ifndef CEPH_CRUSH_MAPPER_H |
2 | #define _CRUSH_MAPPER_H | 2 | #define CEPH_CRUSH_MAPPER_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * CRUSH functions for find rules and then mapping an input to an | 5 | * CRUSH functions for find rules and then mapping an input to an |
diff --git a/fs/ceph/msgr.h b/fs/ceph/msgr.h index 892a0298dfdf..680d3d648cac 100644 --- a/fs/ceph/msgr.h +++ b/fs/ceph/msgr.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef __MSGR_H | 1 | #ifndef CEPH_MSGR_H |
2 | #define __MSGR_H | 2 | #define CEPH_MSGR_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * Data types for message passing layer used by Ceph. | 5 | * Data types for message passing layer used by Ceph. |
diff --git a/fs/ceph/rados.h b/fs/ceph/rados.h index 8fcc023056c7..20b5b45fa575 100644 --- a/fs/ceph/rados.h +++ b/fs/ceph/rados.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef __RADOS_H | 1 | #ifndef CEPH_RADOS_H |
2 | #define __RADOS_H | 2 | #define CEPH_RADOS_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * Data types for the Ceph distributed object storage layer RADOS | 5 | * Data types for the Ceph distributed object storage layer RADOS |