diff options
author | Amir Goldstein <amir73il@users.sf.net> | 2011-06-27 19:40:50 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-06-27 19:40:50 -0400 |
commit | dae1e52cb1267bf8f52e5e47a80fab566d7e8aa4 (patch) | |
tree | 2537e9f8f138e4935f88e605244174c9b2400bf4 /fs/ext4/Makefile | |
parent | 9f125d641beb898f5bf2fe69583192c18043517a (diff) | |
download | talos-op-linux-dae1e52cb1267bf8f52e5e47a80fab566d7e8aa4.tar.gz talos-op-linux-dae1e52cb1267bf8f52e5e47a80fab566d7e8aa4.zip |
ext4: move ext4_ind_* functions from inode.c to indirect.c
This patch moves functions from inode.c to indirect.c.
The moved functions are ext4_ind_* functions and their helpers.
Functions called from inode.c are declared extern.
Signed-off-by: Amir Goldstein <amir73il@users.sf.net>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/Makefile')
-rw-r--r-- | fs/ext4/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/Makefile b/fs/ext4/Makefile index 04109460ba9e..56fd8f865930 100644 --- a/fs/ext4/Makefile +++ b/fs/ext4/Makefile @@ -7,7 +7,7 @@ obj-$(CONFIG_EXT4_FS) += ext4.o ext4-y := balloc.o bitmap.o dir.o file.o fsync.o ialloc.o inode.o page-io.o \ ioctl.o namei.o super.o symlink.o hash.o resize.o extents.o \ ext4_jbd2.o migrate.o mballoc.o block_validity.o move_extent.o \ - mmp.o + mmp.o indirect.o ext4-$(CONFIG_EXT4_FS_XATTR) += xattr.o xattr_user.o xattr_trusted.o ext4-$(CONFIG_EXT4_FS_POSIX_ACL) += acl.o |