From d569483536da1e8017f7105de8b211f172438d4c Mon Sep 17 00:00:00 2001 From: Soumya Koduri Date: Tue, 1 Nov 2016 20:32:17 +0530 Subject: gfapi/upcall: Fix mismatch in few upcall API SYMVER There is mismatch in few of the upcall API routine definitions and their corresponding symbol version declarations. Fixed the same. > Change-Id: I2edfd9546a4c6a9128757f3b68e3ae4edd2c7a79 > BUG: 1344714 > Signed-off-by: Soumya Koduri > Reviewed-on: http://review.gluster.org/15760 > Smoke: Gluster Build System > Reviewed-by: jiffin tony Thottan > Reviewed-by: Kaleb KEITHLEY > Tested-by: Kaleb KEITHLEY > NetBSD-regression: NetBSD Build System > CentOS-regression: Gluster Build System > (cherry picked from commit 5b453380b15f34c0841f453a02fdabc46ad2f7ef) Change-Id: Ia9f5ab5d8d7d4ad77f1215e8249d346e31080573 BUG: 1378948 Signed-off-by: Soumya Koduri Reviewed-on: http://review.gluster.org/15774 Smoke: Gluster Build System Reviewed-by: Kaleb KEITHLEY CentOS-regression: Gluster Build System NetBSD-regression: NetBSD Build System --- api/src/glfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api/src') diff --git a/api/src/glfs.c b/api/src/glfs.c index 641ab1beb66..ec99ab3f08f 100644 --- a/api/src/glfs.c +++ b/api/src/glfs.c @@ -1441,18 +1441,18 @@ pub_glfs_upcall_inode_get_pstat (struct glfs_upcall_inode *arg) { return &arg->p_buf; } -GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_get_pstat, 3.7.16); +GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_inode_get_pstat, 3.7.16); struct glfs_object* pub_glfs_upcall_inode_get_oldpobject (struct glfs_upcall_inode *arg) { return arg->oldp_object; } -GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_get_oldpobject, 3.7.16); +GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_inode_get_oldpobject, 3.7.16); struct stat* pub_glfs_upcall_inode_get_oldpstat (struct glfs_upcall_inode *arg) { return &arg->oldp_buf; } -GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_get_oldpstat, 3.7.16); +GFAPI_SYMVER_PUBLIC_DEFAULT(glfs_upcall_inode_get_oldpstat, 3.7.16); -- cgit