From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andi Kleen Date: Wed, 15 Oct 2003 12:42:58 +0000 Subject: Re: IA64 ino_t incorrectly sized? Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-ia64@vger.kernel.org > __kernel_old_dev_t ex_dev; > +#ifdef __ia64__ > + unsigned int ex_ino; /* ABI preservation */ > +#else > __kernel_ino_t ex_ino; > +#endif Please don't make it #ifdef __ia64__, but some other define that other architectures who may want to move the 64bit ino_t too can just set. -Andi