All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix page cache limit wrapping in filesystems
@ 2002-02-07  2:33 Andi Kleen
  2002-02-07  2:40 ` Alexander Viro
  0 siblings, 1 reply; 2+ messages in thread
From: Andi Kleen @ 2002-02-07  2:33 UTC (permalink / raw)
  To: torvalds; +Cc: Alexander Viro, linux-kernel


Several file systems in tree that nominally support files >2GB set their
s_maxbytes value to ~0ULL. This has the nasty side effect on 32bit machines
that when a file write reaches the page cache limit (e.g. 2^43) it'll silently
wrap and destroy data at the beginning of the file.

This patch changes the file systems in question to fill in a proper limit. 

I also have an alternate patch that adds a check for this generically
in super.c, but preliminary comments from Al suggested that he prefered
to do it in the file systems, so it is done this way way.

Patch for 2.5.4pre1. Please consider applying.

-Andi


--- linux-2.5.4pre1-work/fs/nfs/inode.c-MAXLFS	Thu Feb  7 01:44:22 2002
+++ linux-2.5.4pre1-work/fs/nfs/inode.c	Thu Feb  7 02:11:24 2002
@@ -455,6 +455,8 @@
                 server->namelen = maxlen;
 
 	sb->s_maxbytes = fsinfo.maxfilesize;
+	if (sb->s_maxbytes > MAX_LFS_FILESIZE) 
+		sb->s_maxbytes = MAX_LFS_FILESIZE; 
 
 	/* Fire up the writeback cache */
 	if (nfs_reqlist_alloc(server) < 0) {
--- linux-2.5.4pre1-work/fs/ntfs/fs.c-MAXLFS	Wed Jan 30 22:38:09 2002
+++ linux-2.5.4pre1-work/fs/ntfs/fs.c	Thu Feb  7 02:11:24 2002
@@ -1130,7 +1130,7 @@
 	/* Inform the kernel about which super operations are available. */
 	sb->s_op = &ntfs_super_operations;
 	sb->s_magic = NTFS_SUPER_MAGIC;
-	sb->s_maxbytes = ~0ULL >> 1;
+	sb->s_maxbytes = MAX_LFS_FILESIZE;
 	ntfs_debug(DEBUG_OTHER, "Reading special files\n");
 	if (ntfs_load_special_files(vol)) {
 		ntfs_error("Error loading special files\n");
--- linux-2.5.4pre1-work/fs/udf/super.c-MAXLFS	Wed Jan 30 22:38:09 2002
+++ linux-2.5.4pre1-work/fs/udf/super.c	Thu Feb  7 02:11:24 2002
@@ -1544,7 +1544,7 @@
 		iput(inode);
 		goto error_out;
 	}
-	sb->s_maxbytes = ~0ULL;
+	sb->s_maxbytes = MAX_LFS_FILESIZE;
 	return sb;
 
 error_out:
--- linux-2.5.4pre1-work/include/linux/fs.h-MAXLFS	Thu Feb  7 02:09:02 2002
+++ linux-2.5.4pre1-work/include/linux/fs.h	Thu Feb  7 02:11:24 2002
@@ -508,6 +508,14 @@
 
 #define	MAX_NON_LFS	((1UL<<31) - 1)
 
+/* Page cache limit. The filesystems should put that into their s_maxbytes 
+   limits, otherwise bad things can happen in VM. */ 
+#if BITS_PER_LONG==32
+#define MAX_LFS_FILESIZE	(((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) 
+#elif BITS_PER_LONG==64
+#define MAX_LFS_FILESIZE 	0x7fffffffffffffff
+#endif
+
 #define FL_POSIX	1
 #define FL_FLOCK	2
 #define FL_BROKEN	4	/* broken flock() emulation */

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Fix page cache limit wrapping in filesystems
  2002-02-07  2:33 [PATCH] Fix page cache limit wrapping in filesystems Andi Kleen
@ 2002-02-07  2:40 ` Alexander Viro
  0 siblings, 0 replies; 2+ messages in thread
From: Alexander Viro @ 2002-02-07  2:40 UTC (permalink / raw)
  To: Andi Kleen; +Cc: torvalds, linux-kernel



On Thu, 7 Feb 2002, Andi Kleen wrote:

> 
> Several file systems in tree that nominally support files >2GB set their
> s_maxbytes value to ~0ULL. This has the nasty side effect on 32bit machines
> that when a file write reaches the page cache limit (e.g. 2^43) it'll silently
> wrap and destroy data at the beginning of the file.
> 
> This patch changes the file systems in question to fill in a proper limit. 
> 
> I also have an alternate patch that adds a check for this generically
> in super.c, but preliminary comments from Al suggested that he prefered
> to do it in the file systems, so it is done this way way.
> 
> Patch for 2.5.4pre1. Please consider applying.

Looks OK.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-02-07  2:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-02-07  2:33 [PATCH] Fix page cache limit wrapping in filesystems Andi Kleen
2002-02-07  2:40 ` Alexander Viro

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.