From: Luis Henriques Date: Fri, 19 Jul 2019 14:32:19 +0000 (+0100) Subject: libceph: allow ceph_buffer_put() to receive a NULL ceph_buffer X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2aeaba9025b5a31afd206ccc03e201897b68a70c;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git libceph: allow ceph_buffer_put() to receive a NULL ceph_buffer [ Upstream commit 5c498950f730aa17c5f8a2cdcb903524e4002ed2 ] Signed-off-by: Luis Henriques Reviewed-by: Jeff Layton Signed-off-by: Ilya Dryomov Signed-off-by: Sasha Levin --- diff --git a/include/linux/ceph/buffer.h b/include/linux/ceph/buffer.h index 5e58bb29b1a3..11cdc7c60480 100644 --- a/include/linux/ceph/buffer.h +++ b/include/linux/ceph/buffer.h @@ -30,7 +30,8 @@ static inline struct ceph_buffer *ceph_buffer_get(struct ceph_buffer *b) static inline void ceph_buffer_put(struct ceph_buffer *b) { - kref_put(&b->kref, ceph_buffer_release); + if (b) + kref_put(&b->kref, ceph_buffer_release); } extern int ceph_decode_buffer(struct ceph_buffer **b, void **p, void *end);