patch-2.4.22 linux-2.4.22/include/asm-ppc/posix_types.h

Next file: linux-2.4.22/include/asm-ppc/ppc4xx.h
Previous file: linux-2.4.22/include/asm-ppc/pmac_feature.h
Back to the patch index
Back to the overall index

diff -urN linux-2.4.21/include/asm-ppc/posix_types.h linux-2.4.22/include/asm-ppc/posix_types.h
@@ -8,7 +8,7 @@
  */
 
 typedef unsigned int	__kernel_dev_t;
-typedef unsigned int	__kernel_ino_t;
+typedef unsigned long	__kernel_ino_t;
 typedef unsigned int	__kernel_mode_t;
 typedef unsigned short	__kernel_nlink_t;
 typedef long		__kernel_off_t;
@@ -72,7 +72,7 @@
 
 #undef __FD_ISSET
 static __inline__ int __FD_ISSET(unsigned long fd, __kernel_fd_set *p)
-{ 
+{
 	unsigned long _tmp = fd / __NFDBITS;
 	unsigned long _rem = fd % __NFDBITS;
 	return (p->fds_bits[_tmp] & (1UL<<_rem)) != 0;

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)