[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230629143005.GJ16168@twin.jikos.cz>
Date: Thu, 29 Jun 2023 16:30:05 +0200
From: David Sterba <dsterba@...e.cz>
To: Julia Lawall <Julia.Lawall@...ia.fr>
Cc: Chris Mason <clm@...com>, keescook@...omium.org,
kernel-janitors@...r.kernel.org,
Josef Bacik <josef@...icpanda.com>,
David Sterba <dsterba@...e.com>, linux-btrfs@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 12/26] btrfs: zoned: use array_size
On Fri, Jun 23, 2023 at 11:14:43PM +0200, Julia Lawall wrote:
> Use array_size to protect against multiplication overflows.
>
> The changes were done using the following Coccinelle semantic patch:
>
> // <smpl>
> @@
> size_t e1,e2;
> expression COUNT;
> identifier alloc = {vmalloc,vzalloc,kvmalloc,kvzalloc};
> @@
>
> (
> alloc(
> - (e1) * (e2)
> + array_size(e1, e2)
> ,...)
> |
> alloc(
> - (e1) * (COUNT)
> + array_size(COUNT, e1)
> ,...)
> )
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@...ia.fr>
Added to misc-next with updated subject and changelog, thanks.
Powered by blists - more mailing lists