netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
To: Joe Perches <joe@perches.com>
Cc: grygorii.strashko@ti.com, davem@davemloft.net,
	linux-omap@vger.kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next] net: ethernet: ti: cpsw: replace unnecessarily macroses on functions
Date: Fri, 27 Jul 2018 22:36:43 +0300	[thread overview]
Message-ID: <20180727193641.GA2619@khorivan> (raw)
In-Reply-To: <98a6d1cd4d313512d66ced3fc25f438449b3c310.camel@perches.com>

On Fri, Jul 27, 2018 at 12:21:07PM -0700, Joe Perches wrote:
>On Fri, 2018-07-27 at 22:13 +0300, Ivan Khoronzhuk wrote:
>> Replace ugly macroses on functions.
>
>Careful, see below.
>
>> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
>[]
>> @@ -565,40 +565,40 @@ static const struct cpsw_stats cpsw_gstrings_ch_stats[] = {
>>  				(func)(slave++, ##arg);			\
>>  	} while (0)
>>
>> -#define cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb)		\
>> -	do {								\
>> -		if (!cpsw->data.dual_emac)				\
>> -			break;						\
>> -		if (CPDMA_RX_SOURCE_PORT(status) == 1) {		\
>> -			ndev = cpsw->slaves[0].ndev;			\
>> -			skb->dev = ndev;				\
>> -		} else if (CPDMA_RX_SOURCE_PORT(status) == 2) {		\
>> -			ndev = cpsw->slaves[1].ndev;			\
>> -			skb->dev = ndev;				\
>> -		}							\
>> -	} while (0)
>> -#define cpsw_add_mcast(cpsw, priv, addr)				\
>> -	do {								\
>> -		if (cpsw->data.dual_emac) {				\
>> -			struct cpsw_slave *slave = cpsw->slaves +	\
>> -						priv->emac_port;	\
>> -			int slave_port = cpsw_get_slave_port(		\
>> -						slave->slave_num);	\
>> -			cpsw_ale_add_mcast(cpsw->ale, addr,		\
>> -				1 << slave_port | ALE_PORT_HOST,	\
>> -				ALE_VLAN, slave->port_vlan, 0);		\
>> -		} else {						\
>> -			cpsw_ale_add_mcast(cpsw->ale, addr,		\
>> -				ALE_ALL_PORTS,				\
>> -				0, 0, 0);				\
>> -		}							\
>> -	} while (0)
>> -
>>  static inline int cpsw_get_slave_port(u32 slave_num)
>>  {
>>  	return slave_num + 1;
>>  }
>>
>> +static inline void cpsw_src_port_detect(struct cpsw_common *cpsw, int status,
>> +					struct sk_buff *skb)
>> +{
>> +	if (!cpsw->data.dual_emac)
>> +		return;
>> +
>> +	if (CPDMA_RX_SOURCE_PORT(status) == 1)
>> +		skb->dev = cpsw->slaves[0].ndev;
>> +	else if (CPDMA_RX_SOURCE_PORT(status) == 2)
>> +		skb->dev = cpsw->slaves[1].ndev;
>> +}
>
>perhaps better as a switch/case
not better, it's shorter.

>
>> +
>> +static void cpsw_add_mcast(struct cpsw_priv *priv, u8 *addr)
>> +{
>> +	struct cpsw_common *cpsw = priv->cpsw;
>> +
>> +	if (cpsw->data.dual_emac) {
>> +		struct cpsw_slave *slave = cpsw->slaves + priv->emac_port;
>> +		int slave_port = cpsw_get_slave_port(slave->slave_num);
>> +
>> +		cpsw_ale_add_mcast(cpsw->ale, addr,
>> +				   1 << slave_port | ALE_PORT_HOST,
>> +				   ALE_VLAN, slave->port_vlan, 0);
>> +		return;
>> +	}
>> +
>> +	cpsw_ale_add_mcast(cpsw->ale, addr, ALE_ALL_PORTS, 0, 0, 0);
>> +}
>> +
>>  static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
>>  {
>>  	struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
>> @@ -706,7 +706,7 @@ static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
>>
>>  		/* program multicast address list into ALE register */
>>  		netdev_for_each_mc_addr(ha, ndev) {
>> -			cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr);
>> +			cpsw_add_mcast(priv, (u8 *)ha->addr);
>>  		}
>>  	}
>>  }
>> @@ -801,7 +801,8 @@ static void cpsw_rx_handler(void *token, int len, int status)
>>  	int			ret = 0;
>>  	struct cpsw_common	*cpsw = ndev_to_cpsw(ndev);
>>
>> -	cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb);
>> +	cpsw_src_port_detect(cpsw, status, skb);
>> +	ndev = skb->dev;
>
>This is not the same code as the new function
>is not guaranteed to succeed or set skb->dev.
Guaranteed by above skb->dev is initialized already.
The function reflects previous macro.

Even more, seems that here is duplication of ndev=skb->dev;
It should be removed at init ), even if it 100% is optimized by complier.
So guaranteed a little more then needed ), will send v2 with removed
ndev = skb->dev at init if no objection.

>
>>  	if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
>>  		/* In dual emac mode check for all interfaces */

-- 
Regards,
Ivan Khoronzhuk

  reply	other threads:[~2018-07-27 19:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-27 19:13 [PATCH net-next] net: ethernet: ti: cpsw: replace unnecessarily macroses on functions Ivan Khoronzhuk
2018-07-27 19:15 ` Grygorii Strashko
2018-07-27 19:21 ` Joe Perches
2018-07-27 19:36   ` Ivan Khoronzhuk [this message]
2018-07-27 19:52     ` Ivan Khoronzhuk
2018-07-27 20:04     ` Joe Perches
2018-07-27 20:23       ` Ivan Khoronzhuk
2018-07-27 20:29         ` Joe Perches
2018-07-27 20:32 ` Andrew Lunn
2018-07-27 20:49   ` Ivan Khoronzhuk

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=20180727193641.GA2619@khorivan \
    --to=ivan.khoronzhuk@linaro.org \
    --cc=davem@davemloft.net \
    --cc=grygorii.strashko@ti.com \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=netdev@vger.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;
as well as URLs for NNTP newsgroup(s).