From patchwork Fri Feb 1 19:03:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Anthony Liguori X-Patchwork-Id: 217563 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0D6E52C039E for ; Sat, 2 Feb 2013 06:11:02 +1100 (EST) Received: from localhost ([::1]:34105 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1M0p-0004QH-S5 for incoming@patchwork.ozlabs.org; Fri, 01 Feb 2013 14:10:59 -0500 Received: from eggs.gnu.org ([208.118.235.92]:41518) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1LxG-0003P4-Jf for qemu-devel@nongnu.org; Fri, 01 Feb 2013 14:10:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1Lte-0004SV-Mq for qemu-devel@nongnu.org; Fri, 01 Feb 2013 14:07:18 -0500 Received: from e28smtp01.in.ibm.com ([122.248.162.1]:41264) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1Lte-0004Rt-3o for qemu-devel@nongnu.org; Fri, 01 Feb 2013 14:03:34 -0500 Received: from /spool/local by e28smtp01.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Sat, 2 Feb 2013 00:31:20 +0530 Received: from d28dlp01.in.ibm.com (9.184.220.126) by e28smtp01.in.ibm.com (192.168.1.131) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Sat, 2 Feb 2013 00:31:18 +0530 Received: from d28relay04.in.ibm.com (d28relay04.in.ibm.com [9.184.220.61]) by d28dlp01.in.ibm.com (Postfix) with ESMTP id 777E9E004C for ; Sat, 2 Feb 2013 00:34:04 +0530 (IST) Received: from d28av03.in.ibm.com (d28av03.in.ibm.com [9.184.220.65]) by d28relay04.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r11J3OFj19726584 for ; Sat, 2 Feb 2013 00:33:24 +0530 Received: from d28av03.in.ibm.com (loopback [127.0.0.1]) by d28av03.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r11J3PVa016014 for ; Sat, 2 Feb 2013 06:03:25 +1100 Received: from titi.austin.rr.com (sig-9-65-247-81.mts.ibm.com [9.65.247.81]) by d28av03.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id r11J3MuN015837; Sat, 2 Feb 2013 06:03:23 +1100 From: Anthony Liguori To: qemu-devel@nongnu.org Date: Fri, 1 Feb 2013 13:03:20 -0600 Message-Id: <1359745400-23961-1-git-send-email-aliguori@us.ibm.com> X-Mailer: git-send-email 1.8.0 MIME-Version: 1.0 X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13020119-4790-0000-0000-000006C07847 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 122.248.162.1 Cc: Anthony Liguori Subject: [Qemu-devel] [PATCH] xen: fix build problem introduced from per-queue peers 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 Reported-by Andreas Färber Signed-off-by: Anthony Liguori Tested-by: Andreas Färber --- hw/xen_nic.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/hw/xen_nic.c b/hw/xen_nic.c index 4be077d..34961c2 100644 --- a/hw/xen_nic.c +++ b/hw/xen_nic.c @@ -326,8 +326,6 @@ static int net_init(struct XenDevice *xendev) return -1; } - netdev->conf.peer = NULL; - netdev->nic = qemu_new_nic(&net_xen_info, &netdev->conf, "xen", NULL, netdev);