summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-03-16 08:04:07 -0700
committerAndi Kleen <ak@linux.intel.com>2011-08-01 13:54:45 -0700
commit6a469c129ce3fd551dfb9a2f99e4a1785add9b8b (patch)
tree2efc273ad4a5f957b79a6b5af5e5d96ae66aed2e /fs
parent5b1157fecf0ced4dd3c447866c332a6d9f9979ec (diff)
Increase OSF partition limit from 8 to 18
commit 34d211a2d5df4984a35b18d8ccacbe1d10abb067 upstream. It turns out that while a maximum of 8 partitions may be what people "should" have had, you can actually fit up to 18 entries(*) in a sector. And some people clearly were taking advantage of that, like Michael Cree, who had ten partitions on one of his OSF disks. (*) The OSF partition data starts at byte offset 64 in the first sector, and the array of 16-byte partition entries start at offset 148 in the on-disk partition structure. Reported-by: Michael Cree <mcree@orcon.net.nz> Cc: stable@kernel.org (v2.6.38) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Andi Kleen <ak@linux.intel.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/partitions/osf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/partitions/osf.c b/fs/partitions/osf.c
index 5b49d40ff993..5f71c928af76 100644
--- a/fs/partitions/osf.c
+++ b/fs/partitions/osf.c
@@ -10,7 +10,7 @@
#include "check.h"
#include "osf.h"
-#define MAX_OSF_PARTITIONS 8
+#define MAX_OSF_PARTITIONS 18
int osf_partition(struct parsed_partitions *state)
{