From owner-cvs-all Tue May 8 3:20:51 2001 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [61.122.44.178]) by hub.freebsd.org (Postfix) with ESMTP id DAA8A37B422; Tue, 8 May 2001 03:20:40 -0700 (PDT) (envelope-from knu@iDaemons.org) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id C9EE54E308; Tue, 8 May 2001 19:20:39 +0900 (JST) Date: Tue, 08 May 2001 19:20:39 +0900 Message-ID: <863dagm9ag.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Kirk McKusick 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 In-Reply-To: <200105080742.f487gKX83668@freefall.freebsd.org> References: <200105080742.f487gKX83668@freefall.freebsd.org> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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