From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v2] net/virtio: fix advertised Rx offload capabilities Date: Tue, 17 Jan 2017 19:08:38 +0800 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 Cc: dev@dpdk.org, stable@dpdk.org To: Olivier Matz Return-path: Content-Disposition: inline In-Reply-To: <1484649353-20087-1-git-send-email-olivier.matz@6wind.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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