From 825ce074b10a0e1f63fd3a1fe245220d04054e0a Mon Sep 17 00:00:00 2001 From: Frans Kaashoek Date: Mon, 7 Aug 2017 15:15:18 -0400 Subject: [PATCH] Remove some debugging statements --- fs.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/fs.c b/fs.c index 36b07d2..96a0334 100644 --- a/fs.c +++ b/fs.c @@ -449,13 +449,6 @@ readi(struct inode *ip, char *dst, uint off, uint n) for(tot=0; totdev, bmap(ip, off/BSIZE)); m = min(n - tot, BSIZE - off%BSIZE); - /* - cprintf("data off %d:\n", off); - for (int j = 0; j < min(m, 10); j++) { - cprintf("%x ", bp->data[off%BSIZE+j]); - } - cprintf("\n"); - */ memmove(dst, bp->data + off%BSIZE, m); brelse(bp); }