From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-4.sys.kth.se (smtp-4.sys.kth.se [130.237.48.193]) by dpdk.org (Postfix) with ESMTP id 0DC5A28FD for ; Thu, 31 Jan 2019 10:39:47 +0100 (CET) Received: from smtp-4.sys.kth.se (localhost.localdomain [127.0.0.1]) by smtp-4.sys.kth.se (Postfix) with ESMTP id B7B632BF7; Thu, 31 Jan 2019 10:39:46 +0100 (CET) X-Virus-Scanned: by amavisd-new at kth.se Received: from smtp-4.sys.kth.se ([127.0.0.1]) by smtp-4.sys.kth.se (smtp-4.sys.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id bh3tc0_dWs5x; Thu, 31 Jan 2019 10:39:46 +0100 (CET) X-KTH-Auth: barbette [130.237.20.142] DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kth.se; s=default; t=1548927586; bh=OW8W8igfJjutpVzmJRs1gk1KfIe+XOq4J2DkCyyBOy8=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=fH3AC2caXmY0o3aNVCLU4GDFUMaSHo5kLwLbU47D7gFPiZxg69zeKKdm9qDZRIc11 nRzStNevUCCsIyK3fyCzP5R6O+Eopral6o4xY+JHPAWHJWswR9+a+Inz7Qpz3isuWJ 4faxFo6+Em4jZwAjhgbAdIr+QhggITRX1dRmxoj8= X-KTH-mail-from: barbette@kth.se Received: from [130.237.20.142] (s2587.it.kth.se [130.237.20.142]) by smtp-4.sys.kth.se (Postfix) with ESMTPSA id 54F1829BF; Thu, 31 Jan 2019 10:39:43 +0100 (CET) To: Bruce Richardson Cc: Ferruh Yigit , Stephen Hemminger , Yongseok Koh , Adrien Mazarguil , "dev@dpdk.org" References: <20180731163059.27085-1-stephen@networkplumber.org> <20180731164840.GD5211@6wind.com> <20180731110737.38555f02@xeon-e3> <50204CDA-B4AD-44C8-AB07-2FE9C2A412C0@mellanox.com> <20180801140356.5ac88c43@xeon-e3> <2b06aafe-e444-b773-b5cd-bd0f186e46cd@kth.se> <20190131091128.GA122080@bricha3-MOBL.ger.corp.intel.com> From: Tom Barbette Message-ID: <2b7c87e5-5855-4ab2-7efd-5bfeb30480a5@kth.se> Date: Thu, 31 Jan 2019 10:39:42 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <20190131091128.GA122080@bricha3-MOBL.ger.corp.intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 0/5] remove usage of register keyword in C 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: , X-List-Received-Date: Thu, 31 Jan 2019 09:39:47 -0000 On 2019-01-31 10:11, Bruce Richardson wrote: > What header is that? From what I see the patchset only makes changes to .c > files rather than any .h files, so not sure it would help in your case. Yes you're right. There are other occurrences of register indeed. I got the warning from rte_common.h:308 : rte_combine64ms1b(register uint64_t v) but it may not be the only one? Tom