From: Dave Jiang <dave.jiang@intel.com>
To: "Gustavo A. R. Silva" <gustavo@embeddedor.com>,
Vinod Koul <vkoul@kernel.org>,
"Williams, Dan J" <dan.j.williams@intel.com>
Cc: "dmaengine@vger.kernel.org" <dmaengine@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ioat/dca: Use struct_size() helper
Date: Wed, 28 Aug 2019 12:38:35 -0700 [thread overview]
Message-ID: <78eb4e9a-ec3d-f61e-1c7e-5f26a5608e9b@intel.com> (raw)
In-Reply-To: <20190828184015.GA4273@embeddedor>
On 8/28/19 11:40 AM, Gustavo A. R. Silva wrote:
> One of the more common cases of allocation size calculations is finding
> the size of a structure that has a zero-sized array at the end, along
> with memory for some number of elements for that array. For example:
>
> struct ioat_dca_priv {
> ...
> struct ioat_dca_slot req_slots[0];
> };
>
> Make use of the struct_size() helper instead of an open-coded version
> in order to avoid any potential type mistakes.
>
> So, replace the following form:
>
> sizeof(*ioatdca) + (sizeof(struct ioat_dca_slot) * slots)
>
> with:
>
> struct_size(ioatdca, req_slots, slots)
>
> This code was detected with the help of Coccinelle.
>
> Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Acked-by: Dave Jiang <dave.jiang@intel.com>
> ---
> drivers/dma/ioat/dca.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/dma/ioat/dca.c b/drivers/dma/ioat/dca.c
> index 70fd8454d002..be61c32a876f 100644
> --- a/drivers/dma/ioat/dca.c
> +++ b/drivers/dma/ioat/dca.c
> @@ -286,8 +286,7 @@ struct dca_provider *ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase)
> return NULL;
>
> dca = alloc_dca_provider(&ioat_dca_ops,
> - sizeof(*ioatdca)
> - + (sizeof(struct ioat_dca_slot) * slots));
> + struct_size(ioatdca, req_slots, slots));
> if (!dca)
> return NULL;
>
>
next prev parent reply other threads:[~2019-08-28 19:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-28 18:40 [PATCH] ioat/dca: Use struct_size() helper Gustavo A. R. Silva
2019-08-28 19:38 ` Dave Jiang [this message]
2019-09-04 4:48 ` Vinod Koul
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=78eb4e9a-ec3d-f61e-1c7e-5f26a5608e9b@intel.com \
--to=dave.jiang@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dmaengine@vger.kernel.org \
--cc=gustavo@embeddedor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox