[dpdk-dev] [PATCH v10 11/20] unci: add netlink exec

Stephen Hemminger stephen at networkplumber.org
Wed Jul 5 21:15:24 CEST 2017


On Tue,  4 Jul 2017 17:13:28 +0100
Ferruh Yigit <ferruh.yigit at intel.com> wrote:

> +
> +			if (nl_msg->err == 0 && recv_len != expected_len)
> +				pr_info("Expected and received len not match "
> +					"%zu - %zu\n", recv_len, expected_len);
> +		}
> +

Checkpatch complains about string split, just put the whole string on one line.

				pr_info("Expected and received len not match %zu - %zu\n", 
					recv_len, expected_len)

WARNING: quoted string split across lines
#99: FILE: lib/librte_eal/linuxapp/unci/unci_nl.c:99:
+				pr_info("Expected and received len not match "
+					"%zu - %zu\n", recv_len, expected_len);



More information about the dev mailing list