]> git.baikalelectronics.ru Git - kernel.git/commit
libceph: avoid NULL kref_put when osd reset races with alloc_msg
authorSage Weil <sage@inktank.com>
Wed, 24 Oct 2012 23:12:58 +0000 (16:12 -0700)
committerSage Weil <sage@inktank.com>
Wed, 24 Oct 2012 23:19:19 +0000 (16:19 -0700)
commitc17857fa2d0d234e1ede863a9a5e3b36010d2ce1
tree7eb86ac8c5f00f160cf5dc23d1a5d89ab951fcd5
parent68ab676a90145d890f3dc324d3933c181acd65a3
libceph: avoid NULL kref_put when osd reset races with alloc_msg

The ceph_on_in_msg_alloc() method drops con->mutex while it allocates a
message.  If that races with a timeout that resends a zillion messages and
resets the connection, and the ->alloc_msg() method returns a NULL message,
it will call ceph_msg_put(NULL) and BUG.

Fix by only calling put if msg is non-NULL.

Fixes http://tracker.newdream.net/issues/3142

Signed-off-by: Sage Weil <sage@inktank.com>
net/ceph/messenger.c