Reviewed by: Kirk Mckusick (mckusick@mckusick.com)
Submitted by: luoqi Chen fix a type in fsck. (also add a comment that got picked up by mistake but is worth adding)
This commit is contained in:
parent
756534d117
commit
c2a239ebc7
@ -332,7 +332,7 @@ pass5()
|
||||
for (k = 0; k < NBBY; k++) {
|
||||
if ((j & (1 << k)) == 0)
|
||||
continue;
|
||||
if (cg_inosused(cg)[i] & (1 << k))
|
||||
if (cg_blksfree(newcg)[i] & (1 << k))
|
||||
continue;
|
||||
pwarn("ALLOCATED FRAG %d MARKED FREE",
|
||||
c * fs->fs_fpg + i * 8 + k);
|
||||
|
@ -332,7 +332,7 @@ pass5()
|
||||
for (k = 0; k < NBBY; k++) {
|
||||
if ((j & (1 << k)) == 0)
|
||||
continue;
|
||||
if (cg_inosused(cg)[i] & (1 << k))
|
||||
if (cg_blksfree(newcg)[i] & (1 << k))
|
||||
continue;
|
||||
pwarn("ALLOCATED FRAG %d MARKED FREE",
|
||||
c * fs->fs_fpg + i * 8 + k);
|
||||
|
@ -332,7 +332,7 @@ pass5()
|
||||
for (k = 0; k < NBBY; k++) {
|
||||
if ((j & (1 << k)) == 0)
|
||||
continue;
|
||||
if (cg_inosused(cg)[i] & (1 << k))
|
||||
if (cg_blksfree(newcg)[i] & (1 << k))
|
||||
continue;
|
||||
pwarn("ALLOCATED FRAG %d MARKED FREE",
|
||||
c * fs->fs_fpg + i * 8 + k);
|
||||
|
@ -12,7 +12,7 @@
|
||||
*
|
||||
* This software is provided ``AS IS'' without any warranties of any kind.
|
||||
*
|
||||
* $Id: ip_fw.c,v 1.84 1998/05/25 10:37:44 julian Exp $
|
||||
* $Id: ip_fw.c,v 1.85 1998/06/05 22:39:53 julian Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -994,6 +994,11 @@ static int
|
||||
ip_fw_ctl(int stage, struct mbuf **mm)
|
||||
{
|
||||
int error;
|
||||
/*
|
||||
* If we have any number of rules, then it's worth while
|
||||
* using clusters for this. The smaller case is rare.
|
||||
* Note that using clusters for setsockopt is only in 3.0 at this time.
|
||||
*/
|
||||
struct mbuf *m;
|
||||
|
||||
if (stage == IP_FW_GET) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user