netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ENOBUFS and dev_queue_xmit()
@ 2004-06-15  4:56 Alex Pankratov
  2004-06-15 12:54 ` jamal
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Pankratov @ 2004-06-15  4:56 UTC (permalink / raw)
  To: netdev

I've been poking around rather weird problem today where send()
on UDP socket was failing with ENETDOWN. When traced down to
the kernel, it happened to originate in dev_queue_xmit() -

	if (!netif_queue_stopped(dev)) {
		...
	}
	...
	$here

meaning that the device's queue was stopped. The comment there
implies that only a broken virtual device may end up $here, but
the fact is that I saw it for a physical interface running
slightly modified via-rhine driver. The original driver code
contains a snippet that stops the queue if its Tx ring buffer
becomes full -

	if (np->cur_tx == np->dirty_tx + TX_QUEUE_LEN)
		netif_stop_queue(dev);

and this code got actually executed with a hack applied.

At this point I thought that dev_queue_xmit() must be mistakenly
returning ENETDOWN instead of ENOBUFS, but looking at 'man 2 send'
I saw that -

	ENOBUFS
         The output queue for a network interface was full...snip...
	(Normally,  this  does  not occur  in Linux. Packets are
	just silently dropped when a device queue overflows.)

Hmmm... so I looked at e100 and tulip and these both stop the queue
too if they run out of buffers. In other words, the 'silently dropped'
clause from man page does not seem to be consistently followed.

Is this a known (pseudo?) issue ? ENOBUFS makes much more sense
in this context. I can certainly check interface status (IFF_UP)
on every ENETDOWN to see what's the real cause, but that's kind
of ugly.

Alex

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-06-15 15:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-15  4:56 ENOBUFS and dev_queue_xmit() Alex Pankratov
2004-06-15 12:54 ` jamal
2004-06-15 15:39   ` Alex Pankratov

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).