diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2019-06-14 18:00:19 +0200 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2019-07-08 14:01:45 +0200 |
commit | 4cf3e6dff7ea517544e1da7810a0b3ebba380d2c (patch) | |
tree | 7a2a10f6dcfb7548e76e57016c0fbc0c528749ef /net/ceph | |
parent | 68ada915eea10f36760ffe414810390a104df093 (diff) | |
download | linux-4cf3e6dff7ea517544e1da7810a0b3ebba380d2c.tar.gz linux-4cf3e6dff7ea517544e1da7810a0b3ebba380d2c.tar.bz2 linux-4cf3e6dff7ea517544e1da7810a0b3ebba380d2c.zip |
libceph: export osd_req_op_data() macro
We already have one exported wrapper around it for extent.osd_data and
rbd_object_map_update_finish() needs another one for cls.request_data.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Dongsheng Yang <dongsheng.yang@easystack.cn>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Diffstat (limited to 'net/ceph')
-rw-r--r-- | net/ceph/osd_client.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index a90fbfce7e93..0b2df09b2554 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -171,14 +171,6 @@ static void ceph_osd_data_bvecs_init(struct ceph_osd_data *osd_data, osd_data->num_bvecs = num_bvecs; } -#define osd_req_op_data(oreq, whch, typ, fld) \ -({ \ - struct ceph_osd_request *__oreq = (oreq); \ - unsigned int __whch = (whch); \ - BUG_ON(__whch >= __oreq->r_num_ops); \ - &__oreq->r_ops[__whch].typ.fld; \ -}) - static struct ceph_osd_data * osd_req_op_raw_data_in(struct ceph_osd_request *osd_req, unsigned int which) { |