Re: [Qemu-devel] [PATCH 2/3] slirp: Propagate host TCP RST to the guest.

2016-04-06 Thread Steven Luo
On April 6, 2016 1:36:01 AM PDT, "Edgar E. Iglesias" wrote: >Hi Steven, > >I don't mind to leave it as is but you could also use the --author >argument to git commit to keep the authorship as >edgar.igles...@gmail.com It looks like an intermediate mail server mangled the From addresses somewhere

Re: [Qemu-devel] [PATCH 2/3] slirp: Propagate host TCP RST to the guest.

2016-04-06 Thread Edgar E. Iglesias
On Tue, Apr 05, 2016 at 05:14:31PM -0700, ste...@steven676.net wrote: > When the host aborts (RST) it's side of a TCP connection we need to > propagate that RST to the guest. The current code can leave such guest > connections dangling forever. Spotted by Jason Wessel. > > [ste...@steven676.net: c

Re: [Qemu-devel] [PATCH 2/3] slirp: Propagate host TCP RST to the guest.

2016-04-06 Thread Paolo Bonzini
On 06/04/2016 02:14, ste...@steven676.net wrote: > As this patch isn't my work and did not come with a Signed-off-by line, > I'm not entirely clear on how I should handle that. Signed-off-by lines weren't in consistent use at the time, so I think it's okay to leave it out. Paolo

[Qemu-devel] [PATCH 2/3] slirp: Propagate host TCP RST to the guest.

2016-04-05 Thread steven
When the host aborts (RST) it's side of a TCP connection we need to propagate that RST to the guest. The current code can leave such guest connections dangling forever. Spotted by Jason Wessel. [ste...@steven676.net: coding style adjustments] Signed-off-by: Steven Luo --- Edgar proposed this patc