diff options
author | Mingming Cao <cmm@us.ibm.com> | 2006-10-11 04:20:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:14:15 -0400 |
commit | 617ba13b31fbf505cc21799826639ef24ed94af0 (patch) | |
tree | 2a41e8c993f7c1eed115ad24047d546ba56cbdf5 /fs/ext4/xattr_trusted.c | |
parent | ac27a0ec112a089f1a5102bc8dffc79c8c815571 (diff) |
[PATCH] ext4: rename ext4 symbols to avoid duplication of ext3 symbols
Mingming Cao originally did this work, and Shaggy reproduced it using some
scripts from her.
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/ext4/xattr_trusted.c')
-rw-r--r-- | fs/ext4/xattr_trusted.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/fs/ext4/xattr_trusted.c b/fs/ext4/xattr_trusted.c index 86d91f1186dc..11bd58c95a61 100644 --- a/fs/ext4/xattr_trusted.c +++ b/fs/ext4/xattr_trusted.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/fs/ext3/xattr_trusted.c | 2 | * linux/fs/ext4/xattr_trusted.c |
3 | * Handler for trusted extended attributes. | 3 | * Handler for trusted extended attributes. |
4 | * | 4 | * |
5 | * Copyright (C) 2003 by Andreas Gruenbacher, <a.gruenbacher@computer.org> | 5 | * Copyright (C) 2003 by Andreas Gruenbacher, <a.gruenbacher@computer.org> |
@@ -10,14 +10,14 @@ | |||
10 | #include <linux/capability.h> | 10 | #include <linux/capability.h> |
11 | #include <linux/fs.h> | 11 | #include <linux/fs.h> |
12 | #include <linux/smp_lock.h> | 12 | #include <linux/smp_lock.h> |
13 | #include <linux/ext3_jbd.h> | 13 | #include <linux/ext4_jbd.h> |
14 | #include <linux/ext3_fs.h> | 14 | #include <linux/ext4_fs.h> |
15 | #include "xattr.h" | 15 | #include "xattr.h" |
16 | 16 | ||
17 | #define XATTR_TRUSTED_PREFIX "trusted." | 17 | #define XATTR_TRUSTED_PREFIX "trusted." |
18 | 18 | ||
19 | static size_t | 19 | static size_t |
20 | ext3_xattr_trusted_list(struct inode *inode, char *list, size_t list_size, | 20 | ext4_xattr_trusted_list(struct inode *inode, char *list, size_t list_size, |
21 | const char *name, size_t name_len) | 21 | const char *name, size_t name_len) |
22 | { | 22 | { |
23 | const size_t prefix_len = sizeof(XATTR_TRUSTED_PREFIX)-1; | 23 | const size_t prefix_len = sizeof(XATTR_TRUSTED_PREFIX)-1; |
@@ -35,28 +35,28 @@ ext3_xattr_trusted_list(struct inode *inode, char *list, size_t list_size, | |||
35 | } | 35 | } |
36 | 36 | ||
37 | static int | 37 | static int |
38 | ext3_xattr_trusted_get(struct inode *inode, const char *name, | 38 | ext4_xattr_trusted_get(struct inode *inode, const char *name, |
39 | void *buffer, size_t size) | 39 | void *buffer, size_t size) |
40 | { | 40 | { |
41 | if (strcmp(name, "") == 0) | 41 | if (strcmp(name, "") == 0) |
42 | return -EINVAL; | 42 | return -EINVAL; |
43 | return ext3_xattr_get(inode, EXT3_XATTR_INDEX_TRUSTED, name, | 43 | return ext4_xattr_get(inode, EXT4_XATTR_INDEX_TRUSTED, name, |
44 | buffer, size); | 44 | buffer, size); |
45 | } | 45 | } |
46 | 46 | ||
47 | static int | 47 | static int |
48 | ext3_xattr_trusted_set(struct inode *inode, const char *name, | 48 | ext4_xattr_trusted_set(struct inode *inode, const char *name, |
49 | const void *value, size_t size, int flags) | 49 | const void *value, size_t size, int flags) |
50 | { | 50 | { |
51 | if (strcmp(name, "") == 0) | 51 | if (strcmp(name, "") == 0) |
52 | return -EINVAL; | 52 | return -EINVAL; |
53 | return ext3_xattr_set(inode, EXT3_XATTR_INDEX_TRUSTED, name, | 53 | return ext4_xattr_set(inode, EXT4_XATTR_INDEX_TRUSTED, name, |
54 | value, size, flags); | 54 | value, size, flags); |
55 | } | 55 | } |
56 | 56 | ||
57 | struct xattr_handler ext3_xattr_trusted_handler = { | 57 | struct xattr_handler ext4_xattr_trusted_handler = { |
58 | .prefix = XATTR_TRUSTED_PREFIX, | 58 | .prefix = XATTR_TRUSTED_PREFIX, |
59 | .list = ext3_xattr_trusted_list, | 59 | .list = ext4_xattr_trusted_list, |
60 | .get = ext3_xattr_trusted_get, | 60 | .get = ext4_xattr_trusted_get, |
61 | .set = ext3_xattr_trusted_set, | 61 | .set = ext4_xattr_trusted_set, |
62 | }; | 62 | }; |