public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]: fix for nfs on 64 bit archs.
@ 2000-12-15  4:08 Anton Blanchard
  0 siblings, 0 replies; only message in thread
From: Anton Blanchard @ 2000-12-15  4:08 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel


Hi,

Since we use bitops on wb_flags it needs to be unsigned long. With this
fix nfs works on sparc64 again.

Anton

--- linux/include/linux/nfs_page.h	Wed Dec  6 22:19:17 2000
+++ linux_work/include/linux/nfs_page.h	Fri Dec 15 14:38:18 2000
@@ -33,8 +33,8 @@
 	unsigned long		wb_timeout;	/* when to read/write/commit */
 	unsigned int		wb_offset,	/* Offset of read/write */
 				wb_bytes,	/* Length of request */
-				wb_count,	/* reference count */
-				wb_flags;
+				wb_count;	/* reference count */
+	unsigned long		wb_flags;
 	struct nfs_writeverf	wb_verf;	/* Commit cookie */
 };
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2000-12-15  4:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-12-15  4:08 [PATCH]: fix for nfs on 64 bit archs Anton Blanchard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox