mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
libceph: change from BUG to WARN for __remove_osd() asserts
commit cc9f1f518c upstream.
No reason to use BUG_ON for osd request list assertions.
Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
Reviewed-by: Alex Elder <elder@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5d3c6d27f4
commit
54ff4c89a5
@@ -968,8 +968,8 @@ static void put_osd(struct ceph_osd *osd)
|
||||
static void __remove_osd(struct ceph_osd_client *osdc, struct ceph_osd *osd)
|
||||
{
|
||||
dout("__remove_osd %p\n", osd);
|
||||
BUG_ON(!list_empty(&osd->o_requests));
|
||||
BUG_ON(!list_empty(&osd->o_linger_requests));
|
||||
WARN_ON(!list_empty(&osd->o_requests));
|
||||
WARN_ON(!list_empty(&osd->o_linger_requests));
|
||||
|
||||
rb_erase(&osd->o_node, &osdc->osds);
|
||||
list_del_init(&osd->o_osd_lru);
|
||||
|
||||
Reference in New Issue
Block a user