]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/patches/suse-2.6.27.31/patches.fixes/ocfs2-remove-duplicate-definition-in-xattr.patch
Merge branch 'master' of git://git.ipfire.org/ipfire-2.x
[people/teissler/ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.fixes / ocfs2-remove-duplicate-definition-in-xattr.patch
CommitLineData
2cb7cef9
BS
1From: Tiger Yang <tiger.yang@oracle.com>
2Date: Thu, 23 Oct 2008 16:34:13 +0800
3Subject: ocfs2: remove duplicate definition in xattr
4
5Include/linux/xattr.h already has the definition about xattr prefix,
6so remove the duplicate definitions in xattr.c.
7
8Signed-off-by: Tiger Yang <tiger.yang@oracle.com>
9Signed-off-by: Joel Becker <joel.becker@oracle.com>
10Signed-off-by: Mark Fasheh <mfasheh@suse.com>
11---
12 fs/ocfs2/xattr.c | 11 ++---------
13 1 files changed, 2 insertions(+), 9 deletions(-)
14
15Index: linux-2.6.27-ocfs2/fs/ocfs2/xattr.c
16===================================================================
17--- linux-2.6.27-ocfs2.orig/fs/ocfs2/xattr.c
18+++ linux-2.6.27-ocfs2/fs/ocfs2/xattr.c
19@@ -4740,14 +4740,11 @@ out:
20 /*
21 * 'trusted' attributes support
22 */
23-
24-#define XATTR_TRUSTED_PREFIX "trusted."
25-
26 static size_t ocfs2_xattr_trusted_list(struct inode *inode, char *list,
27 size_t list_size, const char *name,
28 size_t name_len)
29 {
30- const size_t prefix_len = sizeof(XATTR_TRUSTED_PREFIX) - 1;
31+ const size_t prefix_len = XATTR_TRUSTED_PREFIX_LEN;
32 const size_t total_len = prefix_len + name_len + 1;
33
34 if (list && total_len <= list_size) {
35@@ -4784,18 +4781,14 @@ struct xattr_handler ocfs2_xattr_trusted
36 .set = ocfs2_xattr_trusted_set,
37 };
38
39-
40 /*
41 * 'user' attributes support
42 */
43-
44-#define XATTR_USER_PREFIX "user."
45-
46 static size_t ocfs2_xattr_user_list(struct inode *inode, char *list,
47 size_t list_size, const char *name,
48 size_t name_len)
49 {
50- const size_t prefix_len = sizeof(XATTR_USER_PREFIX) - 1;
51+ const size_t prefix_len = XATTR_USER_PREFIX_LEN;
52 const size_t total_len = prefix_len + name_len + 1;
53 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
54