From: Shunyong Yang <yang.shunyong@gmail.com>
To: bhelgaas@google.com, lorenzo.pieralisi@arm.com, kw@linux.com,
leon@kernel.org, kishon@ti.com
Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] tools: PCI: Zero-initialize param
Date: Tue, 3 Aug 2021 19:48:37 +0800 [thread overview]
Message-ID: <2017bdfe-b053-0dbe-82e3-b5533dbe372e@gmail.com> (raw)
In-Reply-To: <9e40fd4c-6aec-db3e-f323-0f2cfb67d58c@ti.com>
Hi, Bjorn,
Would you please help to review and put this tiny fix (for
tools/pci/pcitest.c) in your merge queue? Kishon has acked.
Thanks.
Shunyong
On 2021/7/14 21:32, Kishon Vijay Abraham I wrote:
>
> On 14/07/21 6:53 pm, Shunyong Yang wrote:
>> The values in param may be random if they are not initialized, which
>> may cause use_dma flag set even when "-d" option is not provided
>> in command line. Initializing all members to 0 to solve this.
>>
>> Signed-off-by: Shunyong Yang <yang.shunyong@gmail.com>
> Thanks for the fix.
>
> Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
>
>
>> ---
>> v2: Change {0} to {} as Leon Romanovsky's comment.
>> ---
>> tools/pci/pcitest.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c
>> index 0a1344c45213..441b54234635 100644
>> --- a/tools/pci/pcitest.c
>> +++ b/tools/pci/pcitest.c
>> @@ -40,7 +40,7 @@ struct pci_test {
>>
>> static int run_test(struct pci_test *test)
>> {
>> - struct pci_endpoint_test_xfer_param param;
>> + struct pci_endpoint_test_xfer_param param = {};
>> int ret = -EINVAL;
>> int fd;
>>
>>
next prev parent reply other threads:[~2021-08-03 11:49 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-14 13:23 [PATCH v2] tools: PCI: Zero-initialize param Shunyong Yang
2021-07-14 13:32 ` Kishon Vijay Abraham I
2021-08-03 11:48 ` Shunyong Yang [this message]
2021-08-05 10:02 ` Lorenzo Pieralisi
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=2017bdfe-b053-0dbe-82e3-b5533dbe372e@gmail.com \
--to=yang.shunyong@gmail.com \
--cc=bhelgaas@google.com \
--cc=kishon@ti.com \
--cc=kw@linux.com \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
/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;
as well as URLs for NNTP newsgroup(s).