[PATCH v3] checkpatches: suppress warning about strlcpy

2021-11-15 Thread Stephen Hemminger
Current version of Linux kernel checkpatch now complains about usages of strlcpy because the Linux kernel prefers strcspy. WARNING:STRLCPY: Prefer strscpy over strlcpy But DPDK project allows strlcpy, therefore suppress the warning. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson -

Re: [PATCH v3] checkpatches: suppress warning about strlcpy

2021-11-26 Thread Thomas Monjalon
16/11/2021 00:26, Stephen Hemminger: > Current version of Linux kernel checkpatch now complains about > usages of strlcpy because the Linux kernel prefers strcspy. > > WARNING:STRLCPY: Prefer strscpy over strlcpy > > But DPDK project allows strlcpy, therefore suppress the warning. > > Signed-off