From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 868E4106A; Tue, 17 Jan 2017 12:06:25 +0100 (CET) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP; 17 Jan 2017 03:06:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,244,1477983600"; d="scan'208";a="53931715" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by orsmga005.jf.intel.com with ESMTP; 17 Jan 2017 03:06:23 -0800 Date: Tue, 17 Jan 2017 19:08:38 +0800 From: Yuanhan Liu To: Olivier Matz Cc: dev@dpdk.org, stable@dpdk.org Message-ID: <20170117110838.GL10293@yliu-dev.sh.intel.com> References: <1484154325-32204-1-git-send-email-olivier.matz@6wind.com> <1484649353-20087-1-git-send-email-olivier.matz@6wind.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1484649353-20087-1-git-send-email-olivier.matz@6wind.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v2] net/virtio: fix advertised Rx offload capabilities X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jan 2017 11:06:26 -0000 On Tue, Jan 17, 2017 at 11:35:53AM +0100, Olivier Matz wrote: > + host_features = hw->vtpci_ops->get_features(hw); Note that hw->vtpci_ops doesn't exist any more, due to fixing the virtio multiple process bugs. I changed it to: host_features = VTPCI_OPS(hw)->get_features(hw); And applied to dpdk-next-virtio. Thanks. --yliu