diff options
author | Amar Tumballi <amar@gluster.com> | 2010-06-29 05:36:30 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-07-01 03:31:51 -0700 |
commit | 01923eed1115e53c5be9fba3e72f75c7c631bf95 (patch) | |
tree | c1f1774247d8c25a9ced8c47ec416f63123591a2 /xlators/protocol/client | |
parent | c46f8452d75e2f1b4ab77306177f39bdbb4b232c (diff) |
minor fixes in rpc + protocol
* proper use of mem_acct_init in client.c/server.c
* fentrylk_resume to be called instead of finodelk_resume in
server_fentrylk().
* handle the case of xdr decoding failure on server by sending the
proper error reply to client, so there is no missing frame.
* removed unwanted functions from server-helpers.c
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 875 (Implement a new protocol to provide proper backward/forward compatibility)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=875
Diffstat (limited to 'xlators/protocol/client')
-rw-r--r-- | xlators/protocol/client/src/client.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/xlators/protocol/client/src/client.c b/xlators/protocol/client/src/client.c index f75cf3c99..bad814a81 100644 --- a/xlators/protocol/client/src/client.c +++ b/xlators/protocol/client/src/client.c @@ -1526,7 +1526,7 @@ out: } -static int32_t +int32_t mem_acct_init (xlator_t *this) { int ret = -1; @@ -1565,10 +1565,6 @@ init (xlator_t *this) "Volume is dangling. "); } - ret = mem_acct_init (this); - if (ret) - goto out; - conf = GF_CALLOC (1, sizeof (*conf), gf_client_mt_clnt_conf_t); if (!conf) goto out; |