summaryrefslogtreecommitdiff
path: root/drivers/staging/lustre/lustre/lvfs/Makefile
diff options
context:
space:
mode:
authorPeng Tao <bergwolf@gmail.com>2013-12-04 01:54:59 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-04 15:28:10 -0800
commit2c185ffa270a95e3699c223a0ee67f560ec0db8c (patch)
tree8898264a2ab1550e9664cf6da1b24496fb2fc25e /drivers/staging/lustre/lustre/lvfs/Makefile
parent9d2834ddae599b82948772786ae0e693277ef7cc (diff)
staging/lustre: don't compile procfs code when CONFIG_PROC_FS is off
The patch changes to conditionally compile procfs related source files. This includes lproc_fid.c, lproc_fld.c, lproc_lov.c, lvfs_lib.c, lproc_mdc.c, lproc_mgc.c, lprocfs_status.c, lproc_osc.c and sec_lproc.c. There is a checkpatch warning about usage of simple_strtoul() in the patch. But it needs to be fixed in a separate patch because it is not related to CONFIG_PROC_FS breakage here. Signed-off-by: Peng Tao <bergwolf@gmail.com> Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/lvfs/Makefile')
-rw-r--r--drivers/staging/lustre/lustre/lvfs/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/lvfs/Makefile b/drivers/staging/lustre/lustre/lvfs/Makefile
index f50b1c574385..e0367c3fc416 100644
--- a/drivers/staging/lustre/lustre/lvfs/Makefile
+++ b/drivers/staging/lustre/lustre/lvfs/Makefile
@@ -1,6 +1,7 @@
obj-$(CONFIG_LUSTRE_FS) += lvfs.o
-lvfs-y := lvfs_linux.o fsfilt.o lvfs_lib.o
+lvfs-y := lvfs_linux.o fsfilt.o
+lvfs-$(CONFIG_PROC_FS) += lvfs_lib.o
ccflags-y := -I$(src)/../include