[Libsysio-commit] HEAD: libsysio/include inode.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2008-12-05 20:25:12
|
Update of /cvsroot/libsysio/libsysio/include In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27935 Modified Files: inode.h Log Message: The I_GONE macro was really just doing only creating a zombie inode. With this change, it's really gone now. Index: inode.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/inode.h,v retrieving revision 1.43 retrieving revision 1.44 diff -u -w -b -B -p -r1.43 -r1.44 --- inode.h 26 Jul 2008 01:33:14 -0000 1.43 +++ inode.h 5 Dec 2008 20:25:06 -0000 1.44 @@ -246,8 +246,7 @@ struct inode { #define I_GONE(_ino) \ do { \ _I_CHECK_LOCK((_ino), 1); \ - _sysio_i_undead(_ino); \ - I_PUT(_ino); \ + _sysio_i_gone(_ino); \ } while (0) /* |