diff options
author | Rajesh Joseph <rjoseph@redhat.com> | 2016-03-09 22:05:18 +0530 |
---|---|---|
committer | Niels de Vos <ndevos@redhat.com> | 2016-03-14 23:46:30 -0700 |
commit | 5bdfaf98904a339144bf3a237b162e8385b95085 (patch) | |
tree | ed6d3cd1e55235ed8cac6327d969fe432b524df1 /api/src | |
parent | 4d37476f264bdb7e213f302840ac3238dc6d9791 (diff) |
gfapi: preserve glfd state during glfs_dup
Following patch introduced a new state variable in glfd
to track the current status of the fd.
http://review.gluster.org/13340/
But this state was not copied in glfd_dup function.
BUG: 1311146
Change-Id: I283f8944035f6defe491f81e13d7ef28fc440572
Signed-off-by: Rajesh Joseph <rjoseph@redhat.com>
Reviewed-on: http://review.gluster.org/13666
Smoke: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Prashanth Pai <ppai@redhat.com>
Tested-by: Prashanth Pai <ppai@redhat.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Raghavendra Talur <rtalur@redhat.com>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Diffstat (limited to 'api/src')
-rw-r--r-- | api/src/glfs-fops.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index 55474693731..c981297b0b9 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -4055,6 +4055,7 @@ pub_glfs_dup (struct glfs_fd *glfd) } dupfd->fd = fd_ref (fd); + dupfd->state = glfd->state; out: if (fd) fd_unref (fd); |