diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2018-09-26 19:12:07 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2018-10-22 10:28:20 +0200 |
commit | 24639ce56040a8ea890ad8836068c1ad8bd177c7 (patch) | |
tree | 36a7cf1d0582c40e4063bd818b9225f6bf080202 /include/linux/ceph/osd_client.h | |
parent | 94e6992bb560be8bffb47f287194adf070b57695 (diff) | |
download | talos-obmc-linux-24639ce56040a8ea890ad8836068c1ad8bd177c7.tar.gz talos-obmc-linux-24639ce56040a8ea890ad8836068c1ad8bd177c7.zip |
libceph: osd_req_op_cls_init() doesn't need to take opcode
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'include/linux/ceph/osd_client.h')
-rw-r--r-- | include/linux/ceph/osd_client.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h index 02096da01845..f3e828460c91 100644 --- a/include/linux/ceph/osd_client.h +++ b/include/linux/ceph/osd_client.h @@ -444,9 +444,8 @@ extern void osd_req_op_cls_response_data_pages(struct ceph_osd_request *, struct page **pages, u64 length, u32 alignment, bool pages_from_pool, bool own_pages); -extern int osd_req_op_cls_init(struct ceph_osd_request *osd_req, - unsigned int which, u16 opcode, - const char *class, const char *method); +int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which, + const char *class, const char *method); extern int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which, u16 opcode, const char *name, const void *value, size_t size, u8 cmp_op, u8 cmp_mode); |