diff options
| author | Soumya Koduri <skoduri@redhat.com> | 2018-10-10 21:37:07 +0530 | 
|---|---|---|
| committer | Soumya Koduri <skoduri@redhat.com> | 2018-10-22 22:06:03 +0530 | 
| commit | fa4710bb8fbc852971d763d8727e3755436ea9c8 (patch) | |
| tree | ae1a24de2d7afd5fdef30e188a3c82515be44ee9 /api/src/glfs-fops.c | |
| parent | b63dfd84fc8b3e08e3f005f71bf493c633452612 (diff) | |
gfapi: Bug fixes in leases processing code-path
This patch fixes below issues in gfapi lease code-path
* 'glfs_setfsleasid' should allow NULL input to be
   able to reset leaseid
* Applications should be allowed to (un)register for
  upcall notifications of type GLFS_EVENT_LEASE_RECALL
* APIs added to read contents of GLFS_EVENT_LEASE_RECALL
  argument which is of type "struct glfs_upcall_lease"
This is backport of below mainline path -
https://review.gluster.org/#/c/glusterfs/+/21391
Change-Id: I3320ddf235cc82fad561e13b9457ebd64db6c76b
updates: #350
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
Diffstat (limited to 'api/src/glfs-fops.c')
| -rw-r--r-- | api/src/glfs-fops.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index f243999c0c8..50f32fae6f6 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -4841,7 +4841,7 @@ glfs_recall_lease_upcall (struct glfs *fs,          up_lease_arg->lease_type = recall_lease->lease_type; -        up_arg->reason = GF_UPCALL_RECALL_LEASE; +        up_arg->reason = GLFS_UPCALL_RECALL_LEASE;          up_arg->event = up_lease_arg;          up_arg->free_event = glfs_free_upcall_lease;  | 
