From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751724Ab1ICFRs (ORCPT ); Sat, 3 Sep 2011 01:17:48 -0400 Received: from terminus.zytor.com ([198.137.202.10]:50315 "EHLO mail.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751416Ab1ICFRr (ORCPT ); Sat, 3 Sep 2011 01:17:47 -0400 Message-ID: <4E61B84A.9070007@zytor.com> Date: Fri, 02 Sep 2011 22:16:58 -0700 From: "H. Peter Anvin" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20110707 Thunderbird/5.0 MIME-Version: 1.0 To: "H.J. Lu" CC: Linus Torvalds , Arnd Bergmann , Christoph Hellwig , LKML , Ingo Molnar , Thomas Gleixner , Richard Kuo , Mark Salter , Jonas Bonn , Tobias Klauser Subject: Re: RFD: x32 ABI system call numbers References: <4E582577.2060805@zytor.com> <201108301409.27527.arnd@arndb.de> <4E5D1153.5030908@zytor.com> <201108311814.54906.arnd@arndb.de> <4E61AD47.3040108@zytor.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 09/02/2011 09:44 PM, H.J. Lu wrote: >> >> What is the definition of these macros? >> > > I have > > #if defined __x86_64__ && __WORDSIZE == 32 > #define __INO_T_TYPE __UQUAD_TYPE > #define __NLINK_T_TYPE __UQUAD_TYPE > #define __OFF_T_TYPE __SQUAD_TYPE > #define __RLIM_T_TYPE __UQUAD_TYPE > #define __BLKCNT_T_TYPE __SQUAD_TYPE > #define __FSFILCNT_T_TYPE __UQUAD_TYPE > #define __FSBLKCNT_T_TYPE __UQUAD_TYPE > #define __TIME_T_TYPE __SQUAD_TYPE > #define __BLKSIZE_T_TYPE __SQUAD_TYPE > #define __SUSECONDS_T_TYPE __SQUAD_TYPE > #define __SNATIVE_LONG_TYPE __SQUAD_TYPE > #define __UNATIVE_LONG_TYPE __UQUAD_TYPE > #else > #define __INO_T_TYPE __ULONGWORD_TYPE > #define __NLINK_T_TYPE __UWORD_TYPE > #define __OFF_T_TYPE __SLONGWORD_TYPE > #define __RLIM_T_TYPE __ULONGWORD_TYPE > #define __BLKCNT_T_TYPE __SLONGWORD_TYPE > #define __FSFILCNT_T_TYPE __ULONGWORD_TYPE > #define __FSBLKCNT_T_TYPE __ULONGWORD_TYPE > #define __TIME_T_TYPE __SLONGWORD_TYPE > #define __BLKSIZE_T_TYPE __SLONGWORD_TYPE > #define __SUSECONDS_T_TYPE __SLONGWORD_TYPE > #define __SNATIVE_LONG_TYPE __SLONGWORD_TYPE > #define __UNATIVE_LONG_TYPE __ULONGWORD_TYPE > #endif > I don't understand the types on the right side... -hpa