aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_bio.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-07-25 08:09:21 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-07-25 08:09:21 +0000
commita3d57cfbfd835bbc84f432efd40ea867b1c3c915 (patch)
tree0fcadfb4dec3ba9c51dde7032606d54bfac3bdc8 /sys/kern/vfs_bio.c
parent57a21aba930b1b31247f3b74d84334cd5dd90d9b (diff)
downloadsrc-a3d57cfbfd835bbc84f432efd40ea867b1c3c915.tar.gz
src-a3d57cfbfd835bbc84f432efd40ea867b1c3c915.zip
Neuter this warning for now, I think I know the remaining issues.
Notes
Notes: svn path=/head/; revision=132628
Diffstat (limited to 'sys/kern/vfs_bio.c')
-rw-r--r--sys/kern/vfs_bio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
index 20f809b94c2a..e8ff1b1fa310 100644
--- a/sys/kern/vfs_bio.c
+++ b/sys/kern/vfs_bio.c
@@ -2571,8 +2571,9 @@ loop:
bsize = size;
if (vp->v_bsize != bsize) {
+#if 0
printf("WARNING: Wrong block size on vnode: %d should be %d\n", vp->v_bsize, bsize);
- vprint("Please email phk@FreeBSD.org this info\n", vp);
+#endif
vp->v_bsize = bsize;
}