summaryrefslogtreecommitdiffstats
path: root/fs/sysfs/Makefile
diff options
context:
space:
mode:
authorTejun Heo2013-10-01 23:42:09 +0200
committerGreg Kroah-Hartman2013-10-06 02:27:40 +0200
commit3124eb1679b28726eacbc8973a891235dca3ed99 (patch)
tree75d826df41f4b3c3c74d565ca5a39974468b611a /fs/sysfs/Makefile
parentsysfs: prepare open path for unified regular / bin file handling (diff)
downloadkernel-qcow2-linux-3124eb1679b28726eacbc8973a891235dca3ed99.tar.gz
kernel-qcow2-linux-3124eb1679b28726eacbc8973a891235dca3ed99.tar.xz
kernel-qcow2-linux-3124eb1679b28726eacbc8973a891235dca3ed99.zip
sysfs: merge regular and bin file handling
With the previous changes, sysfs regular file code is ready to handle bin files too. This patch makes bin files share the regular file path. * sysfs_create/remove_bin_file() are moved to fs/sysfs/file.c. * sysfs_init_inode() is updated to use the new sysfs_bin_operations instead of bin_fops for bin files. * fs/sysfs/bin.c and the related pieces are removed. This patch shouldn't introduce any behavior difference to bin file accesses. Overall, this unification reduces the amount of duplicate logic, makes behaviors more consistent and paves the road for building simpler and more versatile interface which will allow other subsystems to make use of sysfs for their pseudo filesystems. v2: Stale fs/sysfs/bin.c reference dropped from Documentation/DocBook/filesystems.tmpl. Reported by kbuild test robot. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Kay Sievers <kay@vrfy.org> Cc: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/sysfs/Makefile')
-rw-r--r--fs/sysfs/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/sysfs/Makefile b/fs/sysfs/Makefile
index 7a1ceb946b80..8876ac183373 100644
--- a/fs/sysfs/Makefile
+++ b/fs/sysfs/Makefile
@@ -2,5 +2,4 @@
# Makefile for the sysfs virtual filesystem
#
-obj-y := inode.o file.o dir.o symlink.o mount.o bin.o \
- group.o
+obj-y := inode.o file.o dir.o symlink.o mount.o group.o