From 063d4ead61ee47433793de81a1c77e0ba69e6e07 Mon Sep 17 00:00:00 2001 From: "Kaleb S. KEITHLEY" Date: Fri, 16 Oct 2015 13:52:28 -0400 Subject: core: use syscall wrappers instead of direct syscalls -- glusterd various xlators and other components are invoking system calls directly instead of using the libglusterfs/syscall.[ch] wrappers. If not using the system call wrappers there should be a comment in the source explaining why the wrapper isn't used. Change-Id: I28bf2a5f7730b35914e7ab57fed91e1966b30073 BUG: 1267967 Signed-off-by: Kaleb S. KEITHLEY Reviewed-on: http://review.gluster.org/12379 Tested-by: Gluster Build System Reviewed-by: Jeff Darcy --- xlators/mgmt/glusterd/src/glusterd-handler.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xlators/mgmt/glusterd/src/glusterd-handler.c') diff --git a/xlators/mgmt/glusterd/src/glusterd-handler.c b/xlators/mgmt/glusterd/src/glusterd-handler.c index b01a70d62c4..24e0084a093 100644 --- a/xlators/mgmt/glusterd/src/glusterd-handler.c +++ b/xlators/mgmt/glusterd/src/glusterd-handler.c @@ -16,6 +16,7 @@ #include "protocol-common.h" #include "xlator.h" #include "logging.h" +#include "syscall.h" #include "timer.h" #include "defaults.h" #include "compat.h" @@ -3215,12 +3216,12 @@ __glusterd_handle_umount (rpcsvc_request_t *req) synclock_lock (&priv->big_lock); if (rsp.op_ret == 0) { if (realpath (umnt_req.path, mntp)) - rmdir (mntp); + sys_rmdir (mntp); else { rsp.op_ret = -1; rsp.op_errno = errno; } - if (unlink (umnt_req.path) != 0) { + if (sys_unlink (umnt_req.path) != 0) { rsp.op_ret = -1; rsp.op_errno = errno; } -- cgit