Reviewed-by: Yehuda Sadeh <yehuda@xxxxxxxxxxx> On Fri, Aug 10, 2012 at 12:16 PM, Alex Elder <elder@xxxxxxxxxxx> wrote: > If a read-only rbd device is opened for writing in rbd_open(), it > returns without dropping the just-acquired device reference. > > Fix this by moving the read-only check before getting the reference. > > Signed-off-by: Alex Elder <elder@xxxxxxxxxxx> > --- > drivers/block/rbd.c | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > Index: b/drivers/block/rbd.c > =================================================================== > --- a/drivers/block/rbd.c > +++ b/drivers/block/rbd.c > @@ -246,13 +246,12 @@ static int rbd_open(struct block_device > { > struct rbd_device *rbd_dev = bdev->bd_disk->private_data; > > - rbd_get_dev(rbd_dev); > - > - set_device_ro(bdev, rbd_dev->read_only); > - > if ((mode & FMODE_WRITE) && rbd_dev->read_only) > return -EROFS; > > + rbd_get_dev(rbd_dev); > + set_device_ro(bdev, rbd_dev->read_only); > + > return 0; > } > > -- > To unsubscribe from this list: send the line "unsubscribe ceph-devel" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html