Skip to content

Commit

Permalink
GFS2: Rename eattr.[ch] as xattr.[ch]
Browse files Browse the repository at this point in the history
Use the more conventional name for the extended attribute
support code. Update all the places which care.

Signed-off-by: Steven Whitehouse <[email protected]>
  • Loading branch information
swhiteho committed Aug 26, 2009
1 parent 40b78a3 commit 307cf6e
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fs/gfs2/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
EXTRA_CFLAGS := -I$(src)
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 \
aops.o dentry.o export.o file.o \
ops_fstype.o ops_inode.o quota.o \
Expand Down
2 changes: 1 addition & 1 deletion fs/gfs2/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "gfs2.h"
#include "incore.h"
#include "acl.h"
#include "eattr.h"
#include "xattr.h"
#include "glock.h"
#include "inode.h"
#include "meta_io.h"
Expand Down
2 changes: 1 addition & 1 deletion fs/gfs2/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "acl.h"
#include "bmap.h"
#include "dir.h"
#include "eattr.h"
#include "xattr.h"
#include "glock.h"
#include "glops.h"
#include "inode.h"
Expand Down
2 changes: 1 addition & 1 deletion fs/gfs2/ops_inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "acl.h"
#include "bmap.h"
#include "dir.h"
#include "eattr.h"
#include "xattr.h"
#include "glock.h"
#include "inode.h"
#include "meta_io.h"
Expand Down
2 changes: 1 addition & 1 deletion fs/gfs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "trans.h"
#include "util.h"
#include "sys.h"
#include "eattr.h"
#include "xattr.h"

#define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x)

Expand Down
2 changes: 1 addition & 1 deletion fs/gfs2/eattr.c → fs/gfs2/xattr.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "gfs2.h"
#include "incore.h"
#include "acl.h"
#include "eattr.h"
#include "xattr.h"
#include "glock.h"
#include "inode.h"
#include "meta_io.h"
Expand Down
File renamed without changes.

0 comments on commit 307cf6e

Please sign in to comment.