diff options
author | phk <phk@FreeBSD.org> | 2004-07-25 08:09:21 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-07-25 08:09:21 +0000 |
commit | c65194c810c624692d5f4587ba27c1084b84af86 (patch) | |
tree | 0fcadfb4dec3ba9c51dde7032606d54bfac3bdc8 /sys | |
parent | 035cd2c09de3f16641eec32f0b476bd084170f6c (diff) | |
download | FreeBSD-src-c65194c810c624692d5f4587ba27c1084b84af86.zip FreeBSD-src-c65194c810c624692d5f4587ba27c1084b84af86.tar.gz |
Neuter this warning for now, I think I know the remaining issues.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_bio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 20f809b..e8ff1b1 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; } |