From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olivier Matz Subject: Re: [PATCH v2] net/virtio: fix advertised Rx offload capabilities Date: Tue, 17 Jan 2017 12:20:40 +0100 Message-ID: <20170117122040.78136943@platinum> References: <1484154325-32204-1-git-send-email-olivier.matz@6wind.com> <1484649353-20087-1-git-send-email-olivier.matz@6wind.com> <20170117110838.GL10293@yliu-dev.sh.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, stable@dpdk.org To: Yuanhan Liu Return-path: Received: from mail-lf0-f45.google.com (mail-lf0-f45.google.com [209.85.215.45]) by dpdk.org (Postfix) with ESMTP id 97BB8DE5 for ; Tue, 17 Jan 2017 12:20:44 +0100 (CET) Received: by mail-lf0-f45.google.com with SMTP id v186so104630245lfa.1 for ; Tue, 17 Jan 2017 03:20:44 -0800 (PST) In-Reply-To: <20170117110838.GL10293@yliu-dev.sh.intel.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, 17 Jan 2017 19:08:38 +0800, Yuanhan Liu wrote: > 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); > Sorry I missed it. Thanks.