DPDK patches and discussions
 help / color / mirror / Atom feed
From: =?gb18030?B?19S/2MXLtqzR8w==?= <197020236@qq.com>
To: =?gb18030?B?eGF2aWVyLmh1d2Vp?= <xavier.huwei@huawei.com>,
	=?gb18030?B?ZGV2?= <dev@dpdk.org>,
	=?gb18030?B?Y2hhczM=?= <chas3@att.com>
Subject: Re: [dpdk-dev] [PATCH] dedicated queues: delete redundant check valid_bonded_port_id has include check_for_bonded_ethdev, no need to check again.
Date: Sat, 4 Jul 2020 09:22:48 +0800	[thread overview]
Message-ID: <tencent_16567D42317D9A25F4E5C373BBDCC64CC20A@qq.com> (raw)
In-Reply-To: <f5be671b-a245-02fe-244b-0bdcae6ecc1d@huawei.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="gb18030", Size: 3532 bytes --]

Ok, I will fix it in the next patch, thank you.




------------------&nbsp;Original&nbsp;------------------
From:&nbsp;"xavier.huwei"<xavier.huwei@huawei.com&gt;;
Date:&nbsp;Thu, Jul 2, 2020 09:02 AM
To:&nbsp;"×Ô¿ØÅ˶¬Ñó"<197020236@qq.com&gt;;"chas3"<chas3@att.com&gt;;
Cc:&nbsp;"dev"<dev@dpdk.org&gt;;"Wei Hu (Xavier)"<xavier.huwei@huawei.com&gt;;
Subject:&nbsp;Re: [dpdk-dev] [PATCH] dedicated queues: delete redundant check valid_bonded_port_id has include check_for_bonded_ethdev, no need to check again.



Hi, pandongyang

The title is too long, and lack of the commit log.
&nbsp;&nbsp;&nbsp; You can use this script to check your commit when making patch
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ./devtools/check-git-log.sh -[num]

On 2020/6/21 21:34, 197020236@qq.com wrote:
&gt; From: pandongyang <197020236@qq.com&gt;
&gt;
&gt; Signed-off-by: pandongyang <197020236@qq.com&gt;
&gt; ---
&gt;&nbsp;&nbsp; drivers/net/bonding/rte_eth_bond_8023ad.c | 6 ------
&gt;&nbsp;&nbsp; 1 file changed, 6 deletions(-)
&gt;
&gt; diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rte_eth_bond_8023ad.c
&gt; index b77a37d..3393743 100644
&gt; --- a/drivers/net/bonding/rte_eth_bond_8023ad.c
&gt; +++ b/drivers/net/bonding/rte_eth_bond_8023ad.c
&gt; @@ -1675,9 +1675,6 @@ rte_eth_bond_8023ad_dedicated_queues_enable(uint16_t port)
&gt;&nbsp;&nbsp; 	dev = &amp;rte_eth_devices[port];
&gt;&nbsp;&nbsp; 	internals = dev-&gt;data-&gt;dev_private;
&gt;&nbsp;&nbsp; 
&gt; -	if (check_for_bonded_ethdev(dev) != 0)
&gt; -		return -1;
&gt; -
&gt;&nbsp;&nbsp; 	if (bond_8023ad_slow_pkt_hw_filter_supported(port) != 0)
&gt;&nbsp;&nbsp; 		return -1;
&gt;&nbsp;&nbsp; 
Maybe it is better to remove another place as follows

int
rte_eth_bond_8023ad_dedicated_queues_enable(uint16_t port)
{
&nbsp;&nbsp;&nbsp;&nbsp; int retval = 0;
&nbsp;&nbsp;&nbsp;&nbsp; struct rte_eth_dev *dev;
&nbsp;&nbsp;&nbsp;&nbsp; struct bond_dev_private *internals;

&nbsp;&nbsp;&nbsp;&nbsp; if (valid_bonded_port_id(port) != 0)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -EINVAL;

&nbsp;&nbsp;&nbsp;&nbsp; dev = &amp;rte_eth_devices[port];
&nbsp;&nbsp;&nbsp;&nbsp; internals = dev-&gt;data-&gt;dev_private;

-&nbsp;&nbsp;&nbsp; if (check_for_bonded_ethdev(dev) != 0)
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;

&nbsp;&nbsp;&nbsp;&nbsp; [snip]


&gt; @@ -1704,9 +1701,6 @@ rte_eth_bond_8023ad_dedicated_queues_disable(uint16_t port)
&gt;&nbsp;&nbsp; 	dev = &amp;rte_eth_devices[port];
&gt;&nbsp;&nbsp; 	internals = dev-&gt;data-&gt;dev_private;
&gt;&nbsp;&nbsp; 
&gt; -	if (check_for_bonded_ethdev(dev) != 0)
&gt; -		return -1;
&gt; -
&gt;&nbsp;&nbsp; 	/* Device must be stopped to set up slow queue */
&gt;&nbsp;&nbsp; 	if (dev-&gt;data-&gt;dev_started)
&gt;&nbsp;&nbsp; 		return -1;
similar to above comment

int
rte_eth_bond_8023ad_dedicated_queues_disable(uint16_t port)
{
&nbsp;&nbsp;&nbsp;&nbsp; int retval = 0;
&nbsp;&nbsp;&nbsp;&nbsp; struct rte_eth_dev *dev;
&nbsp;&nbsp;&nbsp;&nbsp; struct bond_dev_private *internals;

&nbsp;&nbsp;&nbsp;&nbsp; if (valid_bonded_port_id(port) != 0)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -EINVAL;

&nbsp;&nbsp;&nbsp;&nbsp; dev = &amp;rte_eth_devices[port];
&nbsp;&nbsp;&nbsp;&nbsp; internals = dev-&gt;data-&gt;dev_private;

-&nbsp;&nbsp;&nbsp; if (check_for_bonded_ethdev(dev) != 0)
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return -1;

[snip]


Thanks, Xavier

  reply	other threads:[~2020-07-04  1:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200621133455.6BFC01C0C0@dpdk.org>
2020-07-02  1:02 ` Wei Hu (Xavier)
2020-07-04  1:22   `  =?gb18030?B?19S/2MXLtqzR8w==?= [this message]
2020-06-21 13:34 197020236

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=tencent_16567D42317D9A25F4E5C373BBDCC64CC20A@qq.com \
    --to=197020236@qq.com \
    --cc=chas3@att.com \
    --cc=dev@dpdk.org \
    --cc=xavier.huwei@huawei.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).