Message ID | 50857809.2010303@inktank.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Reviewed-by: Josh Durgin <josh.durgin@inktank.com> On 10/22/2012 09:44 AM, Alex Elder wrote: > The name of the "read-only" mapping option was inadvertently changed > in this commit: > > f84344f3 rbd: separate mapping info in rbd_dev > > Revert that hunk to return it to what it should be. > > Signed-off-by: Alex Elder <elder@inktank.com> > --- > drivers/block/rbd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c > index 65e9f1f..d032883 100644 > --- a/drivers/block/rbd.c > +++ b/drivers/block/rbd.c > @@ -397,7 +397,7 @@ enum { > static match_table_t rbd_opts_tokens = { > /* int args above */ > /* string args above */ > - {Opt_read_only, "mapping.read_only"}, > + {Opt_read_only, "read_only"}, > {Opt_read_only, "ro"}, /* Alternate spelling */ > {Opt_read_write, "read_write"}, > {Opt_read_write, "rw"}, /* Alternate spelling */ > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c index 65e9f1f..d032883 100644 --- a/drivers/block/rbd.c +++ b/drivers/block/rbd.c @@ -397,7 +397,7 @@ enum { static match_table_t rbd_opts_tokens = { /* int args above */ /* string args above */ - {Opt_read_only, "mapping.read_only"}, + {Opt_read_only, "read_only"}, {Opt_read_only, "ro"}, /* Alternate spelling */ {Opt_read_write, "read_write"}, {Opt_read_write, "rw"}, /* Alternate spelling */
The name of the "read-only" mapping option was inadvertently changed in this commit: f84344f3 rbd: separate mapping info in rbd_dev Revert that hunk to return it to what it should be. Signed-off-by: Alex Elder <elder@inktank.com> --- drivers/block/rbd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)