summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSoumya Koduri <skoduri@redhat.com>2018-10-10 21:37:07 +0530
committerShyamsundar Ranganathan <srangana@redhat.com>2018-10-18 13:26:29 +0000
commit2f2872b335018a7fa4b61193f2e6404bef8864ed (patch)
tree7d0d7cc1c7c0a977ea122b7eaef251baf304afa6 /tests
parentfadf0c8dc600c57142b012fea5becf016fa1929e (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 the below mainline patch - https://review.gluster.org/#/c/glusterfs/+/21391 Change-Id: I3320ddf235cc82fad561e13b9457ebd64db6c76b updates: #350 Signed-off-by: Soumya Koduri <skoduri@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/basic/gfapi/upcall-register-api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/basic/gfapi/upcall-register-api.c b/tests/basic/gfapi/upcall-register-api.c
index 5127cea5b3f..68591fdc517 100644
--- a/tests/basic/gfapi/upcall-register-api.c
+++ b/tests/basic/gfapi/upcall-register-api.c
@@ -238,7 +238,7 @@ main(int argc, char *argv[])
/* Check if the return mask contains the event */
if ((ret < 0) || !(ret & GLFS_EVENT_INODE_INVALIDATE)) {
fprintf(stderr,
- "glfs_upcall_register return doesn't contain"
+ "glfs_upcall_unregister return doesn't contain"
" upcall event\n");
return -1;
}
@@ -248,7 +248,7 @@ main(int argc, char *argv[])
/* Check if the return mask contains the event */
if ((ret < 0) || !(ret & GLFS_EVENT_INODE_INVALIDATE)) {
fprintf(stderr,
- "glfs_upcall_register return doesn't contain"
+ "glfs_upcall_unregister return doesn't contain"
" upcall event\n");
return -1;
}