mbox

[0/3,PULL] slirp: ARP table improvements

Message ID cover.1312370658.git.jan.kiszka@siemens.com
State New
Headers show

Pull-request

git://git.kiszka.org/qemu.git queues/slirp

Message

Jan Kiszka Aug. 3, 2011, 11:24 a.m. UTC
The following changes since commit 927d721777e73339f73719f36eaf400ab641366c:

  microblaze: Add missing call to qemu_init_vcpu. (2011-07-31 06:40:13 +0200)

are available in the git repository at:
  git://git.kiszka.org/qemu.git queues/slirp

Anthony asked me to look after slirp patches, and I agreed. So here
comes the first pull request. It improves the so far minimalistic ARP
support of slirp by avoiding premature packet drops when addressing not
yet resolved client IPs.


CC: Fabien Chouteau <chouteau@adacore.com>

Fabien Chouteau (2):
  Simple ARP table
  Delayed IP packets

Jan Kiszka (1):
  slirp: Take maintainer token

 MAINTAINERS       |    5 +-
 Makefile.objs     |    2 +-
 slirp/arp_table.c |   95 +++++++++++++++++++++++++++++++++++++
 slirp/bootp.c     |   21 +++++---
 slirp/if.c        |   28 +++++++++--
 slirp/main.h      |    2 +-
 slirp/mbuf.c      |    2 +
 slirp/mbuf.h      |    2 +
 slirp/slirp.c     |  135 ++++++++++++++++++++++-------------------------------
 slirp/slirp.h     |   47 +++++++++++++++++-
 10 files changed, 241 insertions(+), 98 deletions(-)
 create mode 100644 slirp/arp_table.c

Comments

Anthony Liguori Aug. 4, 2011, 10:43 p.m. UTC | #1
On 08/03/2011 06:24 AM, Jan Kiszka wrote:
> The following changes since commit 927d721777e73339f73719f36eaf400ab641366c:
>
>    microblaze: Add missing call to qemu_init_vcpu. (2011-07-31 06:40:13 +0200)
>
> are available in the git repository at:
>    git://git.kiszka.org/qemu.git queues/slirp
>
> Anthony asked me to look after slirp patches, and I agreed. So here
> comes the first pull request. It improves the so far minimalistic ARP
> support of slirp by avoiding premature packet drops when addressing not
> yet resolved client IPs.
>
>
> CC: Fabien Chouteau<chouteau@adacore.com>

Pulled.  Thanks for watching over the slirp bits!

Regards,

Anthony Liguori

>
> Fabien Chouteau (2):
>    Simple ARP table
>    Delayed IP packets
>
> Jan Kiszka (1):
>    slirp: Take maintainer token
>
>   MAINTAINERS       |    5 +-
>   Makefile.objs     |    2 +-
>   slirp/arp_table.c |   95 +++++++++++++++++++++++++++++++++++++
>   slirp/bootp.c     |   21 +++++---
>   slirp/if.c        |   28 +++++++++--
>   slirp/main.h      |    2 +-
>   slirp/mbuf.c      |    2 +
>   slirp/mbuf.h      |    2 +
>   slirp/slirp.c     |  135 ++++++++++++++++++++++-------------------------------
>   slirp/slirp.h     |   47 +++++++++++++++++-
>   10 files changed, 241 insertions(+), 98 deletions(-)
>   create mode 100644 slirp/arp_table.c
>