diff options
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-conn-helper.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-conn-helper.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-conn-helper.c b/xlators/mgmt/glusterd/src/glusterd-conn-helper.c index 43c95c3a386..bfa9d02aa1b 100644 --- a/xlators/mgmt/glusterd/src/glusterd-conn-helper.c +++ b/xlators/mgmt/glusterd/src/glusterd-conn-helper.c @@ -11,8 +11,11 @@ #include "glusterd-conn-mgmt.h" #include "glusterd-svc-mgmt.h" +#define _LGPL_SOURCE +#include <urcu/rculist.h> + glusterd_svc_t * glusterd_conn_get_svc_object (glusterd_conn_t *conn) { - return list_entry (conn, glusterd_svc_t, conn); + return cds_list_entry (conn, glusterd_svc_t, conn); } |