libceph: DEFINE_RB_FUNCS macro
authorIlya Dryomov <idryomov@gmail.com>
Thu, 28 Apr 2016 14:07:22 +0000 (16:07 +0200)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 25 May 2016 22:36:23 +0000 (00:36 +0200)
commitfcd00b68bbe2bf5606cb45c2cd4a250a390bcc1f
tree7db18711377a59e78b22df4f6d73411620cc92df
parent42a2c09f2b0b95fa147bcdb56cdc02b980b9ac5e
libceph: DEFINE_RB_FUNCS macro

Given

    struct foo {
        u64 id;
        struct rb_node bar_node;
    };

generate insert_bar(), erase_bar() and lookup_bar() functions with

    DEFINE_RB_FUNCS(bar, struct foo, id, bar_node)

The key is assumed to be an integer (u64, int, etc), compared with
< and >.  nodefld has to be initialized with RB_CLEAR_NODE().

Start using it for MDS, MON and OSD requests and OSD sessions.

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
fs/ceph/mds_client.c
include/linux/ceph/libceph.h
net/ceph/mon_client.c
net/ceph/osd_client.c