The patch titled Subject: checkpatch: suggest using eth_zero_addr() and eth_broadcast_addr() has been added to the -mm tree. Its filename is checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mateusz Kulikowski <mateusz.kulikowski@xxxxxxxxx> Subject: checkpatch: suggest using eth_zero_addr() and eth_broadcast_addr() Suggest using eth_zero_addr() or eth_broadcast_addr() instead of memset(). Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@xxxxxxxxx> Acked-by: Joe Perches <joe@xxxxxxxxxxx> Cc: David Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/checkpatch.pl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff -puN scripts/checkpatch.pl~checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr scripts/checkpatch.pl --- a/scripts/checkpatch.pl~checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr +++ a/scripts/checkpatch.pl @@ -5165,6 +5165,29 @@ sub process { "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n") } +# check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr +# check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr + if ($^V && $^V ge 5.10.0 && + defined $stat && + $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) { + + my $ms_val = $7; + + if ($ms_val =~ /^(?:0x|)0+$/i) { + if (WARN("PREFER_ETH_ZERO_ADDR", + "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") && + $fix) { + $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/; + } + } elsif ($ms_val =~ /^(?:0xff|255)$/i) { + if (WARN("PREFER_ETH_BROADCAST_ADDR", + "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") && + $fix) { + $fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/; + } + } + } + # typecasts on min/max could be min_t/max_t if ($^V && $^V ge 5.10.0 && defined $stat && _ Patches currently in -mm which might be from mateusz.kulikowski@xxxxxxxxx are checkpatch-suggest-using-ether_addr_equal.patch checkpatch-fix-processing-of-memset-issues.patch checkpatch-suggest-using-eth_zero_addr-and-eth_broadcast_addr.patch checkpatch-add-multi-line-handling-for-prefer_ether_addr_copy.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html