diff options
author | Anand Avati <avati@gluster.com> | 2010-09-03 14:01:29 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-04 01:45:45 -0700 |
commit | 4432f46fa75bf62a6a8e9295f9792a73589f924b (patch) | |
tree | 38a07fdf8b1dd3175452330cdaacdb8422e52291 /xlators/protocol/server/src/server3_1-fops.c | |
parent | 2c400f60cad3ac0b9dbf1be06b48675d40fcc824 (diff) |
gfid: server resolver changes to use gfid instead of ino/gen
Signed-off-by: Anand V. Avati <avati@amp.gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 971 (dynamic volume management)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=971
Diffstat (limited to 'xlators/protocol/server/src/server3_1-fops.c')
-rw-r--r-- | xlators/protocol/server/src/server3_1-fops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/protocol/server/src/server3_1-fops.c b/xlators/protocol/server/src/server3_1-fops.c index ddcc423fd4e..c370dbe8afe 100644 --- a/xlators/protocol/server/src/server3_1-fops.c +++ b/xlators/protocol/server/src/server3_1-fops.c @@ -2886,7 +2886,7 @@ server_create (rpcsvc_request_t *req) goto out; } - state->dict = params; + state->params = params; params->extra_free = buf; @@ -4090,7 +4090,7 @@ server_mknod (rpcsvc_request_t *req) goto out; } - state->dict = params; + state->params = params; params->extra_free = buf; @@ -4179,7 +4179,7 @@ server_mkdir (rpcsvc_request_t *req) goto out; } - state->dict = params; + state->params = params; params->extra_free = buf; @@ -4614,7 +4614,7 @@ server_symlink (rpcsvc_request_t *req) goto out; } - state->dict = params; + state->params = params; params->extra_free = buf; |