aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exofs/super.c
diff options
context:
space:
mode:
authorBoaz Harrosh <bharrosh@panasas.com>2011-09-28 06:18:45 -0400
committerBoaz Harrosh <bharrosh@panasas.com>2011-10-14 12:54:41 -0400
commit5a51c0c7e9a913649aa65d8233470682bcbb7694 (patch)
tree4ed43b3a2f9fade227e098771a5bed66f6a71dc4 /fs/exofs/super.c
parent3bd9856857339d7ee8c4ad50030583f1b9415c39 (diff)
ore/exofs: Define new ore_verify_layout
All users of the ore will need to check if current code supports the given layout. For example RAID5/6 is not currently supported. So move all the checks from exofs/super.c to a new ore_verify_layout() to be used by ore users. Note that any new layout should be passed through the ore_verify_layout() because the ore engine will prepare and verify some internal members of ore_layout, and assumes it's called. Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Diffstat (limited to 'fs/exofs/super.c')
-rw-r--r--fs/exofs/super.c49
1 files changed, 3 insertions, 46 deletions
diff --git a/fs/exofs/super.c b/fs/exofs/super.c
index bce3686f0aa0..057b237b8b69 100644
--- a/fs/exofs/super.c
+++ b/fs/exofs/super.c
@@ -480,7 +480,7 @@ static void exofs_put_super(struct super_block *sb)
480static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs, 480static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs,
481 struct exofs_device_table *dt) 481 struct exofs_device_table *dt)
482{ 482{
483 u64 stripe_length; 483 int ret;
484 484
485 sbi->layout.stripe_unit = 485 sbi->layout.stripe_unit =
486 le64_to_cpu(dt->dt_data_map.cb_stripe_unit); 486 le64_to_cpu(dt->dt_data_map.cb_stripe_unit);
@@ -493,50 +493,7 @@ static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs,
493 sbi->layout.raid_algorithm = 493 sbi->layout.raid_algorithm =
494 le32_to_cpu(dt->dt_data_map.cb_raid_algorithm); 494 le32_to_cpu(dt->dt_data_map.cb_raid_algorithm);
495 495
496/* FIXME: Only raid0 for now. if not so, do not mount */ 496 ret = ore_verify_layout(numdevs, &sbi->layout);
497 if (sbi->layout.raid_algorithm != PNFS_OSD_RAID_0) {
498 EXOFS_ERR("Only RAID_0 for now\n");
499 return -EINVAL;
500 }
501 if (numdevs < (sbi->layout.group_width * sbi->layout.mirrors_p1)) {
502 EXOFS_ERR("Data Map wrong, "
503 "numdevs=%d < group_width=%d * mirrors=%d\n",
504 numdevs, sbi->layout.group_width,
505 sbi->layout.mirrors_p1);
506 return -EINVAL;
507 }
508
509 if (0 != (sbi->layout.stripe_unit & ~PAGE_MASK)) {
510 EXOFS_ERR("Stripe Unit(0x%llx)"
511 " must be Multples of PAGE_SIZE(0x%lx)\n",
512 _LLU(sbi->layout.stripe_unit), PAGE_SIZE);
513 return -EINVAL;
514 }
515
516 if (sbi->layout.group_width) {
517 if (!sbi->layout.group_depth) {
518 EXOFS_ERR("group_depth == 0 && group_width != 0\n");
519 return -EINVAL;
520 }
521 sbi->layout.group_count = numdevs / sbi->layout.mirrors_p1 /
522 sbi->layout.group_width;
523 } else {
524 if (sbi->layout.group_depth) {
525 printk(KERN_NOTICE "Warning: group_depth ignored "
526 "group_width == 0 && group_depth == %lld\n",
527 _LLU(sbi->layout.group_depth));
528 }
529 sbi->layout.group_width = numdevs / sbi->layout.mirrors_p1;
530 sbi->layout.group_depth = -1;
531 sbi->layout.group_count = 1;
532 }
533
534 stripe_length = (u64)sbi->layout.group_width * sbi->layout.stripe_unit;
535 if (stripe_length >= (1ULL << 32)) {
536 EXOFS_ERR("Total Stripe length(0x%llx)"
537 " >= 32bit is not supported\n", _LLU(stripe_length));
538 return -EINVAL;
539 }
540 497
541 EXOFS_DBGMSG("exofs: layout: " 498 EXOFS_DBGMSG("exofs: layout: "
542 "num_comps=%u stripe_unit=0x%x group_width=%u " 499 "num_comps=%u stripe_unit=0x%x group_width=%u "
@@ -547,7 +504,7 @@ static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs,
547 _LLU(sbi->layout.group_depth), 504 _LLU(sbi->layout.group_depth),
548 sbi->layout.mirrors_p1, 505 sbi->layout.mirrors_p1,
549 sbi->layout.raid_algorithm); 506 sbi->layout.raid_algorithm);
550 return 0; 507 return ret;
551} 508}
552 509
553static unsigned __ra_pages(struct ore_layout *layout) 510static unsigned __ra_pages(struct ore_layout *layout)