Message ID | 1430123096-11516-1-git-send-email-zyan@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 04/27/2015 03:24 AM, Yan, Zheng wrote: > Signed-off-by: Yan, Zheng <zyan@redhat.com> Looks good. Reviewed-by: Alex Elder <elder@linaro.org> > --- > net/ceph/osd_client.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c > index 41a4abc..b93531f 100644 > --- a/net/ceph/osd_client.c > +++ b/net/ceph/osd_client.c > @@ -296,6 +296,9 @@ static void osd_req_op_data_release(struct ceph_osd_request *osd_req, > case CEPH_OSD_OP_CMPXATTR: > ceph_osd_data_release(&op->xattr.osd_data); > break; > + case CEPH_OSD_OP_STAT: > + ceph_osd_data_release(&op->raw_data_in); > + break; > default: > break; > } > -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index 41a4abc..b93531f 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -296,6 +296,9 @@ static void osd_req_op_data_release(struct ceph_osd_request *osd_req, case CEPH_OSD_OP_CMPXATTR: ceph_osd_data_release(&op->xattr.osd_data); break; + case CEPH_OSD_OP_STAT: + ceph_osd_data_release(&op->raw_data_in); + break; default: break; }
Signed-off-by: Yan, Zheng <zyan@redhat.com> --- net/ceph/osd_client.c | 3 +++ 1 file changed, 3 insertions(+)