Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc9f1f51 authored by Ilya Dryomov's avatar Ilya Dryomov
Browse files

libceph: change from BUG to WARN for __remove_osd() asserts



No reason to use BUG_ON for osd request list assertions.

Signed-off-by: default avatarIlya Dryomov <idryomov@redhat.com>
Reviewed-by: default avatarAlex Elder <elder@linaro.org>
parent ba9d114e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1007,8 +1007,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);