diff options
author | Dave Chinner <dchinner@redhat.com> | 2013-08-12 20:49:38 +1000 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-08-12 16:41:29 -0500 |
commit | abec5f2bf991a03b055be36d918cd6f8f58cc83e (patch) | |
tree | 7f440cd0fb510322700b48781800b16b02b19e25 /fs/xfs/Makefile | |
parent | 2b9ab5ab9c4a1f16f11ad883bfd21d5eb55e5bcc (diff) | |
download | linux-abec5f2bf991a03b055be36d918cd6f8f58cc83e.tar.bz2 |
xfs: split out attribute listing code into separate file
The attribute listing code is not used by userspace, so like the
directory readdir code, split it out into a separate file to
minimise the differences between the filesystem shared with libxfs
in userspace.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r-- | fs/xfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile index b6158afa94e7..94df3ec1945f 100644 --- a/fs/xfs/Makefile +++ b/fs/xfs/Makefile @@ -27,6 +27,7 @@ xfs-y += xfs_trace.o # highlevel code xfs-y += xfs_aops.o \ + xfs_attr_list.o \ xfs_bit.o \ xfs_buf.o \ xfs_dfrag.o \ |