2019-12-15 16:36:46

by Aditya Pakki

[permalink] [raw]
Subject: [PATCH] rbd: Avoid calling BUG() when object_map is not empty

In __rbd_object_map_load, if object_map contains data, return
error -EINVAL upstream, instead of crashing, via BUG. The patch
fixes this issue.

Signed-off-by: Aditya Pakki <[email protected]>
---
drivers/block/rbd.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/block/rbd.c b/drivers/block/rbd.c
index 2b184563cd32..6e9a11f32a94 100644
--- a/drivers/block/rbd.c
+++ b/drivers/block/rbd.c
@@ -1892,7 +1892,8 @@ static int __rbd_object_map_load(struct rbd_device *rbd_dev)
int num_pages;
int ret;

- rbd_assert(!rbd_dev->object_map && !rbd_dev->object_map_size);
+ if (rbd_dev->object_map || rbd_dev->object_map_size)
+ return -EINVAL;

num_objects = ceph_get_num_objects(&rbd_dev->layout,
rbd_dev->mapping.size);
--
2.20.1


2019-12-15 22:01:15

by Markus Elfring

[permalink] [raw]
Subject: Re: [PATCH] rbd: Avoid calling BUG() when object_map is not empty

> The patch fixes this issue.

Will the tag “Fixes” be more helpful than this sentence?

Regards,
Markus