Re: [PATCH v2] checkpatch: Suggest using min_t or max_t

From: Philippe De Muyter
Date: Wed Sep 05 2012 - 07:21:56 EST


On 5/27/11, Joe Perches <joe@xxxxxxxxxxx> wrote:
> A common issue with min() or max() is using a cast on
> one or both of the arguments when using min_t/max_t could
> be better.
>
> Add cast detection to uses of min/max and suggest an
> appropriate use of min_t or max_t instead.
>
> Caveat: This only works for min() or max() on a single line.
> It does not find min() or max() split across multiple lines.
>
> This does find:
> min((u32)foo, bar);
> But it does not find:
> max((unsigned long)foo,
> bar);
>
> Suggested-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
> Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
> ---
>
> v2: Make $match_balanced_parentheses work in perl 5.8

Has this been applied ?

v3.3 version of checkpatch.pl works for me, but v3.4, v3.5 & v3.6rc2 say:
Nested quantifiers in regex; marked by <-- HERE in m/(\((?:[^\(\)]++
<-- HERE |(?-1))*\))/ at scripts/checkpatch.pl line 340.

and my perl is :

perl --version

This is perl, v5.8.8 built for i586-linux-thread-multi

Philippe
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/