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 928D9A0C46; Tue, 31 Aug 2021 17:53:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5E0B34013F; Tue, 31 Aug 2021 17:53:00 +0200 (CEST) Received: from mail-108-mta128.mxroute.com (mail-108-mta128.mxroute.com [136.175.108.128]) by mails.dpdk.org (Postfix) with ESMTP id 503C840041 for ; Tue, 31 Aug 2021 17:52:59 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta128.mxroute.com (ZoneMTA) with ESMTPSA id 17b9ce9d3ee00074ba.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Tue, 31 Aug 2021 15:52:55 +0000 X-Zone-Loop: e2775bb009345eda48217c16886c2b9a8f4b744ecaa0 X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:To:Subject:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=bwAgyqpd50BVqg4oM289fdI0PIGYuDG3vq7eDhSJHvg=; b=kRtbxHIqPP/A1jIw0gPHCgiU9U nde643FHnY3e7C54q4ub9qD9C6F1IeT6fjlQhbcxqnp8EztPjTy9rCf+KzkJopsd5J1AKI4xvmkSd 9+aNsZ1hIH+b1tD7Gmsb0shteh8BycHSfWpKapKKHv5yMU5YiUsqTKmtEYWaHPL/j+rFl7A4nzSfa Ppv1ALGxA/RJw+zkhizhkLp5DY5WMzIe2C7I+jKtu1nL5QjPGCexpC1fssfcKyYuFFapvMfJTf54g 5IVNKYKJJWmf4mT6wtPRkEsLpjjXzk66vJJcd1TImseAIEHAXrgq+AqDiY5K7+XKbtkQoJr0WYkan I7qZHypw==; To: Harman Kalra , dev@dpdk.org, Thomas Monjalon References: <20210826145726.102081-1-hkalra@marvell.com> <20210826145726.102081-2-hkalra@marvell.com> From: "Kinsella, Ray" Message-ID: <962171fd-7dd6-b6d4-bbfd-784ee5ffdd49@ashroe.eu> Date: Tue, 31 Aug 2021 16:52:51 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: <20210826145726.102081-2-hkalra@marvell.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu Subject: Re: [dpdk-dev] [RFC 1/7] eal: interrupt handle API prototypes 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 26/08/2021 15:57, Harman Kalra wrote: > Defining protypes of get/set APIs for accessing/manipulating > interrupt handle fields. > > Internal interrupt header i.e. rte_eal_interrupt.h is rearranged, > as APIs defined are moved to rte_interrupts.h and epoll specific > definitions are moved to a new header rte_epoll.h. > Later in the series rte_eal_interrupt.h will be removed. > > Signed-off-by: Harman Kalra > --- > MAINTAINERS | 1 + > lib/eal/include/meson.build | 1 + > lib/eal/include/rte_eal_interrupts.h | 201 --------- > lib/eal/include/rte_epoll.h | 116 +++++ > lib/eal/include/rte_interrupts.h | 653 ++++++++++++++++++++++++++- > 5 files changed, 769 insertions(+), 203 deletions(-) > create mode 100644 lib/eal/include/rte_epoll.h > Seems strange putting the API changes as a separate patch? Acked-by: Ray Kinsella