diff options
author | Soumya Koduri <skoduri@redhat.com> | 2017-10-04 14:34:48 +0530 |
---|---|---|
committer | Soumya Koduri <skoduri@redhat.com> | 2017-10-12 16:12:36 +0530 |
commit | c22cec3928be6924fb1026ef969cae897efbd76d (patch) | |
tree | 60a10e937bab57ed285eda10a122dcffef99e2e7 /api/src/glfs-internal.h | |
parent | a3767c4ceb527cb0f52b95650c841964cf7faec9 (diff) |
gfapi: set lkowner in glfd
We need a provision to be able to set lkowner (which is
used to distinguish locks maintained by server) in gfapi.
Since the same lk_owner need to be used to be able to
flush the lock while closing the fd, store the lkowner
in the glfd structure itself.
A new API has been added to be able to set lkowner in glfd.
Change-Id: I67591d6b9a89c20b9617d52616513ff9e6c06b47
BUG: 1499641
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
Diffstat (limited to 'api/src/glfs-internal.h')
-rw-r--r-- | api/src/glfs-internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/glfs-internal.h b/api/src/glfs-internal.h index be2d60a38e0..757bc18eb1d 100644 --- a/api/src/glfs-internal.h +++ b/api/src/glfs-internal.h @@ -215,6 +215,7 @@ struct glfs_fd { struct list_head entries; gf_dirent_t *next; struct dirent *readdirbuf; + gf_lkowner_t lk_owner; }; /* glfs object handle introduced for the alternate gfapi implementation based |