libceph: init osd->o_node in create_osd()
authorAlex Elder <elder@inktank.com>
Thu, 6 Dec 2012 13:22:04 +0000 (07:22 -0600)
committerAlex Elder <elder@inktank.com>
Thu, 20 Dec 2012 16:56:21 +0000 (10:56 -0600)
commitf407731d12214e7686819018f3a1e9d7b6f83a02
tree5a7379862a9925b97795ddd6aa4b4b466e07d48e
parent28362986f8743124b3a0fda20a8ed3e80309cce1
libceph: init osd->o_node in create_osd()

The red-black node node in the ceph osd structure is not initialized
in create_osd().  Because this node can be the subject of a
RB_EMPTY_NODE() call later on, we should ensure the node is
initialized properly for that.  Add a call to RB_CLEAR_NODE()
initialize it.

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
net/ceph/osd_client.c