]> Zhao Yanbai Git Server - minix.git/commitdiff
temporarily disable update-superblock check
authorBen Gras <ben@minix3.org>
Tue, 31 Jan 2012 15:17:06 +0000 (16:17 +0100)
committerBen Gras <ben@minix3.org>
Thu, 2 Feb 2012 14:04:51 +0000 (15:04 +0100)
. incompatible with installboot -d FSDEV on mounted filesystems
. should be re-enabled when netbsd boot loader is default

servers/mfs/cache.c

index d64dcc228e23c6f36e64cc9a4ec0455f80ceea80..7acb0f0486c9a1c6de2bf4c1f4fe6d8f802c2a6c 100644 (file)
@@ -381,6 +381,11 @@ 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) {
@@ -393,6 +398,7 @@ int block_write_ok(struct buf *bp)
                printf("This shouldn't happen.\n");
                return 0;
        }
+#endif
 
        return 1;
 }