All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fedorov Sergey <s.fedorov@samsung.com>
To: Stefan Hajnoczi <stefanha@gmail.com>
Cc: Stefan Hajnoczi <stefanha@redhat.com>,
	a.basov@samsung.com, qemu-devel@nongnu.org, aliguori@amazon.com
Subject: Re: [Qemu-devel] [PATCH] net/hub: remove can_receive handler
Date: Mon, 21 Oct 2013 15:52:26 +0400	[thread overview]
Message-ID: <5265157A.8020408@samsung.com> (raw)
In-Reply-To: <526513AE.2050605@samsung.com>


On 10/21/2013 03:44 PM, Fedorov Sergey wrote:
> On 04/23/2013 04:00 PM, Stefan Hajnoczi wrote:
>> On Tue, Apr 23, 2013 at 11:41:42AM +0400, Fedorov Sergey wrote:
>>>> Beyond that, we also want to avoid growing net queues 
>>>> indefinitely.  If
>>>> the hub does not implement .can_receive() then it relies on growing
>>>> queues (keeping packets buffered in memory).
>>> No, net_hub_receive() calls qemu_send_packet(). If the destination
>>> queue cannot receive the packet qemu_net_queue_append() will take
>>> care of queue->nq_maxlen.
>> You are right, sorry.  We do discard packets at nq_maxlen.
>>
>> The problem with ignoring .can_receive() on the hub is that it breaks
>> flow control.  For example, net/tap.c is designed to avoid reading more
>> packets if its peer cannot receive (see tap_can_send()).
>>
>> If the hub claims it can always receive we waste cycles reading packets
>> from the tap device only to discard them.
>>
>> Since qemu.git already has a fix which preserves flow control, I am not
>> going to merge your patch.
>>
>> Stefan
>>
>>
>
> Dear, Stefan Hajnoczi,
>
> After our discussion about this patch I decided to keep my patch in 
> our branch until rebase onto a new release. Recently I have rebased 
> our branch onto v1.5.3 and reverted my patch. Then I face an issue 
> when using user-mode networking with USB network device for mounting 
> root file system through NFS. Fragmented UDP packets from host to 
> guest does not handled properly. Seems that some fragments is lost or 
> somehow stalled. See guest tcpdump log below.
>
> 03:16:52.259690 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto 
> UDP (17), length 164)
>     10.0.2.15.3369105030 > 10.0.2.2.nfs: 136 readdirplus fh 
> Unknown/0100070004001200000000002873593C9B3C43388E23748B0BAD870C00000000 
> 512 bytes @ 0 max 4096 verf 0000000000000000
> 03:16:52.262323 IP (tos 0x0, ttl 64, id 16, offset 0, flags [+], proto 
> UDP (17), length 1500)
>     10.0.2.2.nfs > 10.0.2.15.3369105030: reply ok 1472 readdirplus 
> POST: DIR 40777 ids 0/0 sz 4096 verf 0000000000000000
> 03:16:52.264592 IP (tos 0x0, ttl 64, id 16, offset 1480, flags [+], 
> proto UDP (17), length 1500)
>     10.0.2.2 > 10.0.2.15: udp
> 03:16:54.462961 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto 
> UDP (17), length 164)
>     10.0.2.15.3369105030 > 10.0.2.2.nfs: 136 readdirplus fh 
> Unknown/0100070004001200000000002873593C9B3C43388E23748B0BAD870C00000000 
> 512 bytes @ 0 max 4096 verf 0000000000000000
> 03:16:54.466300 IP (tos 0x0, ttl 64, id 17, offset 0, flags [+], proto 
> UDP (17), length 1500)
>     10.0.2.2.nfs > 10.0.2.15.3369105030: reply ok 1472 readdirplus 
> POST: DIR 40777 ids 0/0 sz 4096 verf 0000000000000000
> 03:16:54.467084 IP (tos 0x0, ttl 64, id 17, offset 1480, flags [+], 
> proto UDP (17), length 1500)
>     10.0.2.2 > 10.0.2.15: udp
> ...
>
> I didn't investigate the cause of the problem in detail. I just reverted
>
> commit 199ee608f0d08510b5c6c37f31a7fbff211d63c4
> Author: Luigi Rizzo <rizzo@iet.unipi.it>
> Date:   Tue Feb 5 17:53:31 2013 +0100
>
>     net: fix qemu_flush_queued_packets() in presence of a hub
>
> And then applied my patch. After that everything works fine for me. 
> See guest tcpdump log below.
>
> 04:45:15.897245 IP (tos 0x0, ttl 64, id 0, offset 0, flags [DF], proto 
> UDP (17), length 164)
>     10.0.2.15.3642011847 > 10.0.2.2.nfs: 136 readdirplus fh 
> Unknown/0100070004001200000000002873593C9B3C43388E23748B0BAD870C00000000 
> 512 bytes @ 0 max 4096 verf 0000000000000000
> 04:45:15.899686 IP (tos 0x0, ttl 64, id 15, offset 0, flags [+], proto 
> UDP (17), length 1500)
>     10.0.2.2.nfs > 10.0.2.15.3642011847: reply ok 1472 readdirplus 
> POST: DIR 40777 ids 0/0 sz 4096 verf 0000000000000000
> 04:45:15.906253 IP (tos 0x0, ttl 64, id 15, offset 1480, flags [+], 
> proto UDP (17), length 1500)
>     10.0.2.2 > 10.0.2.15: udp
> 04:45:15.906687 IP (tos 0x0, ttl 64, id 15, offset 2960, flags [none], 
> proto UDP (17), length 240)
>     10.0.2.2 > 10.0.2.15: udp
>
> So there must be something wrong with already applied patch. What 
> could you suggest?
>

Sorry, I missed that Anthony Liguori email address has been changed. So 
I resend the email.

-- 
Best regards,
Sergey Fedorov, Junior Software Engineer,
Samsung R&D Institute Rus.
E-mail: s.fedorov@samsung.com

  reply	other threads:[~2013-10-21 11:52 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-18 11:31 [Qemu-devel] [PATCH] net/hub: remove can_receive handler Sergey Fedorov
2013-04-22 11:47 ` Stefan Hajnoczi
2013-04-22 12:26   ` Fedorov Sergey
2013-04-22 14:57     ` Stefan Hajnoczi
2013-04-22 15:27       ` Fedorov Sergey
2013-04-22 16:09         ` Paolo Bonzini
2013-04-23  7:27           ` Fedorov Sergey
2013-04-23  6:58         ` Stefan Hajnoczi
2013-04-23  7:41           ` Fedorov Sergey
2013-04-23 12:00             ` Stefan Hajnoczi
2013-04-23 13:14               ` Fedorov Sergey
2013-10-21 11:44               ` Fedorov Sergey
2013-10-21 11:52                 ` Fedorov Sergey [this message]
2013-10-28  7:26                   ` Fedorov Sergey
2013-10-29 14:55                 ` Stefan Hajnoczi
2013-10-30 10:29                   ` Fedorov Sergey
2013-10-30 12:55                     ` Stefan Hajnoczi
2013-04-23  9:32           ` Fedorov Sergey
2013-04-23 11:48             ` Stefan Hajnoczi
2013-04-23 11:58               ` Fedorov Sergey

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=5265157A.8020408@samsung.com \
    --to=s.fedorov@samsung.com \
    --cc=a.basov@samsung.com \
    --cc=aliguori@amazon.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@gmail.com \
    --cc=stefanha@redhat.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.