diff options
-rw-r--r-- | fs/ocfs2/cluster/endian.h | 30 | ||||
-rw-r--r-- | fs/ocfs2/cluster/nodemanager.c | 1 | ||||
-rw-r--r-- | fs/ocfs2/dlm/dlmast.c | 1 | ||||
-rw-r--r-- | fs/ocfs2/endian.h | 45 | ||||
-rw-r--r-- | fs/ocfs2/ocfs2.h | 1 | ||||
-rw-r--r-- | include/linux/byteorder/generic.h | 30 |
6 files changed, 30 insertions, 78 deletions
diff --git a/fs/ocfs2/cluster/endian.h b/fs/ocfs2/cluster/endian.h deleted file mode 100644 index 2df9082f4e35..000000000000 --- a/fs/ocfs2/cluster/endian.h +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | /* -*- mode: c; c-basic-offset: 8; -*- | ||
2 | * vim: noexpandtab sw=8 ts=8 sts=0: | ||
3 | * | ||
4 | * Copyright (C) 2005 Oracle. All rights reserved. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public | ||
17 | * License along with this program; if not, write to the | ||
18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
19 | * Boston, MA 021110-1307, USA. | ||
20 | */ | ||
21 | |||
22 | #ifndef OCFS2_CLUSTER_ENDIAN_H | ||
23 | #define OCFS2_CLUSTER_ENDIAN_H | ||
24 | |||
25 | static inline void be32_add_cpu(__be32 *var, u32 val) | ||
26 | { | ||
27 | *var = cpu_to_be32(be32_to_cpu(*var) + val); | ||
28 | } | ||
29 | |||
30 | #endif /* OCFS2_CLUSTER_ENDIAN_H */ | ||
diff --git a/fs/ocfs2/cluster/nodemanager.c b/fs/ocfs2/cluster/nodemanager.c index af2070da308b..709fba25bf7e 100644 --- a/fs/ocfs2/cluster/nodemanager.c +++ b/fs/ocfs2/cluster/nodemanager.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <linux/sysctl.h> | 24 | #include <linux/sysctl.h> |
25 | #include <linux/configfs.h> | 25 | #include <linux/configfs.h> |
26 | 26 | ||
27 | #include "endian.h" | ||
28 | #include "tcp.h" | 27 | #include "tcp.h" |
29 | #include "nodemanager.h" | 28 | #include "nodemanager.h" |
30 | #include "heartbeat.h" | 29 | #include "heartbeat.h" |
diff --git a/fs/ocfs2/dlm/dlmast.c b/fs/ocfs2/dlm/dlmast.c index 2fd8bded38f3..644bee55d8ba 100644 --- a/fs/ocfs2/dlm/dlmast.c +++ b/fs/ocfs2/dlm/dlmast.c | |||
@@ -43,7 +43,6 @@ | |||
43 | #include "cluster/heartbeat.h" | 43 | #include "cluster/heartbeat.h" |
44 | #include "cluster/nodemanager.h" | 44 | #include "cluster/nodemanager.h" |
45 | #include "cluster/tcp.h" | 45 | #include "cluster/tcp.h" |
46 | #include "cluster/endian.h" | ||
47 | 46 | ||
48 | #include "dlmapi.h" | 47 | #include "dlmapi.h" |
49 | #include "dlmcommon.h" | 48 | #include "dlmcommon.h" |
diff --git a/fs/ocfs2/endian.h b/fs/ocfs2/endian.h deleted file mode 100644 index 1942e09f6ee5..000000000000 --- a/fs/ocfs2/endian.h +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | /* -*- mode: c; c-basic-offset: 8; -*- | ||
2 | * vim: noexpandtab sw=8 ts=8 sts=0: | ||
3 | * | ||
4 | * Copyright (C) 2005 Oracle. All rights reserved. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public | ||
17 | * License along with this program; if not, write to the | ||
18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | ||
19 | * Boston, MA 021110-1307, USA. | ||
20 | */ | ||
21 | |||
22 | #ifndef OCFS2_ENDIAN_H | ||
23 | #define OCFS2_ENDIAN_H | ||
24 | |||
25 | static inline void le16_add_cpu(__le16 *var, u16 val) | ||
26 | { | ||
27 | *var = cpu_to_le16(le16_to_cpu(*var) + val); | ||
28 | } | ||
29 | |||
30 | static inline void le32_add_cpu(__le32 *var, u32 val) | ||
31 | { | ||
32 | *var = cpu_to_le32(le32_to_cpu(*var) + val); | ||
33 | } | ||
34 | |||
35 | static inline void le64_add_cpu(__le64 *var, u64 val) | ||
36 | { | ||
37 | *var = cpu_to_le64(le64_to_cpu(*var) + val); | ||
38 | } | ||
39 | |||
40 | static inline void be32_add_cpu(__be32 *var, u32 val) | ||
41 | { | ||
42 | *var = cpu_to_be32(be32_to_cpu(*var) + val); | ||
43 | } | ||
44 | |||
45 | #endif /* OCFS2_ENDIAN_H */ | ||
diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index e8b7292e0152..6546cef212e3 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h | |||
@@ -43,7 +43,6 @@ | |||
43 | #include "dlm/dlmapi.h" | 43 | #include "dlm/dlmapi.h" |
44 | 44 | ||
45 | #include "ocfs2_fs.h" | 45 | #include "ocfs2_fs.h" |
46 | #include "endian.h" | ||
47 | #include "ocfs2_lockid.h" | 46 | #include "ocfs2_lockid.h" |
48 | 47 | ||
49 | /* Most user visible OCFS2 inodes will have very few pieces of | 48 | /* Most user visible OCFS2 inodes will have very few pieces of |
diff --git a/include/linux/byteorder/generic.h b/include/linux/byteorder/generic.h index 3dc715b02500..d3771551fdd9 100644 --- a/include/linux/byteorder/generic.h +++ b/include/linux/byteorder/generic.h | |||
@@ -146,6 +146,36 @@ | |||
146 | #define htons(x) ___htons(x) | 146 | #define htons(x) ___htons(x) |
147 | #define ntohs(x) ___ntohs(x) | 147 | #define ntohs(x) ___ntohs(x) |
148 | 148 | ||
149 | static inline void le16_add_cpu(__le16 *var, u16 val) | ||
150 | { | ||
151 | *var = cpu_to_le16(le16_to_cpu(*var) + val); | ||
152 | } | ||
153 | |||
154 | static inline void le32_add_cpu(__le32 *var, u32 val) | ||
155 | { | ||
156 | *var = cpu_to_le32(le32_to_cpu(*var) + val); | ||
157 | } | ||
158 | |||
159 | static inline void le64_add_cpu(__le64 *var, u64 val) | ||
160 | { | ||
161 | *var = cpu_to_le64(le64_to_cpu(*var) + val); | ||
162 | } | ||
163 | |||
164 | static inline void be16_add_cpu(__be16 *var, u16 val) | ||
165 | { | ||
166 | *var = cpu_to_be16(be16_to_cpu(*var) + val); | ||
167 | } | ||
168 | |||
169 | static inline void be32_add_cpu(__be32 *var, u32 val) | ||
170 | { | ||
171 | *var = cpu_to_be32(be32_to_cpu(*var) + val); | ||
172 | } | ||
173 | |||
174 | static inline void be64_add_cpu(__be64 *var, u64 val) | ||
175 | { | ||
176 | *var = cpu_to_be64(be64_to_cpu(*var) + val); | ||
177 | } | ||
178 | |||
149 | #endif /* KERNEL */ | 179 | #endif /* KERNEL */ |
150 | 180 | ||
151 | #endif /* _LINUX_BYTEORDER_GENERIC_H */ | 181 | #endif /* _LINUX_BYTEORDER_GENERIC_H */ |