From: David S. Miller Date: Tue, 20 Nov 2018 18:15:36 +0000 (-0800) Subject: ipv4: Don't try to print ASCII of link level header in martian dumps. X-Git-Tag: v5.15~7332^2~248 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2c851006386c1c5c0e55eab4a7f60da2a3e25b3;p=platform%2Fkernel%2Flinux-starfive.git ipv4: Don't try to print ASCII of link level header in martian dumps. This has no value whatsoever. Signed-off-by: David S. Miller --- diff --git a/net/ipv4/route.c b/net/ipv4/route.c index c0a9d26..c4ddbc5 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -1677,7 +1677,7 @@ static void ip_handle_martian_source(struct net_device *dev, print_hex_dump(KERN_WARNING, "ll header: ", DUMP_PREFIX_OFFSET, 16, 1, skb_mac_header(skb), - dev->hard_header_len, true); + dev->hard_header_len, false); } } #endif