Module Name: src Committed By: maxv Date: Sat Feb 14 09:55:53 UTC 2015
Modified Files: src/sys/ufs/ffs: ffs_vfsops.c Log Message: In fact, we need to sanitize the superblock *after* swapping it. Therefore, move the swap code inside the loop. 'fs->fs_sbsize' is swapped twice: the first time in order to get the correct superblock size, and later when swapping the whole superblock structure. As a result, we need to check 'fs->fs_sbsize' twice. This: - fixes my previous changes for swapped FSes - allows the kernel to look for other superblock locations if the current superblock is not validated And now: - ffs_superblock_validate() takes only one argument: the fs structure - 'fs_bsize' is unused, so delete it Add some comments to explain a bit what we are doing. To generate a diff of this commit: cvs rdiff -u -r1.313 -r1.314 src/sys/ufs/ffs/ffs_vfsops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.