mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-27 02:14:28 +03:00
Fix printk() calls missing log level
Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: DHE <git@dehacked.net> Closes #6672
This commit is contained in:
parent
3fd3e56cfd
commit
7e98073379
@ -99,7 +99,7 @@ static void
|
||||
vdev_disk_error(zio_t *zio)
|
||||
{
|
||||
#ifdef ZFS_DEBUG
|
||||
printk("ZFS: zio error=%d type=%d offset=%llu size=%llu "
|
||||
printk(KERN_WARNING "ZFS: zio error=%d type=%d offset=%llu size=%llu "
|
||||
"flags=%x\n", zio->io_error, zio->io_type,
|
||||
(u_longlong_t)zio->io_offset, (u_longlong_t)zio->io_size,
|
||||
zio->io_flags);
|
||||
@ -173,8 +173,9 @@ vdev_elevator_switch(vdev_t *v, char *elevator)
|
||||
strfree(argv[2]);
|
||||
#endif /* HAVE_ELEVATOR_CHANGE */
|
||||
if (error)
|
||||
printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
|
||||
elevator, v->vdev_path, device, error);
|
||||
printk(KERN_NOTICE "ZFS: Unable to set \"%s\" scheduler"
|
||||
" for %s (%s): %d\n", elevator, v->vdev_path, device,
|
||||
error);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user