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 EB4A1A09E4; Fri, 29 Jan 2021 11:38:47 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7D6C2240134; Fri, 29 Jan 2021 11:38:47 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 136D940694 for ; Fri, 29 Jan 2021 11:38:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611916725; 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: in-reply-to:in-reply-to:references:references; bh=+RYnddA0OcGpFZztWVXAhtKa1YAi4PEOBHL7BhIZTYM=; b=fG8DGqchmJkNnPYLRWnEeVN9Z9ifYt16Lghgj7yoOCTzPm7r+GvzXoBPpWxXmMxHIZrMnE mwi4L5ANrPAFLc2IS2b0V7tWR6KJRsODfusfmKn9i+5Qfp/+RwOHZLpKAzPVzDCnPF4L5l 0MyQdrSF7V1t+GgneI0rphpxGoNcBvI= Received: from mail-ua1-f69.google.com (mail-ua1-f69.google.com [209.85.222.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-198-yB-hcYSKNTeJGfd5qN4K7Q-1; Fri, 29 Jan 2021 05:38:41 -0500 X-MC-Unique: yB-hcYSKNTeJGfd5qN4K7Q-1 Received: by mail-ua1-f69.google.com with SMTP id 21so2125258uae.2 for ; Fri, 29 Jan 2021 02:38:41 -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=+RYnddA0OcGpFZztWVXAhtKa1YAi4PEOBHL7BhIZTYM=; b=ooP+OtfBskRURRqXjf30Kvto7afBDahinzhx1RbrOgv6KnKC0GUwFHQLjv5LPFxgHp 9qSyhXN+yUdY8/ZzO05APVZgGCFjvROozYxDlRoSmnkv28ERhiQI7IH1zMXopZICCsC7 OBVEPpYC9eiiMkqzwqaPgnByO4rnJuhjxotUjsKsv2NR8fzpiCjg71GiNXhiBTqtw9Fr IXYG5Q2Ut+tv8MN44ewKcCwY1P/5QGigMTXMGGSSyTCA+06Ejw8XgJGPT+hNOv+Ct2tV UgVUdM+OB2fe5Isf+pr6i81/CHJcuBWv9ULXUWq/fjextKnJWHFR2nVtvvo8GOgpzxmU jycg== X-Gm-Message-State: AOAM532QD2l6XNrRX36SzqbA2TCPRBI8eKFiXP+QsK2+ci72MeAkfTrG 2bWqtgMIgYbkf4rubF+UdGOxsJQXYBTl7G5Jv+wDo7mc4jFB433capXFw5rWdLSVx6lC6MbQOQI WcZdAXiDceMTv1sBvgFY= X-Received: by 2002:a67:ecd5:: with SMTP id i21mr2006584vsp.18.1611916720709; Fri, 29 Jan 2021 02:38:40 -0800 (PST) X-Google-Smtp-Source: ABdhPJyTLqf7ht1n9csmzL8X1aS6LJBg6HeGaVp5qTK3puAHI80YZD3Tay4/jLQ+kCLwjveCSy3orxYqvcS+NqinTpM= X-Received: by 2002:a67:ecd5:: with SMTP id i21mr2006577vsp.18.1611916720449; Fri, 29 Jan 2021 02:38:40 -0800 (PST) MIME-Version: 1.0 References: <20201221111359.22013-1-feifei.wang2@arm.com> <20210129055905.1768645-1-feifei.wang2@arm.com> In-Reply-To: <20210129055905.1768645-1-feifei.wang2@arm.com> From: David Marchand Date: Fri, 29 Jan 2021 11:38:29 +0100 Message-ID: To: Feifei Wang Cc: dev , nd , Honnappa Nagarahalli , "Ananyev, Konstantin" , "Ruifeng Wang (Arm Technology China)" Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3 0/3] refactoring ring library 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 Sender: "dev" On Fri, Jan 29, 2021 at 6:59 AM Feifei Wang wrote: > > Do some work for ring refactoring, which includes: > 1. add rte prefix before update tail API > 2. Move all private APIs into new header files > > v2: > 1. add rte_ prefixes for private files (Konstantin) > > v3: > 1. fix compile issue of file name bug Series applied, thanks. -- David Marchand