HomeFreeBSD

Fsck would find, report, and offer to fix inode check-hash failures.

Description

Fsck would find, report, and offer to fix inode check-hash failures.
If requested to fix the inode check-hash it would confirm having done
it, but then fail to make the fix. The same code is used in fsdb which,
unlike fsck, would actually fix the inode check-hash.

The discrepancy occurred because fsck has two ways to fetch inodes.
The inode by number function ginode() and the streaming inode
function getnextinode() used during pass1. Fsdb uses the ginode()
function which correctly does the fix, while fsck first encounters
the bad inode check-hash in pass1 where it is using the getnextinode()
function that failed to make the correction. This patch corrects
the getnextinode() function so that fsck now correctly fixes inodes
with incorrect inode check-hashs.

Reported by: Gary Jennejohn <gljennjohn@gmail.com>
Sponsored by: Netflix

Details

Provenance
mckusickAuthored on
Parents
rS342127: Revert r331567 CC Cubic: fix underflow for cubic_cwnd()
Branches
Unknown
Tags
Unknown