From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751908AbdJFPYA (ORCPT ); Fri, 6 Oct 2017 11:24:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59098 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751522AbdJFPX6 (ORCPT ); Fri, 6 Oct 2017 11:23:58 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 5687A7C82F Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx03.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=jpoimboe@redhat.com Date: Fri, 6 Oct 2017 10:23:55 -0500 From: Josh Poimboeuf To: Jiri Slaby Cc: mingo@redhat.com, tglx@linutronix.de, hpa@zytor.com, x86@kernel.org, linux-kernel@vger.kernel.org, Andrew Morton , Boris Ostrovsky , Ingo Molnar , Juergen Gross , Len Brown , Linus Torvalds , linux-pm@vger.kernel.org, Pavel Machek , Peter Zijlstra , "Rafael J. Wysocki" , xen-devel@lists.xenproject.org Subject: Re: [PATCH v4 01/27] linkage: new macros for assembler symbols Message-ID: <20171006152355.73fljxsihnejppx4@treble> References: <20171002091246.28432-1-jslaby@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20171002091246.28432-1-jslaby@suse.cz> User-Agent: Mutt/1.6.0.1 (2016-04-01) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Fri, 06 Oct 2017 15:23:58 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 02, 2017 at 11:12:20AM +0200, Jiri Slaby wrote: > SYM_CODE_INNER_LABEL -- only for labels in the middle of code > SYM_CODE_INNER_LABEL_NOALIGN -- only for labels in the middle of code Why are the inner labels aligned by default? Seems like unaligned would be the most common case. > > d) For data > SYM_DATA_START -- global data symbol > SYM_DATA_END -- the end of the SYM_DATA_START symbol > SYM_DATA_END_LABEL -- the labeled end of SYM_DATA_START symbol > SYM_DATA_SIMPLE -- start+end wrapper around simple global data > SYM_DATA_SIMPLE_LOCAL -- start+end wrapper around simple local data "SIMPLE" seems superfluous, how about s/SYM_DATA_SIMPLE/SYM_DATA/ ? -- Josh