From: Ben Gras Date: Sat, 22 Oct 2005 02:36:06 +0000 (+0000) Subject: Print these errors after all X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=ad1d6afbba1060064878660d6840e084eb112507;p=minix.git Print these errors after all --- diff --git a/servers/fs/cache.c b/servers/fs/cache.c index cb4dbf521..df2addf8e 100644 --- a/servers/fs/cache.c +++ b/servers/fs/cache.c @@ -273,10 +273,8 @@ int rw_flag; /* READING or WRITING */ if (r != block_size) { if (r >= 0) r = END_OF_FILE; if (r != END_OF_FILE) -#if FS_ERRORS printf("Unrecoverable disk error on device %d/%d, block %ld\n", (dev>>MAJOR)&BYTE, (dev>>MINOR)&BYTE, bp->b_blocknr); -#endif bp->b_dev = NO_DEV; /* invalidate block */ /* Report read errors to interested parties. */ @@ -383,12 +381,10 @@ int rw_flag; /* READING or WRITING */ if (iop->iov_size != 0) { /* Transfer failed. An error? Do we care? */ if (r != OK && i == 0) { -#if FS_ERRORS printf( "fs: I/O error on device %d/%d, block %lu\n", (dev>>MAJOR)&BYTE, (dev>>MINOR)&BYTE, bp->b_blocknr); -#endif bp->b_dev = NO_DEV; /* invalidate block */ } break;