rbd: drop a useless local variable
In rbd_req_sync_notify_ack(), a local variable was needlessly being used to hold a null pointer. Just pass NULL instead. Signed-off-by: Alex Elder <elder@inktank.com> Reviewed-by: Yehuda Sadeh <yehuda@inktank.com> Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
This commit is contained in:
@@ -1187,7 +1187,6 @@ static int rbd_req_sync_notify_ack(struct rbd_device *dev,
|
|||||||
const char *obj)
|
const char *obj)
|
||||||
{
|
{
|
||||||
struct ceph_osd_req_op *ops;
|
struct ceph_osd_req_op *ops;
|
||||||
struct page **pages = NULL;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY_ACK, 0);
|
ret = rbd_create_rw_ops(&ops, 1, CEPH_OSD_OP_NOTIFY_ACK, 0);
|
||||||
@@ -1200,7 +1199,7 @@ static int rbd_req_sync_notify_ack(struct rbd_device *dev,
|
|||||||
|
|
||||||
ret = rbd_do_request(NULL, dev, NULL, CEPH_NOSNAP,
|
ret = rbd_do_request(NULL, dev, NULL, CEPH_NOSNAP,
|
||||||
obj, 0, 0, NULL,
|
obj, 0, 0, NULL,
|
||||||
pages, 0,
|
NULL, 0,
|
||||||
CEPH_OSD_FLAG_READ,
|
CEPH_OSD_FLAG_READ,
|
||||||
ops,
|
ops,
|
||||||
1,
|
1,
|
||||||
|
Reference in New Issue
Block a user