Эх сурвалжийг харах

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>
Steven Whitehouse 15 жил өмнө
parent
commit
307cf6e63c

+ 1 - 1
fs/gfs2/Makefile

@@ -1,6 +1,6 @@
 EXTRA_CFLAGS := -I$(src)
 EXTRA_CFLAGS := -I$(src)
 obj-$(CONFIG_GFS2_FS) += gfs2.o
 obj-$(CONFIG_GFS2_FS) += gfs2.o
-gfs2-y := acl.o bmap.o dir.o eattr.o glock.o \
+gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \
 	glops.o inode.o log.o lops.o main.o meta_io.o \
 	glops.o inode.o log.o lops.o main.o meta_io.o \
 	aops.o dentry.o export.o file.o \
 	aops.o dentry.o export.o file.o \
 	ops_fstype.o ops_inode.o quota.o \
 	ops_fstype.o ops_inode.o quota.o \

+ 1 - 1
fs/gfs2/acl.c

@@ -19,7 +19,7 @@
 #include "gfs2.h"
 #include "gfs2.h"
 #include "incore.h"
 #include "incore.h"
 #include "acl.h"
 #include "acl.h"
-#include "eattr.h"
+#include "xattr.h"
 #include "glock.h"
 #include "glock.h"
 #include "inode.h"
 #include "inode.h"
 #include "meta_io.h"
 #include "meta_io.h"

+ 1 - 1
fs/gfs2/inode.c

@@ -24,7 +24,7 @@
 #include "acl.h"
 #include "acl.h"
 #include "bmap.h"
 #include "bmap.h"
 #include "dir.h"
 #include "dir.h"
-#include "eattr.h"
+#include "xattr.h"
 #include "glock.h"
 #include "glock.h"
 #include "glops.h"
 #include "glops.h"
 #include "inode.h"
 #include "inode.h"

+ 1 - 1
fs/gfs2/ops_inode.c

@@ -26,7 +26,7 @@
 #include "acl.h"
 #include "acl.h"
 #include "bmap.h"
 #include "bmap.h"
 #include "dir.h"
 #include "dir.h"
-#include "eattr.h"
+#include "xattr.h"
 #include "glock.h"
 #include "glock.h"
 #include "inode.h"
 #include "inode.h"
 #include "meta_io.h"
 #include "meta_io.h"

+ 1 - 1
fs/gfs2/super.c

@@ -38,7 +38,7 @@
 #include "trans.h"
 #include "trans.h"
 #include "util.h"
 #include "util.h"
 #include "sys.h"
 #include "sys.h"
-#include "eattr.h"
+#include "xattr.h"
 
 
 #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x)
 #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x)
 
 

+ 1 - 1
fs/gfs2/eattr.c → fs/gfs2/xattr.c

@@ -18,7 +18,7 @@
 #include "gfs2.h"
 #include "gfs2.h"
 #include "incore.h"
 #include "incore.h"
 #include "acl.h"
 #include "acl.h"
-#include "eattr.h"
+#include "xattr.h"
 #include "glock.h"
 #include "glock.h"
 #include "inode.h"
 #include "inode.h"
 #include "meta_io.h"
 #include "meta_io.h"

+ 0 - 0
fs/gfs2/eattr.h → fs/gfs2/xattr.h