From patchwork Wed Aug 3 11:24:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kiszka X-Patchwork-Id: 108124 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B2873B71E4 for ; Wed, 3 Aug 2011 21:25:06 +1000 (EST) Received: from localhost ([::1]:40759 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoZZF-0005iI-K0 for incoming@patchwork.ozlabs.org; Wed, 03 Aug 2011 07:24:53 -0400 Received: from eggs.gnu.org ([140.186.70.92]:53202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoZZ7-0005b7-Tn for qemu-devel@nongnu.org; Wed, 03 Aug 2011 07:24:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QoZZ6-0005df-UZ for qemu-devel@nongnu.org; Wed, 03 Aug 2011 07:24:45 -0400 Received: from david.siemens.de ([192.35.17.14]:26877) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QoZZ6-0005dZ-HV for qemu-devel@nongnu.org; Wed, 03 Aug 2011 07:24:44 -0400 Received: from mail1.siemens.de (localhost [127.0.0.1]) by david.siemens.de (8.13.6/8.13.6) with ESMTP id p73BOMt4020541; Wed, 3 Aug 2011 13:24:22 +0200 Received: from mchn199C.mchp.siemens.de ([139.25.109.49]) by mail1.siemens.de (8.13.6/8.13.6) with ESMTP id p73BOM7V025523; Wed, 3 Aug 2011 13:24:22 +0200 From: Jan Kiszka To: Anthony Liguori , qemu-devel Date: Wed, 3 Aug 2011 13:24:19 +0200 Message-Id: X-Mailer: git-send-email 1.7.3.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 192.35.17.14 Cc: Fabien Chouteau Subject: [Qemu-devel] [PATCH 0/3] [PULL] slirp: ARP table improvements X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 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