Date: Tue, 08 May 2001 19:20:39 +0900 From: "Akinori MUSHA" <knu@iDaemons.org> To: Kirk McKusick <mckusick@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs fs.h softdep.h ffs_softdep.c ffs_softdep_stub.c ffs_inode.c ffs_vfsops.c src/sys/ufs/ufs ufs_extern.h inode.h ufs_inode.c Message-ID: <863dagm9ag.wl@archon.local.idaemons.org> In-Reply-To: <200105080742.f487gKX83668@freefall.freebsd.org> References: <200105080742.f487gKX83668@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
At Tue, 8 May 2001 00:42:20 -0700 (PDT), Kirk McKusick wrote: > mckusick 2001/05/08 00:42:20 PDT > sys/ufs/ufs ufs_extern.h inode.h ufs_inode.c usr.sbin/pstat needs to be fixed to reflect the change. (I'm not sure `S' is the most appropiate, though) -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Freeze this moment a little bit longer, make each impression a little bit stronger.. Experience slips away -- Time stand still" Index: pstat.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/pstat/pstat.8,v retrieving revision 1.28 diff -u -r1.28 pstat.8 --- pstat.8 2001/04/04 11:25:07 1.28 +++ pstat.8 2001/05/08 10:15:28 @@ -330,14 +330,12 @@ contains modifications .It R has a rename in progress -.It S -shared lock applied -.It E -exclusive lock applied .It H inode is on hash list .It L modified, but don't write key +.It S +blocks to be freed in free count .El .It "For nfs:" .Bl -tag -width indent -compact Index: pstat.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pstat/pstat.c,v retrieving revision 1.54 diff -u -r1.54 pstat.c --- pstat.c 2001/04/29 02:45:39 1.54 +++ pstat.c 2001/05/08 10:15:17 @@ -491,14 +491,12 @@ *flags++ = 'M'; if (flag & IN_RENAME) *flags++ = 'R'; - if (flag & IN_SHLOCK) - *flags++ = 'S'; - if (flag & IN_EXLOCK) - *flags++ = 'E'; if (flag & IN_HASHED) *flags++ = 'H'; if (flag & IN_LAZYMOD) *flags++ = 'L'; + if (flag & IN_SPACECOUNTED) + *flags++ = 'S'; if (flag == 0) *flags++ = '-'; *flags = '\0'; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?863dagm9ag.wl>