> On Wed, Aug 09, 2000 at 09:09:38AM -0500, Jason Holland wrote:
> > can anyone help me identify what this error means and possibly how to fix
> > it?? i began to get this yesterday after doing a cvs update. btw, i'm
> > running debian potato, the latest frozen. thanks!
>
> I'm seeing the same problem. But you should not be using gcc 2.95 with
> XFS anyways, because it miscompiles some long long computations. egcs 1.1
> seems to be the only compiler that works reliably for XFS right now.
>
>
> -Andi
Can you tell me if this fixes it - it will save me a compiler install....
===========================================================================
Index: linux/fs/xfs/xfs_os_defs.h
===========================================================================
--- /usr/tmp/TmpDir.7762-0/linux/fs/xfs/xfs_os_defs.h_1.10 Wed Aug 9
09:30:47 2000
+++ linux/fs/xfs/xfs_os_defs.h Wed Aug 9 09:26:49 2000
@@ -41,7 +41,7 @@
typedef __u64 xfs_off_t;
typedef __u64 xfs_ino_t; /* <inode> type */
-typedef __s64 xfs_daddr_t; /* <disk address> type */
+typedef __u64 xfs_daddr_t; /* <disk address> type */
typedef char * xfs_caddr_t; /* ?<core address> type */
typedef off_t linux_off_t;
Thanks
Steve
|