diff options
author | Yehuda Sadeh <yehuda@hq.newdream.net> | 2010-08-12 16:11:25 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-10-20 15:38:13 -0700 |
commit | 602adf400201636e95c3fed9f31fba54a3d7e844 (patch) | |
tree | 1b10046664d2c380a595ceaaafab2eed835dc937 /net/ceph | |
parent | 3d14c5d2b6e15c21d8e5467dc62d33127c23a644 (diff) | |
download | linux-3.10-602adf400201636e95c3fed9f31fba54a3d7e844.tar.gz linux-3.10-602adf400201636e95c3fed9f31fba54a3d7e844.tar.bz2 linux-3.10-602adf400201636e95c3fed9f31fba54a3d7e844.zip |
rbd: introduce rados block device (rbd), based on libceph
The rados block device (rbd), based on osdblk, creates a block device
that is backed by objects stored in the Ceph distributed object storage
cluster. Each device consists of a single metadata object and data
striped over many data objects.
The rbd driver supports read-only snapshots.
Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/debugfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ceph/debugfs.c b/net/ceph/debugfs.c index 33d04999f4f..27d4ea315d1 100644 --- a/net/ceph/debugfs.c +++ b/net/ceph/debugfs.c @@ -252,8 +252,7 @@ void ceph_debugfs_cleanup(void) { } -int ceph_debugfs_client_init(struct ceph_client *client, - int (*module_debugfs_init)(struct ceph_client *)) +int ceph_debugfs_client_init(struct ceph_client *client) { return 0; } |