]> Git Repo - linux.git/blobdiff - fs/isofs/inode.c
Merge branch 'next-spi' of git://git.secretlab.ca/git/linux-2.6
[linux.git] / fs / isofs / inode.c
index 6b4dcd4f2943e632c9d89115a2395084be95adc5..5a44811b5027ab73958ec6d87757a44dee5ff911 100644 (file)
@@ -722,7 +722,12 @@ root_found:
        }
 
        s->s_magic = ISOFS_SUPER_MAGIC;
-       s->s_maxbytes = 0xffffffff; /* We can handle files up to 4 GB */
+
+       /*
+        * With multi-extent files, file size is only limited by the maximum
+        * size of a file system, which is 8 TB.
+        */
+       s->s_maxbytes = 0x80000000000LL;
 
        /*
         * The CDROM is read-only, has no nodes (devices) on it, and since
This page took 0.031417 seconds and 4 git commands to generate.