sys/kern/vfs: Fix wrong function name in kprintf/panic
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Thu, 5 Nov 2015 13:35:03 +0000 (22:35 +0900)
committerTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Fri, 6 Nov 2015 14:42:23 +0000 (23:42 +0900)
commit55a31050c29e6c5a869744b8f9db14af9b22903d
treeb68415d8db2e5d3eb674d8bc44e3b6d5a527590c
parent178e0f8e6acec33051204c7fcec383a1bb7055a0
sys/kern/vfs: Fix wrong function name in kprintf/panic

ae8e83e6e in 2009 renamed biodone() to bpdone(), and made
bpdone() to be called by the new biodone() implementation
as well as other callers, but the function names used in
kprintf() and panic() were not updated to "bpdone:".

bpdone() isn't exclusively used by biodone(), so it should
use a proper function name.
sys/kern/vfs_bio.c