Return-path: Received: from smtprelay0176.hostedemail.com ([216.40.44.176]:45438 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751218AbaAFI7O (ORCPT ); Mon, 6 Jan 2014 03:59:14 -0500 Message-ID: <1388998750.5808.43.camel@joe-AO722> (sfid-20140106_095934_012773_542155F4) Subject: Re: [PATCH 4/11] use ether_addr_equal_64bits From: Joe Perches To: Julia Lawall Cc: Johannes Berg , Henrique de Moraes Holschuh , kernel-janitors@vger.kernel.org, Emmanuel Grumbach , Intel Linux Wireless , "John W. Linville" , linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Date: Mon, 06 Jan 2014 00:59:10 -0800 In-Reply-To: References: <1388427307-8691-1-git-send-email-Julia.Lawall@lip6.fr> <1388427307-8691-5-git-send-email-Julia.Lawall@lip6.fr> <1388429761.4410.1.camel@jlt4.sipsolutions.net> <1388438724.4573.2.camel@jlt4.sipsolutions.net> <20131230215701.GA4938@khazad-dum.debian.net> <1388445188.18164.0.camel@jlt4.sipsolutions.net> <1388445422.26796.38.camel@joe-AO722> Content-Type: text/plain; charset="ISO-8859-1" Mime-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org List-ID: On Mon, 2014-01-06 at 09:48 +0100, Julia Lawall wrote: > Is there any way to get sizeof evaluated at build time? I'm confused a bit by what you want to accomplish. Except for variable length arrays, isn't sizeof always evaluated at build time? 6.5.3.4 The sizeof operator Constraints [] 2 The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. The result is an integer. If the type of the operand is a variable length array type, the operand is evaluated; otherwise, the operand is not evaluated and the result is an integer constant.