Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usbip: tools usbip_network: Fix cryptic error messages

Kernel and tool version mismatch message is cryptic. Fix it to be
informative.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Shuah Khan and committed by
Greg Kroah-Hartman
8fe8f582 0c60b148

+2 -2
+2 -2
tools/usb/usbip/src/usbip_network.c
··· 179 179 PACK_OP_COMMON(0, &op_common); 180 180 181 181 if (op_common.version != USBIP_VERSION) { 182 - dbg("version mismatch: %d %d", op_common.version, 183 - USBIP_VERSION); 182 + err("USBIP Kernel and tool version mismatch: %d %d:", 183 + op_common.version, USBIP_VERSION); 184 184 goto err; 185 185 } 186 186