]> Zhao Yanbai Git Server - minix.git/commitdiff
re-enable update-superblock check
authorBen Gras <ben@minix3.org>
Wed, 15 Feb 2012 02:46:01 +0000 (03:46 +0100)
committerBen Gras <ben@minix3.org>
Wed, 15 Feb 2012 02:46:01 +0000 (03:46 +0100)
This reverts commit cdbc4bfb13b9446a00da95efa1e13ebaa4f35741.

servers/mfs/cache.c

index 7acb0f0486c9a1c6de2bf4c1f4fe6d8f802c2a6c..d64dcc228e23c6f36e64cc9a4ec0455f80ceea80 100644 (file)
@@ -381,11 +381,6 @@ PUBLIC void invalidate(
  *===========================================================================*/
 int block_write_ok(struct buf *bp)
 {
-       /* XXX this check is temporarily disabled as it's incompatible with
-        * updating the sector list in the bootcode. This will change when
-        * we switch to the netbsd-based bootloader.
-        */
-#if 0
        if(superblock.s_dev != bp->b_dev) return 1;
 
        if(bp->b_blocknr >= super_start && bp->b_blocknr <= super_end) {
@@ -398,7 +393,6 @@ int block_write_ok(struct buf *bp)
                printf("This shouldn't happen.\n");
                return 0;
        }
-#endif
 
        return 1;
 }