[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110509084649.127ec0da@nehalam>
Date: Mon, 9 May 2011 08:46:49 -0700
From: Stephen Hemminger <shemminger@...tta.com>
To: Alan Stern <stern@...land.harvard.edu>
Cc: Ming Lei <tom.leiming@...il.com>,
Oliver Neukum <oliver@...kum.org>, <netdev@...r.kernel.org>,
<linux-usb@...r.kernel.org>
Subject: Re: future developments of usbnet
On Mon, 9 May 2011 11:31:16 -0400 (EDT)
Alan Stern <stern@...land.harvard.edu> wrote:
> On Mon, 9 May 2011, Ming Lei wrote:
>
> > Hi,
> >
> > 2011/5/9 Oliver Neukum <oliver@...kum.org>:
> >
> > > Do we really need to avoid it, or do we just need to recover?
> > > If avoidance is needed, should we use NAPI?
> >
> > IMO, OOM can recover it certainly but with much cost, so we should
> > avoid the case. I don't think NAPI can avoid it, because NAPI will
> > cause skb to be allocated without any limit if there are packets
> > coming, still no chance left for usbnet_bh to handle and free these
> > SKBs.
>
> How do other network drivers handle this problem? Can the same
> strategy be used?
>
> Alan Stern
Most Ethernet drivers have a fixed size receive ring and pass preallocated
memory (skb's or pages) for the hardware to fill in. When NAPI poll is run
it refills the ring and passes the data up to netif_receive_skb. NAPI allows
the poll routine to process a limited number of packets (weight) and after
that the poll loop exits and gets rerun by soft interrupt. If data is
arriving faster than the kernel can process, eventually the receive ring
passed to hardware gets exhausted and the hardware drops packets.
There is no explicit memory bound limit, instead the flow control happens
when the receive ring gets full.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists