From fca9a4e5b67c79cfed276c20ed3ecfc6a48a8efa Mon Sep 17 00:00:00 2001 From: Stephen Rothwell Date: Fri, 28 Sep 2012 10:19:24 +1000 Subject: [PATCH] rbtree-empty-nodes-have-no-color-fix After merging the akpm tree, today's linux-next build (x86_64 allmodconfig) failed like this: net/ceph/osd_client.c: In function 'ceph_osdc_alloc_request': net/ceph/osd_client.c:216:2: error: implicit declaration of function 'rb_in= it_node' [-Werror=3Dimplicit-function-declaration] Caused by commit 753b960e52b7 ("rbtree: empty nodes have no color") from the akpm tree interacting with commit cd43045c2de6 ("libceph: initialize rb, list nodes in ceph_osd_request") from the ceph tree. Signed-off-by: Stephen Rothwell Cc: Sage Weil Reviewed-by: Michel Lespinasse Signed-off-by: Andrew Morton --- net/ceph/osd_client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index 42119c05e82c..7a392b928795 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -213,7 +213,6 @@ struct ceph_osd_request *ceph_osdc_alloc_request(struct ceph_osd_client *osdc, kref_init(&req->r_kref); init_completion(&req->r_completion); init_completion(&req->r_safe_completion); - rb_init_node(&req->r_node); INIT_LIST_HEAD(&req->r_unsafe_item); INIT_LIST_HEAD(&req->r_linger_item); INIT_LIST_HEAD(&req->r_linger_osd); -- 2.39.5