summaryrefslogtreecommitdiffstats
path: root/drivers/block/rbd.c
diff options
context:
space:
mode:
authorAlex Elder2012-10-26 06:34:40 +0200
committerSage Weil2013-05-02 06:19:23 +0200
commit770eba6e295fd36e43881176ee0644b9cc2803f1 (patch)
tree2aae2f2850f845082ccfb5f07847db8b651525ba /drivers/block/rbd.c
parentrbd: get and check striping parameters (diff)
downloadkernel-qcow2-linux-770eba6e295fd36e43881176ee0644b9cc2803f1.tar.gz
kernel-qcow2-linux-770eba6e295fd36e43881176ee0644b9cc2803f1.tar.xz
kernel-qcow2-linux-770eba6e295fd36e43881176ee0644b9cc2803f1.zip
rbd: activate support for layered images
Now that we have most everything in place to support layered rbd images, enable support for them in the kernel client. Issue a warning to the log that the support is considered experimental whenever a format 2 layered image is mapped. Note that we also have to claim to support the STRIPINGV2 feature, due to a mistake in the way the rbd CLI set up those flags. This feature can work if it has the right parameters, and safeguards have been put in place to reject those images that do not have compatible parameters. Signed-off-by: Alex Elder <elder@inktank.com> Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'drivers/block/rbd.c')
-rw-r--r--drivers/block/rbd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index c6a3f46bc8d5..4d99d40034e1 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -80,7 +80,7 @@
/* Features supported by this (client software) implementation. */
-#define RBD_FEATURES_SUPPORTED (0)
+#define RBD_FEATURES_SUPPORTED (RBD_FEATURES_ALL)
/*
* An RBD device name will be "rbd#", where the "rbd" comes from
@@ -4724,6 +4724,8 @@ static int rbd_dev_v2_probe(struct rbd_device *rbd_dev)
ret = rbd_dev_v2_parent_info(rbd_dev);
if (ret)
goto out_err;
+ rbd_warn(rbd_dev, "WARNING: kernel support for "
+ "layered rbd images is EXPERIMENTAL!");
}
/* If the image supports fancy striping, get its parameters */