|
@@ -776,12 +776,10 @@ int osd_req_op_cls_init(struct ceph_osd_request *osd_req, unsigned int which,
|
|
|
|
|
|
op = _osd_req_op_init(osd_req, which, CEPH_OSD_OP_CALL, 0);
|
|
|
|
|
|
- pagelist = kmalloc(sizeof (*pagelist), GFP_NOFS);
|
|
|
+ pagelist = ceph_pagelist_alloc(GFP_NOFS);
|
|
|
if (!pagelist)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
- ceph_pagelist_init(pagelist);
|
|
|
-
|
|
|
op->cls.class_name = class;
|
|
|
size = strlen(class);
|
|
|
BUG_ON(size > (size_t) U8_MAX);
|
|
@@ -814,12 +812,10 @@ int osd_req_op_xattr_init(struct ceph_osd_request *osd_req, unsigned int which,
|
|
|
|
|
|
BUG_ON(opcode != CEPH_OSD_OP_SETXATTR && opcode != CEPH_OSD_OP_CMPXATTR);
|
|
|
|
|
|
- pagelist = kmalloc(sizeof(*pagelist), GFP_NOFS);
|
|
|
+ pagelist = ceph_pagelist_alloc(GFP_NOFS);
|
|
|
if (!pagelist)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
- ceph_pagelist_init(pagelist);
|
|
|
-
|
|
|
payload_len = strlen(name);
|
|
|
op->xattr.name_len = payload_len;
|
|
|
ceph_pagelist_append(pagelist, name, payload_len);
|
|
@@ -4598,11 +4594,10 @@ static int osd_req_op_notify_ack_init(struct ceph_osd_request *req, int which,
|
|
|
|
|
|
op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY_ACK, 0);
|
|
|
|
|
|
- pl = kmalloc(sizeof(*pl), GFP_NOIO);
|
|
|
+ pl = ceph_pagelist_alloc(GFP_NOIO);
|
|
|
if (!pl)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
- ceph_pagelist_init(pl);
|
|
|
ret = ceph_pagelist_encode_64(pl, notify_id);
|
|
|
ret |= ceph_pagelist_encode_64(pl, cookie);
|
|
|
if (payload) {
|
|
@@ -4669,11 +4664,10 @@ static int osd_req_op_notify_init(struct ceph_osd_request *req, int which,
|
|
|
op = _osd_req_op_init(req, which, CEPH_OSD_OP_NOTIFY, 0);
|
|
|
op->notify.cookie = cookie;
|
|
|
|
|
|
- pl = kmalloc(sizeof(*pl), GFP_NOIO);
|
|
|
+ pl = ceph_pagelist_alloc(GFP_NOIO);
|
|
|
if (!pl)
|
|
|
return -ENOMEM;
|
|
|
|
|
|
- ceph_pagelist_init(pl);
|
|
|
ret = ceph_pagelist_encode_32(pl, 1); /* prot_ver */
|
|
|
ret |= ceph_pagelist_encode_32(pl, timeout);
|
|
|
ret |= ceph_pagelist_encode_32(pl, payload_len);
|