diff options
| author | shishir gowda <sgowda@redhat.com> | 2012-06-22 13:28:31 +0530 | 
|---|---|---|
| committer | Anand Avati <avati@redhat.com> | 2012-06-29 17:25:46 -0700 | 
| commit | 5a5148f07a808d1b94a116eb41a9452bd58ed6bb (patch) | |
| tree | 158b9db246d14799e813ff19650de98b4b1ba15a /glusterfsd/src/glusterfsd-mgmt.c | |
| parent | 5672e77d3102a990a2aa11e7e56ebfe6a0eee369 (diff) | |
cluster/dht: Remove dht dependency on glusterfsd-mgmt
glusterfs_ctx->notify can be used by any xlator to talk to
glusterfsd-mgmt.
Note- This is for any rpc communication initiated by the xlator,
      and not from glusterd.
Change-Id: Ic0e4af106fe1e98d797ca621facda8839b87598a
BUG: 835757
Signed-off-by: shishir gowda <sgowda@redhat.com>
Reviewed-on: http://review.gluster.com/3618
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'glusterfsd/src/glusterfsd-mgmt.c')
| -rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 21 | 
1 files changed, 21 insertions, 0 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 6122a76a36e..9984b42bb19 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -47,6 +47,7 @@  #include "cli1-xdr.h"  #include "statedump.h"  #include "syncop.h" +#include "xlator.h"  static char is_mgmt_rpc_reconnect; @@ -1937,6 +1938,24 @@ glusterfs_listener_stop (glusterfs_ctx_t *ctx)  }  int +glusterfs_mgmt_notify (int32_t op, void *data, ...) +{ +        int ret = 0; +        switch (op) +        { +                case GF_EN_DEFRAG_STATUS: +                        ret = glusterfs_rebalance_event_notify ((dict_t*) data); +                        break; + +                default: +                        gf_log ("", GF_LOG_ERROR, "Invalid op"); +                        break; +        } + +        return ret; +} + +int  glusterfs_mgmt_init (glusterfs_ctx_t *ctx)  {          cmd_args_t              *cmd_args = NULL; @@ -1981,6 +2000,8 @@ glusterfs_mgmt_init (glusterfs_ctx_t *ctx)                  goto out;          } +        ctx->notify = glusterfs_mgmt_notify; +          /* This value should be set before doing the 'rpc_clnt_start()' as             the notify function uses this variable */          ctx->mgmt = rpc;  | 
