xfs
[Top] [All Lists]

Re: xfs_vnodeops.c compile problem/question

To: "Andi Kleen" <ak@xxxxxxx>
Subject: Re: xfs_vnodeops.c compile problem/question
From: Steve Lord <lord@xxxxxxx>
Date: Wed, 09 Aug 2000 09:30:07 -0500
Cc: "Jason Holland" <jphollan@xxxxxxxxxxxxx>, "Linux-Xfs" <linux-xfs@xxxxxxxxxxx>
In-reply-to: Message from "Andi Kleen" <ak@suse.de> of "Wed, 09 Aug 2000 16:14:31 +0200." <20000809161431.A26136@gruyere.muc.suse.de>
Sender: owner-linux-xfs@xxxxxxxxxxx
> 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




<Prev in Thread] Current Thread [Next in Thread>