From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 675BAC433E0 for ; Mon, 8 Feb 2021 06:39:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 127CA64E59 for ; Mon, 8 Feb 2021 06:39:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229976AbhBHGiu (ORCPT ); Mon, 8 Feb 2021 01:38:50 -0500 Received: from hqnvemgate25.nvidia.com ([216.228.121.64]:2061 "EHLO hqnvemgate25.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229707AbhBHGia (ORCPT ); Mon, 8 Feb 2021 01:38:30 -0500 Received: from hqmail.nvidia.com (Not Verified[216.228.121.13]) by hqnvemgate25.nvidia.com (using TLS: TLSv1.2, AES256-SHA) id ; Sun, 07 Feb 2021 22:37:42 -0800 Received: from mtl-vdi-166.wap.labs.mlnx (172.20.145.6) by HQMAIL107.nvidia.com (172.20.187.13) with Microsoft SMTP Server (TLS) id 15.0.1473.3; Mon, 8 Feb 2021 06:37:40 +0000 Date: Mon, 8 Feb 2021 08:37:36 +0200 From: Eli Cohen To: Jason Wang CC: Si-Wei Liu , , , , , Subject: Re: [PATCH v1] vdpa/mlx5: Restore the hardware used index after change map Message-ID: <20210208063736.GA166546@mtl-vdi-166.wap.labs.mlnx> References: <20210204073618.36336-1-elic@nvidia.com> <81f5ce4f-cdb0-26cd-0dce-7ada824b1b86@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: User-Agent: Mutt/1.9.5 (bf161cf53efb) (2018-04-13) X-Originating-IP: [172.20.145.6] X-ClientProxiedBy: HQMAIL111.nvidia.com (172.20.187.18) To HQMAIL107.nvidia.com (172.20.187.13) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nvidia.com; s=n1; t=1612766262; bh=GZEVufflg74OFOvuniETVdC5I8jX0QdMwpbjF2hzUhU=; h=Date:From:To:CC:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:Content-Transfer-Encoding: In-Reply-To:User-Agent:X-Originating-IP:X-ClientProxiedBy; b=UuBVDy7qo4fZgt2WqwRgNgxJFSquvEOwc6Huk8nXwisrabNUt9FrP45RgbFHfZ2UT 4OTVpDQGlrktXgo0+hEhN25Wecv8B3FbagOuYDrcsGGIgAKiOzB4GBNmSwAwJaffmt VjpgCmAJquK1sCAAMj8sVIIpM5U+dt7QeyO0WxgSVQC4ud2ETViEV5f9hjHDBezB8v SEmjhe12gcAhsNicabW8QsTsTamd/yYcbbZMyo/dtxpJdyDbhzfuH63gxRNL1cziLk EHVlC0PE7FZMXCWRKihxCpfJicVcVEyanJuuMdKbcjmfmgH9sMuuYJSTDV0YMJqg6b 6nDHWMfRMJPuw== Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 08, 2021 at 12:27:18PM +0800, Jason Wang wrote: >=20 > On 2021/2/6 =E4=B8=8A=E5=8D=887:07, Si-Wei Liu wrote: > >=20 > >=20 > > On 2/3/2021 11:36 PM, Eli Cohen wrote: > > > When a change of memory map occurs, the hardware resources are destro= yed > > > and then re-created again with the new memory map. In such case, we n= eed > > > to restore the hardware available and used indices. The driver failed= to > > > restore the used index which is added here. > > >=20 > > > Also, since the driver also fails to reset the available and used > > > indices upon device reset, fix this here to avoid regression caused b= y > > > the fact that used index may not be zero upon device reset. > > >=20 > > > Fixes: 1a86b377aa21 ("vdpa/mlx5: Add VDPA driver for supported mlx5 > > > devices") > > > Signed-off-by: Eli Cohen > > > --- > > > v0 -> v1: > > > Clear indices upon device reset > > >=20 > > > =C2=A0 drivers/vdpa/mlx5/net/mlx5_vnet.c | 18 ++++++++++++++++++ > > > =C2=A0 1 file changed, 18 insertions(+) > > >=20 > > > diff --git a/drivers/vdpa/mlx5/net/mlx5_vnet.c > > > b/drivers/vdpa/mlx5/net/mlx5_vnet.c > > > index 88dde3455bfd..b5fe6d2ad22f 100644 > > > --- a/drivers/vdpa/mlx5/net/mlx5_vnet.c > > > +++ b/drivers/vdpa/mlx5/net/mlx5_vnet.c > > > @@ -87,6 +87,7 @@ struct mlx5_vq_restore_info { > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u64 device_addr; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u64 driver_addr; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u16 avail_index; > > > +=C2=A0=C2=A0=C2=A0 u16 used_index; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 bool ready; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 struct vdpa_callback cb; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 bool restore; > > > @@ -121,6 +122,7 @@ struct mlx5_vdpa_virtqueue { > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u32 virtq_id; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 struct mlx5_vdpa_net *ndev; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u16 avail_idx; > > > +=C2=A0=C2=A0=C2=A0 u16 used_idx; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 int fw_state; > > > =C2=A0 =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 /* keep last in the struct */ > > > @@ -804,6 +806,7 @@ static int create_virtqueue(struct mlx5_vdpa_net > > > *ndev, struct mlx5_vdpa_virtque > > > =C2=A0 =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 obj_context =3D MLX5_ADDR_OF(cr= eate_virtio_net_q_in, in, > > > obj_context); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 MLX5_SET(virtio_net_q_object, obj_cont= ext, hw_available_index, > > > mvq->avail_idx); > > > +=C2=A0=C2=A0=C2=A0 MLX5_SET(virtio_net_q_object, obj_context, hw_use= d_index, > > > mvq->used_idx); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 MLX5_SET(virtio_net_q_object, obj_cont= ext, > > > queue_feature_bit_mask_12_3, > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 get_feat= ures_12_3(ndev->mvdev.actual_features)); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 vq_ctx =3D MLX5_ADDR_OF(virtio_net_q_o= bject, obj_context, > > > virtio_q_context); > > > @@ -1022,6 +1025,7 @@ static int connect_qps(struct mlx5_vdpa_net > > > *ndev, struct mlx5_vdpa_virtqueue *m > > > =C2=A0 struct mlx5_virtq_attr { > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u8 state; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 u16 available_index; > > > +=C2=A0=C2=A0=C2=A0 u16 used_index; > > > =C2=A0 }; > > > =C2=A0 =C2=A0 static int query_virtqueue(struct mlx5_vdpa_net *ndev, = struct > > > mlx5_vdpa_virtqueue *mvq, > > > @@ -1052,6 +1056,7 @@ static int query_virtqueue(struct > > > mlx5_vdpa_net *ndev, struct mlx5_vdpa_virtqueu > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 memset(attr, 0, sizeof(*attr)); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 attr->state =3D MLX5_GET(virtio_net_q_= object, obj_context, state); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 attr->available_index =3D MLX5_GET(vir= tio_net_q_object, > > > obj_context, hw_available_index); > > > +=C2=A0=C2=A0=C2=A0 attr->used_index =3D MLX5_GET(virtio_net_q_object= , obj_context, > > > hw_used_index); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 kfree(out); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return 0; > > > =C2=A0 @@ -1535,6 +1540,16 @@ static void teardown_virtqueues(struct > > > mlx5_vdpa_net *ndev) > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 } > > > =C2=A0 } > > > =C2=A0 +static void clear_virtqueues(struct mlx5_vdpa_net *ndev) > > > +{ > > > +=C2=A0=C2=A0=C2=A0 int i; > > > + > > > +=C2=A0=C2=A0=C2=A0 for (i =3D ndev->mvdev.max_vqs - 1; i >=3D 0; i--= ) { > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ndev->vqs[i].avail_idx = =3D 0; > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ndev->vqs[i].used_idx =3D= 0; > > > +=C2=A0=C2=A0=C2=A0 } > > > +} > > > + > > > =C2=A0 /* TODO: cross-endian support */ > > > =C2=A0 static inline bool mlx5_vdpa_is_little_endian(struct mlx5_vdpa= _dev > > > *mvdev) > > > =C2=A0 { > > > @@ -1610,6 +1625,7 @@ static int save_channel_info(struct > > > mlx5_vdpa_net *ndev, struct mlx5_vdpa_virtqu > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return err; > > > =C2=A0 =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ri->avail_index =3D attr.availa= ble_index; > > > +=C2=A0=C2=A0=C2=A0 ri->used_index =3D attr.used_index; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ri->ready =3D mvq->ready; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ri->num_ent =3D mvq->num_ent; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ri->desc_addr =3D mvq->desc_addr; > > > @@ -1654,6 +1670,7 @@ static void restore_channels_info(struct > > > mlx5_vdpa_net *ndev) > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0 continue; > > > =C2=A0 =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mvq->av= ail_idx =3D ri->avail_index; > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mvq->used_idx =3D ri->use= d_index; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mvq->ready =3D= ri->ready; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mvq->num_ent = =3D ri->num_ent; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mvq->desc_addr= =3D ri->desc_addr; > > > @@ -1768,6 +1785,7 @@ static void mlx5_vdpa_set_status(struct > > > vdpa_device *vdev, u8 status) > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 if (!status) { > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 mlx5_vdpa_info= (mvdev, "performing device reset\n"); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 teardown_drive= r(ndev); > > > +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 clear_virtqueues(ndev); > > The clearing looks fine at the first glance, as it aligns with the othe= r > > state cleanups floating around at the same place. However, the thing is > > get_vq_state() is supposed to be called right after to get sync'ed with > > the latest internal avail_index from device while vq is stopped. The > > index was saved in the driver software at vq suspension, but before the > > virtq object is destroyed. We shouldn't clear the avail_index too early= . >=20 >=20 > Good point. >=20 > There's a limitation on the virtio spec and vDPA framework that we can no= t > simply differ device suspending from device reset. >=20 Are you talking about live migration where you reset the device but still want to know how far it progressed in order to continue from the same place in the new VM? > Need to think about that. I suggest a new state in [1], the issue is that > people doesn't like the asynchronous API that it introduces. >=20 >=20 > >=20 > > Possibly it can be postponed to where VIRTIO_CONFIG_S_DRIVER_OK gets se= t > > again, i.e. right before the setup_driver() in mlx5_vdpa_set_status()? >=20 >=20 > Looks like a good workaround. >=20 > Thanks >=20 >=20 > >=20 > > -Siwei >=20 >=20 > [1] > https://lists.oasis-open.org/archives/virtio-comment/202012/msg00029.html >=20 >=20 > >=20 > > > mlx5_vdpa_destroy_mr(&ndev->mvdev); > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ndev->mvdev.st= atus =3D 0; > > > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ndev->mvdev.ml= x_features =3D 0; > >=20 >=20