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 28497A0547; Fri, 14 Feb 2020 12:31:03 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 86D991B53; Fri, 14 Feb 2020 12:31:02 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 097F43B5 for ; Fri, 14 Feb 2020 12:31:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581679860; 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=UXgGK1Sh7FrI0dpIWXH2zG2+t3utjUC0YrZp9guQ4II=; b=fHHJCwbp1c5jIcwQ8P74ge1EzD1iae65pjrCYFxLutT3zeLE+HGbsapW0DAqtaq9pxL1tp Q4nlojZc1sjX1ORfemh/M9X/gXv9DoFTiH3ClcdA1m6Q1gYam+vNWkGTt3b14o6/IJOHHj fbX4HLZjJ4MQ9X7ooxrO0Hq56u3l7Ok= Received: from mail-vk1-f198.google.com (mail-vk1-f198.google.com [209.85.221.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-188-by89YDTxPdGHbbQaOGSAiQ-1; Fri, 14 Feb 2020 06:30:56 -0500 Received: by mail-vk1-f198.google.com with SMTP id v188so3156821vkf.10 for ; Fri, 14 Feb 2020 03:30:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=7SlOd96fAbmCUr9/XQrL5QnfBtEZW+eViz9ackRhxoQ=; b=rSqooU/YDcimiO3KSEXQ4bD9No268P6neFxTJ+O1Z8A8shGrbdfcBhq9izn+mF3qEu P5eMQGaw1spEdEYWvs2p/2OSQyne6NDIybpejUtRSMdHqqfCYKMR9Ynl7v1bfLfHNxhP wFkLeEMz14qt3ImVxY8ZqXEUOHidJUnWTG+9iXAmYIf3qt2vtSJ+VabwzQxUosr/EGJO uaKSQaxgFkJhz6FkPJjPxycl0GjG/9X9dtVsUfhq0MqGkoWpRyusR8/PGsWYqK8oJM9D SoF//YooSlPS2qNoTT/46FjBLOFjOSaEBOjTyuVwYmdgkPDiENe4lw2zKpdF9LwnFn+6 aBFA== X-Gm-Message-State: APjAAAV17fnK7OHe19htqQUMfycniwuEwRalBplV3Lpx/zYU6qgk2ULV AGYlVZsfVnav8bFixPy0OJxMzlw3eNnRtj22dvN6Vc2l/b0wdqZV4AR+erwaZbxg3Hgf4/o5pZW StCa0UDW9oiMxW5WiOLk= X-Received: by 2002:ab0:7358:: with SMTP id k24mr1194638uap.87.1581679856363; Fri, 14 Feb 2020 03:30:56 -0800 (PST) X-Google-Smtp-Source: APXvYqyJqZgJ4szOqIaI0kXGvM3Hgn+AQb5ZmnnLNIJPBM1Y4/kjhslWJPTBW93RUP+NdHoRw2WKlfWt4YRJ9RdDmEM= X-Received: by 2002:ab0:7358:: with SMTP id k24mr1194624uap.87.1581679856123; Fri, 14 Feb 2020 03:30:56 -0800 (PST) MIME-Version: 1.0 References: <1581364020-4315-1-git-send-email-scott_wasson@affirmednetworks.com> <20200214100052.2795482-1-ferruh.yigit@intel.com> In-Reply-To: <20200214100052.2795482-1-ferruh.yigit@intel.com> From: David Marchand Date: Fri, 14 Feb 2020 12:30:45 +0100 Message-ID: To: Ferruh Yigit Cc: dev , Anatoly Burakov , Scott Wasson , dpdk stable X-MC-Unique: by89YDTxPdGHbbQaOGSAiQ-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH v2] kni: fix not contiguous FIFO 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" On Fri, Feb 14, 2020 at 11:01 AM Ferruh Yigit wrot= e: > > From: Scott Wasson > > KNI requires FIFO to be physically contiguous, with existing > 'rte_memzone_reserve()' API this is not guaranteed by default and as a > result KNI rings and packet delivery may be broken if reserved memory > is not physically contiguous. > > Fixing it by providing 'RTE_MEMZONE_IOVA_CONTIG' flag to ask physically > contiguous memory. > Bugzilla ID: 389 > Fixes: 23fa86e529e4 ("memzone: enable IOVA-contiguous reserving") > Cc: stable@dpdk.org > > Signed-off-by: Scott Wasson > Acked-by: Ferruh Yigit Applied, thanks. -- David Marchand