K 10 svn:author V 3 phk K 8 svn:date V 27 1997-08-04T07:30:43.000000Z K 7 svn:log V 501 We got a couple of "map mismatch" panics from the following code. According to the crash dump, bpref is set to 445 and cgp->cg_nclusterblks is 444. Hence in the for loop, the test fails immediately but the following failure check (got == cgp->cg_nclusterblks) doesn't trigger because got > cgp->cg_nclusterblks. This wreaks havoc in the code after that. Fix: Move one source bit to the left :-) Noticed by: Mike Hibler Submitted by: Kirk McKusick END