From: Bjørn Mork Date: Fri, 1 Nov 2013 10:16:53 +0000 (+0100) Subject: net: cdc_ncm: log the length we warn about X-Git-Tag: accepted/tizen/common/20141203.182822~1141^2~79^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a26fd05debd00b6f4e776d9dca4a39f0b76b01c7;p=platform%2Fkernel%2Flinux-arm64.git net: cdc_ncm: log the length we warn about Fix cut'n'paste typo. Log the bogus length and not the irrelevant signature. Cc: Alexey Orishko Signed-off-by: Bjørn Mork Signed-off-by: David S. Miller --- diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c index c40f742..b5fdf8f 100644 --- a/drivers/net/usb/cdc_ncm.c +++ b/drivers/net/usb/cdc_ncm.c @@ -923,7 +923,7 @@ int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset) if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) { pr_debug("invalid DPT16 length <%u>\n", - le32_to_cpu(ndp16->dwSignature)); + le16_to_cpu(ndp16->wLength)); goto error; }