diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-06-17 19:44:14 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-07-07 00:39:30 +0300 |
commit | 010d331fc315c96607aa6ecdfebb9fcdd349fc9b (patch) | |
tree | 44e06394ba81faaad442195ef2377e44451f11d5 /fs/ufs/Makefile | |
parent | 0d23cf7616253b7960edeae720b9f5dfdccee445 (diff) | |
download | linux-010d331fc315c96607aa6ecdfebb9fcdd349fc9b.tar.xz |
ufs: move truncate code into inode.c
It is closely tied to block pointers handling there, can benefit
from existing helpers, etc. - no point keeping them apart.
Trimmed the trailing whitespaces in inode.c at the same time.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ufs/Makefile')
-rw-r--r-- | fs/ufs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ufs/Makefile b/fs/ufs/Makefile index 4d0e02b022b3..392db25c0b56 100644 --- a/fs/ufs/Makefile +++ b/fs/ufs/Makefile @@ -5,5 +5,5 @@ obj-$(CONFIG_UFS_FS) += ufs.o ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \ - namei.o super.o symlink.o truncate.o util.o + namei.o super.o symlink.o util.o ccflags-$(CONFIG_UFS_DEBUG) += -DDEBUG |