diff options
author | Warner Losh <imp@FreeBSD.org> | 2020-02-20 00:34:46 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2020-02-20 00:34:46 +0000 |
commit | 65252dc903ed1acffb01b717a537db7f99c40e5c (patch) | |
tree | 9a616da4c7f39671b135b17564540504e3753d04 /sys/vm/vnode_pager.c | |
parent | 4b3dac72b3cb46aefaa8160911365b6d169643c9 (diff) |
Don't spam the console with an additional, and useless, error message.
There's no need to spam the console with this error message. If there's an I/O
error, the disk/cam driver will report it at the lower levels. If that's an
actual problem, the upper layers will report that.
Reviewed by: kib@
Differential Revision: https://reviews.freebsd.org/D23756
Notes
Notes:
svn path=/head/; revision=358134
Diffstat (limited to 'sys/vm/vnode_pager.c')
-rw-r--r-- | sys/vm/vnode_pager.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c index 3216ef56579d..18bb6109c542 100644 --- a/sys/vm/vnode_pager.c +++ b/sys/vm/vnode_pager.c @@ -1169,8 +1169,6 @@ vnode_pager_generic_getpages_done(struct buf *bp) vm_page_readahead_finish(mt); } VM_OBJECT_RUNLOCK(object); - if (error != 0) - printf("%s: I/O read error %d\n", __func__, error); return (error); } |