mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
9cdce3c074
It was to needed for a couple of months in 2010, until UFS quota support got dropped. Since then it's equivalent to simple_setattr() (i.e. the default) for everything except the regular files. And dropping it there allows to convert all UFS symlinks to {page,simple}_symlink_inode_operations, getting rid of fs/ufs/symlink.c completely. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
9 lines
220 B
Makefile
9 lines
220 B
Makefile
#
|
|
# Makefile for the Linux ufs filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_UFS_FS) += ufs.o
|
|
|
|
ufs-objs := balloc.o cylinder.o dir.o file.o ialloc.o inode.o \
|
|
namei.o super.o util.o
|
|
ccflags-$(CONFIG_UFS_DEBUG) += -DDEBUG
|