mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 09:34:12 +08:00
rbd: obj_request->completion is unused
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
parent
d8a5b80568
commit
2e584bce70
@ -281,7 +281,6 @@ struct rbd_obj_request {
|
|||||||
int result;
|
int result;
|
||||||
|
|
||||||
rbd_obj_callback_t callback;
|
rbd_obj_callback_t callback;
|
||||||
struct completion completion;
|
|
||||||
|
|
||||||
struct kref kref;
|
struct kref kref;
|
||||||
};
|
};
|
||||||
@ -1734,10 +1733,7 @@ static void rbd_obj_request_complete(struct rbd_obj_request *obj_request)
|
|||||||
{
|
{
|
||||||
dout("%s: obj %p cb %p\n", __func__, obj_request,
|
dout("%s: obj %p cb %p\n", __func__, obj_request,
|
||||||
obj_request->callback);
|
obj_request->callback);
|
||||||
if (obj_request->callback)
|
obj_request->callback(obj_request);
|
||||||
obj_request->callback(obj_request);
|
|
||||||
else
|
|
||||||
complete_all(&obj_request->completion);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rbd_obj_request_error(struct rbd_obj_request *obj_request, int err)
|
static void rbd_obj_request_error(struct rbd_obj_request *obj_request, int err)
|
||||||
@ -2013,7 +2009,6 @@ rbd_obj_request_create(enum obj_request_type type)
|
|||||||
obj_request->which = BAD_WHICH;
|
obj_request->which = BAD_WHICH;
|
||||||
obj_request->type = type;
|
obj_request->type = type;
|
||||||
INIT_LIST_HEAD(&obj_request->links);
|
INIT_LIST_HEAD(&obj_request->links);
|
||||||
init_completion(&obj_request->completion);
|
|
||||||
kref_init(&obj_request->kref);
|
kref_init(&obj_request->kref);
|
||||||
|
|
||||||
dout("%s %p\n", __func__, obj_request);
|
dout("%s %p\n", __func__, obj_request);
|
||||||
|
Loading…
Reference in New Issue
Block a user