diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-08-26 13:51:04 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-08-26 13:51:04 -0400 |
commit | 307cf6e63cfa5025589ea1a06db44439a43819ff (patch) | |
tree | a1c8be1c2af112dc055a16569487cdcd99ebfdb2 | |
parent | 40b78a322365aa1d87770200f7fc7de3b361c11a (diff) |
GFS2: Rename eattr.[ch] as xattr.[ch]
Use the more conventional name for the extended attribute
support code. Update all the places which care.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
-rw-r--r-- | fs/gfs2/Makefile | 2 | ||||
-rw-r--r-- | fs/gfs2/acl.c | 2 | ||||
-rw-r--r-- | fs/gfs2/inode.c | 2 | ||||
-rw-r--r-- | fs/gfs2/ops_inode.c | 2 | ||||
-rw-r--r-- | fs/gfs2/super.c | 2 | ||||
-rw-r--r-- | fs/gfs2/xattr.c (renamed from fs/gfs2/eattr.c) | 2 | ||||
-rw-r--r-- | fs/gfs2/xattr.h (renamed from fs/gfs2/eattr.h) | 0 |
7 files changed, 6 insertions, 6 deletions
diff --git a/fs/gfs2/Makefile b/fs/gfs2/Makefile index 2a4fd894858a..21f7e46da4c0 100644 --- a/fs/gfs2/Makefile +++ b/fs/gfs2/Makefile | |||
@@ -1,6 +1,6 @@ | |||
1 | EXTRA_CFLAGS := -I$(src) | 1 | EXTRA_CFLAGS := -I$(src) |
2 | obj-$(CONFIG_GFS2_FS) += gfs2.o | 2 | obj-$(CONFIG_GFS2_FS) += gfs2.o |
3 | gfs2-y := acl.o bmap.o dir.o eattr.o glock.o \ | 3 | gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \ |
4 | glops.o inode.o log.o lops.o main.o meta_io.o \ | 4 | glops.o inode.o log.o lops.o main.o meta_io.o \ |
5 | aops.o dentry.o export.o file.o \ | 5 | aops.o dentry.o export.o file.o \ |
6 | ops_fstype.o ops_inode.o quota.o \ | 6 | ops_fstype.o ops_inode.o quota.o \ |
diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c index f6777f167260..3fc4e3ac7d84 100644 --- a/fs/gfs2/acl.c +++ b/fs/gfs2/acl.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include "gfs2.h" | 19 | #include "gfs2.h" |
20 | #include "incore.h" | 20 | #include "incore.h" |
21 | #include "acl.h" | 21 | #include "acl.h" |
22 | #include "eattr.h" | 22 | #include "xattr.h" |
23 | #include "glock.h" | 23 | #include "glock.h" |
24 | #include "inode.h" | 24 | #include "inode.h" |
25 | #include "meta_io.h" | 25 | #include "meta_io.h" |
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index f936d2d68138..4f5e442d60d8 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include "acl.h" | 24 | #include "acl.h" |
25 | #include "bmap.h" | 25 | #include "bmap.h" |
26 | #include "dir.h" | 26 | #include "dir.h" |
27 | #include "eattr.h" | 27 | #include "xattr.h" |
28 | #include "glock.h" | 28 | #include "glock.h" |
29 | #include "glops.h" | 29 | #include "glops.h" |
30 | #include "inode.h" | 30 | #include "inode.h" |
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 1ee0c2657467..c3ac18054057 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include "acl.h" | 26 | #include "acl.h" |
27 | #include "bmap.h" | 27 | #include "bmap.h" |
28 | #include "dir.h" | 28 | #include "dir.h" |
29 | #include "eattr.h" | 29 | #include "xattr.h" |
30 | #include "glock.h" | 30 | #include "glock.h" |
31 | #include "inode.h" | 31 | #include "inode.h" |
32 | #include "meta_io.h" | 32 | #include "meta_io.h" |
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index 7a5c128e8776..2e78a3f68a76 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include "trans.h" | 38 | #include "trans.h" |
39 | #include "util.h" | 39 | #include "util.h" |
40 | #include "sys.h" | 40 | #include "sys.h" |
41 | #include "eattr.h" | 41 | #include "xattr.h" |
42 | 42 | ||
43 | #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x) | 43 | #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x) |
44 | 44 | ||
diff --git a/fs/gfs2/eattr.c b/fs/gfs2/xattr.c index d9a9e260d5ac..34ae9ba4c9fe 100644 --- a/fs/gfs2/eattr.c +++ b/fs/gfs2/xattr.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include "gfs2.h" | 18 | #include "gfs2.h" |
19 | #include "incore.h" | 19 | #include "incore.h" |
20 | #include "acl.h" | 20 | #include "acl.h" |
21 | #include "eattr.h" | 21 | #include "xattr.h" |
22 | #include "glock.h" | 22 | #include "glock.h" |
23 | #include "inode.h" | 23 | #include "inode.h" |
24 | #include "meta_io.h" | 24 | #include "meta_io.h" |
diff --git a/fs/gfs2/eattr.h b/fs/gfs2/xattr.h index 4040a188f63b..4040a188f63b 100644 --- a/fs/gfs2/eattr.h +++ b/fs/gfs2/xattr.h | |||