diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2011-09-28 06:18:45 -0400 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2011-10-14 12:54:41 -0400 |
commit | 5a51c0c7e9a913649aa65d8233470682bcbb7694 (patch) | |
tree | 4ed43b3a2f9fade227e098771a5bed66f6a71dc4 /fs/exofs/ore.c | |
parent | 3bd9856857339d7ee8c4ad50030583f1b9415c39 (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/ore.c')
-rw-r--r-- | fs/exofs/ore.c | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c index f1b718028a1f..4ca59d492798 100644 --- a/fs/exofs/ore.c +++ b/fs/exofs/ore.c | |||
@@ -47,9 +47,76 @@ MODULE_AUTHOR("Boaz Harrosh <bharrosh@panasas.com>"); | |||
47 | MODULE_DESCRIPTION("Objects Raid Engine ore.ko"); | 47 | MODULE_DESCRIPTION("Objects Raid Engine ore.ko"); |
48 | MODULE_LICENSE("GPL"); | 48 | MODULE_LICENSE("GPL"); |
49 | 49 | ||
50 | /* ore_verify_layout does a couple of things: | ||
51 | * 1. Given a minimum number of needed parameters fixes up the rest of the | ||
52 | * members to be operatonals for the ore. The needed parameters are those | ||
53 | * that are defined by the pnfs-objects layout STD. | ||
54 | * 2. Check to see if the current ore code actually supports these parameters | ||
55 | * for example stripe_unit must be a multple of the system PAGE_SIZE, | ||
56 | * and etc... | ||
57 | * 3. Cache some havily used calculations that will be needed by users. | ||
58 | */ | ||
59 | |||
50 | static void ore_calc_stripe_info(struct ore_layout *layout, u64 file_offset, | 60 | static void ore_calc_stripe_info(struct ore_layout *layout, u64 file_offset, |
51 | struct ore_striping_info *si); | 61 | struct ore_striping_info *si); |
52 | 62 | ||
63 | enum { BIO_MAX_PAGES_KMALLOC = | ||
64 | (PAGE_SIZE - sizeof(struct bio)) / sizeof(struct bio_vec),}; | ||
65 | |||
66 | int ore_verify_layout(unsigned total_comps, struct ore_layout *layout) | ||
67 | { | ||
68 | u64 stripe_length; | ||
69 | |||
70 | /* FIXME: Only raid0 is supported for now. */ | ||
71 | if (layout->raid_algorithm != PNFS_OSD_RAID_0) { | ||
72 | ORE_ERR("Only RAID_0 for now\n"); | ||
73 | return -EINVAL; | ||
74 | } | ||
75 | if (0 != (layout->stripe_unit & ~PAGE_MASK)) { | ||
76 | ORE_ERR("Stripe Unit(0x%llx)" | ||
77 | " must be Multples of PAGE_SIZE(0x%lx)\n", | ||
78 | _LLU(layout->stripe_unit), PAGE_SIZE); | ||
79 | return -EINVAL; | ||
80 | } | ||
81 | if (layout->group_width) { | ||
82 | if (!layout->group_depth) { | ||
83 | ORE_ERR("group_depth == 0 && group_width != 0\n"); | ||
84 | return -EINVAL; | ||
85 | } | ||
86 | if (total_comps < (layout->group_width * layout->mirrors_p1)) { | ||
87 | ORE_ERR("Data Map wrong, " | ||
88 | "numdevs=%d < group_width=%d * mirrors=%d\n", | ||
89 | total_comps, layout->group_width, | ||
90 | layout->mirrors_p1); | ||
91 | return -EINVAL; | ||
92 | } | ||
93 | layout->group_count = total_comps / layout->mirrors_p1 / | ||
94 | layout->group_width; | ||
95 | } else { | ||
96 | if (layout->group_depth) { | ||
97 | printk(KERN_NOTICE "Warning: group_depth ignored " | ||
98 | "group_width == 0 && group_depth == %lld\n", | ||
99 | _LLU(layout->group_depth)); | ||
100 | } | ||
101 | layout->group_width = total_comps / layout->mirrors_p1; | ||
102 | layout->group_depth = -1; | ||
103 | layout->group_count = 1; | ||
104 | } | ||
105 | |||
106 | stripe_length = (u64)layout->group_width * layout->stripe_unit; | ||
107 | if (stripe_length >= (1ULL << 32)) { | ||
108 | ORE_ERR("Stripe_length(0x%llx) >= 32bit is not supported\n", | ||
109 | _LLU(stripe_length)); | ||
110 | return -EINVAL; | ||
111 | } | ||
112 | |||
113 | layout->max_io_length = | ||
114 | (BIO_MAX_PAGES_KMALLOC * PAGE_SIZE - layout->stripe_unit) * | ||
115 | layout->group_width; | ||
116 | return 0; | ||
117 | } | ||
118 | EXPORT_SYMBOL(ore_verify_layout); | ||
119 | |||
53 | static u8 *_ios_cred(struct ore_io_state *ios, unsigned index) | 120 | static u8 *_ios_cred(struct ore_io_state *ios, unsigned index) |
54 | { | 121 | { |
55 | return ios->oc->comps[index & ios->oc->single_comp].cred; | 122 | return ios->oc->comps[index & ios->oc->single_comp].cred; |