[Libsysio-commit] HEAD: libsysio/drivers/incore fs_incore.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2009-05-05 17:01:02
|
Update of /cvsroot/libsysio/libsysio/drivers/incore In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30476/drivers/incore Modified Files: fs_incore.c Log Message: Modified to reflect the new, required, perms_check operation. The generic dev returns -EBADF, of course. The incore and native drivers just use the default core policy routine. Index: fs_incore.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/incore/fs_incore.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -w -b -B -p -r1.37 -r1.38 --- fs_incore.c 10 Apr 2009 21:33:55 -0000 1.37 +++ fs_incore.c 5 May 2009 16:35:29 -0000 1.38 @@ -212,6 +212,7 @@ static struct inode_ops _sysio_incore_di #ifdef _HAVE_STATVFS _sysio_incore_inop_statvfs, #endif + _sysio_p_generic_perms_check, _sysio_incore_inop_gone }; @@ -268,6 +269,7 @@ static struct inode_ops _sysio_incore_fi #ifdef _HAVE_STATVFS _sysio_incore_inop_statvfs, #endif + _sysio_p_generic_perms_check, _sysio_incore_inop_gone }; @@ -298,6 +300,7 @@ static struct inode_ops _sysio_incore_de #ifdef _HAVE_STATVFS _sysio_incore_inop_statvfs, #endif + _sysio_p_generic_perms_check, _sysio_incore_inop_gone }; |