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 Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 241C3C00140 for ; Mon, 8 Aug 2022 22:29:10 +0000 (UTC) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F2CED4014F; Tue, 9 Aug 2022 00:29:08 +0200 (CEST) Received: from forward503j.mail.yandex.net (forward503j.mail.yandex.net [5.45.198.239]) by mails.dpdk.org (Postfix) with ESMTP id E0D6440141 for ; Tue, 9 Aug 2022 00:29:07 +0200 (CEST) Received: from vla1-62318bfe5573.qloud-c.yandex.net (vla1-62318bfe5573.qloud-c.yandex.net [IPv6:2a02:6b8:c0d:3819:0:640:6231:8bfe]) by forward503j.mail.yandex.net (Yandex) with ESMTP id 0A5841DAF146; Tue, 9 Aug 2022 01:29:05 +0300 (MSK) Received: by vla1-62318bfe5573.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id z40eqLL54O-T4iGuNqQ; Tue, 09 Aug 2022 01:29:05 +0300 (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client certificate not present) X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1659997745; bh=o5BFYDHyNpz3EMmwE5isTnMKWs8FlezdB83npvwH3U8=; h=In-Reply-To:From:Date:References:To:Subject:Message-ID; b=r1igcUfyi5oZAH3bK/9Rqeg925OY/gBZ04aji8S1H0TeNvLhOxEsvLBOZVRDCDgaT 6T1oBHbxrHPSItVf/XKGk/THNCVCNdmt7hVplK3k2q8fFVwTpwMFj8+h6EQ4Fl0weC 0lIkGI3DJg18XPmToK7Jsj6/FhptE/ReY8xtX0dk= Authentication-Results: vla1-62318bfe5573.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <8435ffb4-b2c5-4939-2059-033a770c3d41@yandex.ru> Date: Mon, 8 Aug 2022 23:29:03 +0100 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 v7] ip_frag: add IPv4 fragment copy packet API Content-Language: en-US To: Huichao Cai , dev@dpdk.org References: <1658650203-7831-1-git-send-email-chcchc88@163.com> <1659923292-3378-1-git-send-email-chcchc88@163.com> From: Konstantin Ananyev In-Reply-To: <1659923292-3378-1-git-send-email-chcchc88@163.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit 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 08/08/2022 02:48, Huichao Cai пишет: > Some NIC drivers support MBUF_FAST_FREE(Device supports optimization > for fast release of mbufs. When set application must guarantee that > per-queue all mbufs comes from the same mempool,has refcnt = 1,direct > and non-segmented.)offload. In order to adapt to this offload function, > add this API. Add some test data for this API. > > Signed-off-by: Huichao Cai > --- Acked-by: Konstantin Ananyev