[Libsysio-commit] b_lustre: libsysio/drivers/native fs_native.c
Brought to you by:
lward
|
From: Mei <me...@us...> - 2003-12-15 08:22:19
|
Update of /cvsroot/libsysio/libsysio/drivers/native
In directory sc8-pr-cvs1:/tmp/cvs-serv3191/drivers/native
Modified Files:
Tag: b_lustre
fs_native.c
Log Message:
remove the enter/leave syscalls intercept, now liblustre don't need them.
Index: fs_native.c
===================================================================
RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v
retrieving revision 1.11.2.4
retrieving revision 1.11.2.5
diff -u -w -b -B -p -r1.11.2.4 -r1.11.2.5
--- fs_native.c 1 Nov 2003 03:08:21 -0000 1.11.2.4
+++ fs_native.c 15 Dec 2003 08:22:16 -0000 1.11.2.5
@@ -1356,8 +1356,6 @@ native_inop_fcntl(struct inode *ino,
case F_GETFD:
case F_GETFL:
case F_GETOWN:
-// case F_GETSIG:
-// case F_GETLEASE:
return syscall(SYS_fcntl, nino->ni_fd, cmd);
case F_DUPFD:
case F_SETFD:
@@ -1366,9 +1364,6 @@ native_inop_fcntl(struct inode *ino,
case F_SETLK:
case F_SETLKW:
case F_SETOWN:
-// case F_SETSIG:
-// case F_SETLEASE:
-// case F_NOTIFY:
arg = va_arg(ap, long);
return syscall(SYS_fcntl, nino->ni_fd, cmd, arg);
default:
|