From patchwork Mon Dec 7 03:26:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Wang X-Patchwork-Id: 553243 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id DAE5F1402EC for ; Mon, 7 Dec 2015 14:28:44 +1100 (AEDT) Received: from localhost ([::1]:52226 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a5mTi-0008MN-FR for incoming@patchwork.ozlabs.org; Sun, 06 Dec 2015 22:28:42 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a5mRv-0004K5-NW for qemu-devel@nongnu.org; Sun, 06 Dec 2015 22:26:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a5mRu-000430-Tc for qemu-devel@nongnu.org; Sun, 06 Dec 2015 22:26:51 -0500 Received: from mx1.redhat.com ([209.132.183.28]:50868) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a5mRu-00042q-Nf for qemu-devel@nongnu.org; Sun, 06 Dec 2015 22:26:50 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 76A578CF73; Mon, 7 Dec 2015 03:26:50 +0000 (UTC) Received: from jason-ThinkPad-T430s.redhat.com (vpn1-5-170.pek2.redhat.com [10.72.5.170]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tB73QGZq024929; Sun, 6 Dec 2015 22:26:47 -0500 From: Jason Wang To: peter.maydell@linaro.org, qemu-devel@nongnu.org Date: Mon, 7 Dec 2015 11:26:08 +0800 Message-Id: <1449458773-7141-5-git-send-email-jasowang@redhat.com> In-Reply-To: <1449458773-7141-1-git-send-email-jasowang@redhat.com> References: <1449458773-7141-1-git-send-email-jasowang@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Jason Wang , "Michael S. Tsirkin" Subject: [Qemu-devel] [PULL for 2.5 4/9] vmxnet3: silence warning 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 From: "Michael S. Tsirkin" vmxnet3 always produces a warning under qtest. This is not a user error, don't warn. Suggested-by: Paolo Bonzini Signed-off-by: Michael S. Tsirkin Signed-off-by: Jason Wang --- hw/net/vmxnet3.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c index 5e3a233..37373e5 100644 --- a/hw/net/vmxnet3.c +++ b/hw/net/vmxnet3.c @@ -2015,7 +2015,6 @@ static bool vmxnet3_peer_has_vnet_hdr(VMXNET3State *s) return true; } - VMW_WRPRN("Peer has no virtio extension. Task offloads will be emulated."); return false; }