Skip to content

Commit

Permalink
Orangefs: kernel client part 7
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
  • Loading branch information
hubcapsc committed Oct 3, 2015
1 parent 74a552a commit 07f0196
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions fs/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ menuconfig MISC_FILESYSTEMS

if MISC_FILESYSTEMS

source "fs/orangefs/Kconfig"
source "fs/adfs/Kconfig"
source "fs/affs/Kconfig"
source "fs/ecryptfs/Kconfig"
Expand Down
1 change: 1 addition & 0 deletions fs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ obj-$(CONFIG_AUTOFS4_FS) += autofs4/
obj-$(CONFIG_ADFS_FS) += adfs/
obj-$(CONFIG_FUSE_FS) += fuse/
obj-$(CONFIG_OVERLAY_FS) += overlayfs/
obj-$(CONFIG_ORANGEFS_FS) += orangefs/
obj-$(CONFIG_UDF_FS) += udf/
obj-$(CONFIG_SUN_OPENPROMFS) += openpromfs/
obj-$(CONFIG_OMFS_FS) += omfs/
Expand Down
6 changes: 6 additions & 0 deletions fs/orangefs/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
config ORANGEFS_FS
tristate "ORANGEFS (Powered by PVFS) support"
select FS_POSIX_ACL
help
Orange is a parallel file system designed for use on high end
computing (HEC) systems.
10 changes: 10 additions & 0 deletions fs/orangefs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Makefile for the ORANGEFS filesystem.
#

obj-$(CONFIG_ORANGEFS_FS) += orangefs.o

orangefs-objs := acl.o file.o pvfs2-cache.o pvfs2-utils.o xattr.o dcache.o \
inode.o pvfs2-sysfs.o pvfs2-mod.o super.o devpvfs2-req.o \
namei.o symlink.o dir.o pvfs2-bufmap.o \
pvfs2-debugfs.o waitqueue.o

0 comments on commit 07f0196

Please sign in to comment.