DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Min Hu (Connor)" <humin29@huawei.com>
To: Stephen Hemminger <stephen@networkplumber.org>
Cc: <dev@dpdk.org>, <ferruh.yigit@intel.com>, <keith.wiles@intel.com>
Subject: Re: [dpdk-dev] [PATCH 2/2] net/tap: fix tap interrupt vector array size
Date: Fri, 23 Apr 2021 17:34:06 +0800	[thread overview]
Message-ID: <312ff8cb-6f04-2dbc-be80-d13fd1979e8c@huawei.com> (raw)
In-Reply-To: <20210422082045.35db7756@hermes.local>



在 2021/4/22 23:20, Stephen Hemminger 写道:
> On Thu, 22 Apr 2021 19:27:14 +0800
> "Min Hu (Connor)" <humin29@huawei.com> wrote:
> 
>> diff --git a/drivers/net/tap/tap_intr.c b/drivers/net/tap/tap_intr.c
>> index 5cf4f17..1cacc15 100644
>> --- a/drivers/net/tap/tap_intr.c
>> +++ b/drivers/net/tap/tap_intr.c
>> @@ -59,7 +59,7 @@ tap_rx_intr_vec_install(struct rte_eth_dev *dev)
>>   
>>   	if (!dev->data->dev_conf.intr_conf.rxq)
>>   		return 0;
>> -	intr_handle->intr_vec = malloc(sizeof(intr_handle->intr_vec[rxqs_n]));
>> +	intr_handle->intr_vec = malloc(sizeof(int) * rxqs_n);
> 
> Maybe calloc() here would be good idea?
> 
Hi, Stephen,
	No need to use calloc, because members of
  'intr_handle->intr_vec' array will be set new
value.
> 

  reply	other threads:[~2021-04-23  9:34 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22 11:27 [dpdk-dev] [PATCH 0/2] bugfix for tap device Min Hu (Connor)
2021-04-22 11:27 ` [dpdk-dev] [PATCH 1/2] net/tap: fix log loss when state fails to be restored Min Hu (Connor)
2021-04-26 15:30   ` Ferruh Yigit
2021-04-27  0:54     ` Min Hu (Connor)
2021-04-27  0:54   ` [dpdk-dev] [PATCH v2] " Min Hu (Connor)
2021-04-29 13:36     ` Ferruh Yigit
2021-04-22 11:27 ` [dpdk-dev] [PATCH 2/2] net/tap: fix tap interrupt vector array size Min Hu (Connor)
2021-04-22 15:20   ` Stephen Hemminger
2021-04-23  9:34     ` Min Hu (Connor) [this message]
2021-04-26 15:31   ` Ferruh Yigit

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=312ff8cb-6f04-2dbc-be80-d13fd1979e8c@huawei.com \
    --to=humin29@huawei.com \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=keith.wiles@intel.com \
    --cc=stephen@networkplumber.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;
as well as URLs for NNTP newsgroup(s).