summaryrefslogtreecommitdiff
path: root/source3/modules/wscript_build
diff options
context:
space:
mode:
authorSam Lang <sam.lang@inktank.com>2013-04-24 12:52:57 -0700
committerJeremy Allison <jra@samba.org>2013-04-24 12:53:18 -0700
commit301a1f919202c90c629a4926ebdf054b9f2fe1e8 (patch)
tree054b23a5f7b5a400edcfbcdeb53a8edd29f18f03 /source3/modules/wscript_build
parent4b97a19e584cb216194c5eca1270ef1926fc9006 (diff)
downloadsamba-301a1f919202c90c629a4926ebdf054b9f2fe1e8.tar.gz
samba-301a1f919202c90c629a4926ebdf054b9f2fe1e8.tar.bz2
samba-301a1f919202c90c629a4926ebdf054b9f2fe1e8.zip
Implements a vfs module for cephfs, a distributed file system
with posix semantics, built on the ceph distributed object storage layer. The ceph vfs module interfaces to the libcephfs userspace API, and is primarily a lightweight wrapper around libcephfs, translating error codes and parameters as necessary. Signed-off-by: Sam Lang <sam.lang@inktank.com> Reviewed-by: Volker Lendecke <Volker.Lendecke@SerNet.DE> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/modules/wscript_build')
-rw-r--r--source3/modules/wscript_build10
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build
index 6726ac309b..df4f59a41f 100644
--- a/source3/modules/wscript_build
+++ b/source3/modules/wscript_build
@@ -50,6 +50,7 @@ VFS_LINUX_XFS_SGID_SRC = 'vfs_linux_xfs_sgid.c'
VFS_TIME_AUDIT_SRC = 'vfs_time_audit.c'
VFS_MEDIA_HARMONY_SRC = 'vfs_media_harmony.c'
VFS_BTRFS_SRC = 'vfs_btrfs.c'
+VFS_CEPH_SRC = 'vfs_ceph.c'
bld.SAMBA3_SUBSYSTEM('NFS4_ACLS',
@@ -503,3 +504,12 @@ bld.SAMBA3_MODULE('perfcount_test',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('perfcount_test'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('perfcount_test'))
+
+bld.SAMBA3_MODULE('vfs_ceph',
+ subsystem='vfs',
+ source=VFS_CEPH_SRC,
+ deps='samba-util cephfs',
+ init_function='',
+ internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_ceph'),
+ enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_ceph'),
+ cflags=bld.CONFIG_GET('CCFLAGS_CEPHFS'))