netdev
[Top] [All Lists]

Re: udp weirdness

To: Eric Lemoine <Eric.Lemoine@xxxxxxxxxxx>
Subject: Re: udp weirdness
From: Eric Lemoine <Eric.Lemoine@xxxxxxxxxxx>
Date: Fri, 27 Sep 2002 14:02:24 +0200
Cc: netdev@xxxxxxxxxxx
In-reply-to: <20020924065046.GF392@hookipa>
References: <20020924065046.GF392@hookipa>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mutt/1.3.28i
On Tue, Sep 24, 2002 at 08:50:46AM +0200, Eric Lemoine wrote:
> I'm observing some UDP weirdness, or I'd better say some UDP behaviour
> that I can't explain.
> 
> Two machines: one sending a UDP flow (using sendto) and another receiving 
> this UDP flow (using bind + recv). 
> 
> When the dgram length is lower that 357 Bytes I observe strange results
> at the send side. My home-made udp_tx program gives the following:
> 
> $./udp_tx -h 192.168.4.1 -m 357
> 357 1312621 357.518
> 
> 357 is the dgram length (in B), 1312621 the number of dgrams sent and 
> 357.518 the perceived thruput (in Mbits/s). The weirdness is that I
> get 357.518 Mbits/s whereas the underlying network is 10Mbits/s!
> 
> At the receive side the results are consistent (obviously):
> 
> $./udp_rx -m 357
> 357 29519 8.00884
> 
> <netstat -s --udp> on the send machine before and after the run also
> gives me such a large amount of sent packets (~1312700), whereas
> </sbin/ifconfig> confirms that about 29519 packets have been sent
> out.
> 
> Below 357 Bytes, the same kind of results are observed. Above 357 Bytes,
> the results make more sense to me:
> 
> $./udp_tx -h 192.168.4.1 -m 358
> 358 29505 8.04393
> 
> $./udp_rx -m 358
> 358 29468 8.0179
> 
> Does anybody know where I lose packets? And why do I lose them only when
> the dgram length is below 357 Bytes?
> 
> BTW, I'm running 2.4.18-vanilla w/ the 3c59x driver.

I figured out that packets can be dropped in pfifo_fast_enqueue()
[the default qdisc's enqueue func], even though the driver/kernel 
flow control has triggered. 

And sendto does not notify the user when packet gets dropped because 
the output queue overflows (as indicated in sendto manpage).

Why doesn't the kernel just put the process into sleep instead of 
dropping packets?

Thanks.
-- 
Eric


<Prev in Thread] Current Thread [Next in Thread>