All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ruslan V. Sushko" <rsushko@ru.mvista.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: linuxppc-embedded@ozlabs.org
Subject: Re: Netpoll controller support for PPC EMAC driver
Date: Thu, 08 Dec 2005 20:13:49 +0300	[thread overview]
Message-ID: <439869CD.2040002@ru.mvista.com> (raw)
In-Reply-To: <20051208145714.GA16049@tuxdriver.com>

Please see my answers bellow.
John W. Linville wrote:
> On Thu, Dec 08, 2005 at 03:34:15PM +0300, Ruslan V. Sushko wrote:
>   
>> This patch adds netpoll controller support for PPC EMAC driver
>>
>> Signed-off-by: Ruslan V. Sushko <rsushko@ru.mvista.com>
>>     
>
> Patches in-line are easier to review... :-)
>
>   
>> @@ -1071,8 +1071,16 @@ static int emac_start_xmit(struct sk_buf
>>  	struct ocp_enet_private *dev = ndev->priv;
>>  	unsigned int len = skb->len;
>>  	int slot;
>> +	u16 ctrl;
>>  
>> -	u16 ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
>> +#ifdef CONFIG_NET_POLL_CONTROLLER
>> +	if (unlikely(dev->tx_cnt == NUM_TX_BUFF)) {
>> +		netif_stop_queue(ndev);
>> +		return -EBUSY;
>> +	}
>> +#endif
>>     
>
> Why is this necessary?
>   
When netpoll controller is enabled and packets are trapped bay netpoll 
controller the netif_stop_queue function does nothing. As result the 
packets which are queued for send may be overwritten/corrupted, because 
CPU insert packets significantly faster then netdev send them.
>   
>> +
>> +	ctrl = EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP | MAL_TX_CTRL_READY |
>>  	    MAL_TX_CTRL_LAST | emac_tx_csum(dev, skb);
>>  
>>  	slot = dev->tx_slot++;
>> @@ -1938,6 +1946,33 @@ static int emac_ioctl(struct net_device 
>>  		return -EOPNOTSUPP;
>>  	}
>>  }
>> +#ifdef CONFIG_NET_POLL_CONTROLLER
>> +void
>> +poll_ctrl(struct net_device *dev)
>> +{
>> +	int budget = 16;
>> +	struct ibm_ocp_mal *mal = ((struct ocp_enet_private*)(dev->priv))->mal;
>> +	struct net_device *poll_dev = &(mal->poll_dev);
>> +
>> +	/* disable  MAL interrupts */
>> +	mal_disable_eob_irq(mal);
>> +	netif_poll_disable(poll_dev);
>>     
>
> Is the call to netif_poll_disable necessary?  Aren't NAPI and netpoll
> aware of each other?
>   
In this case the device instance passed to netpoll controller 
functionality is not the same which used by NAPI. As result conflict 
will occurred if netpoll controller invokes polling in the time of NAPI 
poll working. Please see my comments below.
>   
>> +
>> +	emac_poll_rx(dev->priv, budget);
>> +	emac_poll_tx(dev->priv);
>> +
>> +	netif_poll_enable(poll_dev);
>> +	/* Enable mal interrupts */
>> +	mal_enable_eob_irq(mal);
>> +}
>> +
>> +int
>> +poll_fake(struct net_device *dev, int *budget)
>> +{
>> +	/* It will be never invoked */
>> +	return 0;
>> +}
>> +#endif
>>     
>
> If it's never invoked, then why define it?
>   
Please see my comments bellow.
>   
>>  
>>  static int __init emac_probe(struct ocp_device *ocpdev)
>>  {
>> @@ -2188,6 +2223,11 @@ static int __init emac_probe(struct ocp_
>>  	netif_carrier_off(ndev);
>>  	netif_stop_queue(ndev);
>>  
>> +#ifdef CONFIG_NET_POLL_CONTROLLER
>> +	ndev->poll_controller = poll_ctrl;
>> +	ndev->poll = poll_fake;
>> +#endif
>> +
>>     
>
> ->poll is not related to ->poll_controller.  It is for NAPI, not
> netpoll.
>   
The main idea is devices passed to netpoll controller are not the same 
which is used for NAPI. This driver has three net_device instances. One 
is virtual device which is used only for NAPI (for this device real NAPI 
poll function is defined) and two others are usual devices without NAPI. 
For each of these two devices poll handlers functions are defined 
(emac_poll_rx and emac_poll_tx) which are invoked from NAPI device poll 
handler. Function emac_poll_rx uses netif_receive_skb function to pass 
skbs to high level. To pass skb to netpoll controller via 
netif_receive_skb function the poll field must be defined:
-------------------- cut from netif_receive_skb (net/dev.c) ----------
if (skb->dev->poll && netpoll_rx(skb))
return NET_RX_DROP;
--------------------------------------------------------------------------------
So the poll_fake function and poll field are defined and initialized 
only to cheat netif_receive_skb function. In same time the poll_fake 
will be never invoked because devices for whom this function is defined 
are not NAPI devices.

Thank you,
Ruslan

  reply	other threads:[~2005-12-08 17:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-12-08 12:34 Netpoll controller support for PPC EMAC driver Ruslan V. Sushko
2005-12-08 14:57 ` John W. Linville
2005-12-08 17:13   ` Ruslan V. Sushko [this message]
2005-12-08 18:01 ` Eugene Surovegin

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=439869CD.2040002@ru.mvista.com \
    --to=rsushko@ru.mvista.com \
    --cc=linuxppc-embedded@ozlabs.org \
    --cc=linville@tuxdriver.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.