K 10 svn:author V 3 kib K 8 svn:date V 27 2017-04-14T15:22:00.785405Z K 7 svn:log V 506 In fsck_ffs pass1, prevent the inosused variable from wrapping. The loop that scans the used inode map when soft updates is in use assumes that the inosused variable is signed. However, ino_t is unsigned, so the loop invariant is incorrect and the check for inosused wrapping to < 0 can never be true. Instead of checking for wrap after the fact just prevent it from happening in the first place. PR: 218592 Submitted by: Todd Miller Reviewed by: mckusick MFC after: 1 week END