From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A2C9FA0540; Fri, 8 Jul 2022 11:12:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9196840A7B; Fri, 8 Jul 2022 11:12:57 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 283E14021E for ; Fri, 8 Jul 2022 11:12:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1657271575; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Uv8bBg6LYFEOlKdNYx87mEiJ0lzaayoeo936FFu9Y4E=; b=MZJTIrPWygr8q5XnVVbOZK+uADjAzzTGqKG1Hk86meqwiW968DYDCZ69JLf0ttJnzkpVln dbUtnli9IT+XJs5/z6/8SsZyt6UFtjaRuYwnZWgv4A75BtzQcIPPwxxM7vQI68QT35MSIC cXCbVcNyrwKjqe/VCCQNa6SXuTB3oOo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-672-NTwEesugMo227GimjwPW6g-1; Fri, 08 Jul 2022 05:12:50 -0400 X-MC-Unique: NTwEesugMo227GimjwPW6g-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 218C0811E80; Fri, 8 Jul 2022 09:12:50 +0000 (UTC) Received: from [10.39.208.8] (unknown [10.39.208.8]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7FF301415117; Fri, 8 Jul 2022 09:12:49 +0000 (UTC) Message-ID: Date: Fri, 8 Jul 2022 11:12:48 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Subject: Re: [PATCH v3 0/4] Enhance docs on virtio-user as KNI replacement To: Bruce Richardson , dev@dpdk.org Cc: Chenbo Xia References: <20220527162659.129022-1-bruce.richardson@intel.com> <20220610153535.659076-1-bruce.richardson@intel.com> From: Maxime Coquelin In-Reply-To: <20220610153535.659076-1-bruce.richardson@intel.com> X-Scanned-By: MIMEDefang 2.85 on 10.11.54.7 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 6/10/22 17:35, Bruce Richardson wrote: > Since use of KNI is no longer advised (due to known issues and the fact > it's an out-of-tree module), virtio-user is recommended for new > developments. To help encourage this, we improve the doc HOWTO section > on using virtio-user and add a link to that document from the main KNI > section in the programmers guide. > > v3: > * Added two extra patches: > - rename document files to match new section name > - add note to KNI programmers guide section > * minor updates to patch 2, and added stable on CC for that patch > > Bruce Richardson (4): > doc/howto: rework section on virtio-user as exception path > doc/howto: rename files to match new content name > doc/howto: add code example to virtio-user exception path doc > doc/prog_guide: add reference to virtio-user from KNI doc > > ....svg => virtio_user_as_exception_path.svg} | 0 > doc/guides/howto/index.rst | 2 +- > .../howto/virtio_user_as_exception_path.rst | 214 ++++++++++++++++++ > .../howto/virtio_user_as_exceptional_path.rst | 118 ---------- > .../prog_guide/kernel_nic_interface.rst | 6 + > 5 files changed, 221 insertions(+), 119 deletions(-) > rename doc/guides/howto/img/{virtio_user_as_exceptional_path.svg => virtio_user_as_exception_path.svg} (100%) > create mode 100644 doc/guides/howto/virtio_user_as_exception_path.rst > delete mode 100644 doc/guides/howto/virtio_user_as_exceptional_path.rst > > -- > 2.34.1 > Applied to dpdk-next-virtio/main. Thanks, Maxime