diff options
author | Kaleb S KEITHLEY <kkeithle@redhat.com> | 2015-11-16 10:54:01 -0500 |
---|---|---|
committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2015-11-16 15:20:17 -0800 |
commit | 1d0a0d180b34961ce03352283c5cb1f0c1561d88 (patch) | |
tree | a664a23383503b7bf0a7fd7d318638c64cd308ac /libglusterfs/src/common-utils.h | |
parent | caae86e6f8b8150ad8663c3173fcd6df3c2e260a (diff) | |
download | glusterfs-1d0a0d180b34961ce03352283c5cb1f0c1561d88.tar.gz glusterfs-1d0a0d180b34961ce03352283c5cb1f0c1561d88.tar.xz glusterfs-1d0a0d180b34961ce03352283c5cb1f0c1561d88.zip |
core: use syscall wrappers instead of direct syscalls - tail
tail, as in dog chasing its tail. These are the unwrapped
syscalls that have crept in (or were missed) in the previous
patches.
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: If183487de92fc7cbc47d4c5aa3f3e80eae50b84f
BUG: 1267967
Signed-off-by: Kaleb S KEITHLEY <kkeithle@redhat.com>
Reviewed-on: http://review.gluster.org/12589
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Jeff Darcy <jdarcy@redhat.com>
Diffstat (limited to 'libglusterfs/src/common-utils.h')
-rw-r--r-- | libglusterfs/src/common-utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libglusterfs/src/common-utils.h b/libglusterfs/src/common-utils.h index bf574fdabc..1c9ef13b80 100644 --- a/libglusterfs/src/common-utils.h +++ b/libglusterfs/src/common-utils.h @@ -362,11 +362,11 @@ union gf_sock_union { do {\ entry = NULL;\ if (dir) { \ - entry = readdir (dir); \ + entry = sys_readdir (dir); \ while (entry && (!strcmp (entry->d_name, ".") || \ !fnmatch ("*.tmp", entry->d_name, 0) || \ !strcmp (entry->d_name, ".."))) { \ - entry = readdir (dir); \ + entry = sys_readdir (dir); \ } \ } \ } while (0) |