From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8F9B2A04B4; Sun, 17 Nov 2019 16:13:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BD5072BAC; Sun, 17 Nov 2019 16:13:03 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id BD7642BA8 for ; Sun, 17 Nov 2019 16:13:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574003581; 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; bh=Q0MZzWN2FTtoHWeiGpcYyWzouuHKp8AypdZ1jqPQjOM=; b=Ji2qJzcJIxaIAF0V7Hbo0C28rQwx3u4nzv8fGrMLCOaWIqj/1XOBzmjn+TV8mZQUfym9DO Swn32XzGjjP1L4pioTi63AstFhPYLJ3hS4FAyWofwU/dPjE/opaIk7mg5Fs5Ks4IUw6rTe 7Y7yUZo/HGy0+X8rvSfpgJ6+QOe+P3E= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-89-LA2kldWBMTuZu2B4dT6fRQ-1; Sun, 17 Nov 2019 10:12:57 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 993AC477; Sun, 17 Nov 2019 15:12:55 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.205.71]) by smtp.corp.redhat.com (Postfix) with ESMTP id A2D1560171; Sun, 17 Nov 2019 15:12:52 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, kirankumark@marvell.com, olivier.matz@6wind.com, ferruh.yigit@intel.com, anatoly.burakov@intel.com, arybchenko@solarflare.com, stephen@networkplumber.org, vattunuru@marvell.com Date: Sun, 17 Nov 2019 16:12:42 +0100 Message-Id: <20191117151244.3854-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-MC-Unique: LA2kldWBMTuZu2B4dT6fRQ-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH v15 0/2] kni: support IOVA mode 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Sending this to track the changes I did on the v14 patchset from Vamsi. Changelog since v14: - reworded commitlogs, - added missing documentation update, - fixed release notes, --=20 David Marchand Vamsi Attunuru (2): kni: support userspace VA eal/linux: remove KNI restriction on IOVA .../prog_guide/env_abstraction_layer.rst | 3 + .../prog_guide/kernel_nic_interface.rst | 14 +++++ doc/guides/rel_notes/release_19_11.rst | 11 ++++ kernel/linux/kni/compat.h | 14 +++++ kernel/linux/kni/kni_dev.h | 42 +++++++++++++ kernel/linux/kni/kni_misc.c | 39 +++++++++--- kernel/linux/kni/kni_net.c | 62 +++++++++++++++---- lib/librte_eal/linux/eal/eal.c | 11 +++- .../linux/eal/include/rte_kni_common.h | 1 + lib/librte_kni/rte_kni.c | 5 ++ 10 files changed, 178 insertions(+), 24 deletions(-) --=20 2.23.0