Boaz Harrosh 50a76fd3c3 exofs: groups support
* _calc_stripe_info() changes to accommodate for grouping
  calculations. Returns additional information

* old _prepare_pages() becomes _prepare_one_group()
  which stores pages belonging to one device group.

* New _prepare_for_striping iterates on all groups calling
  _prepare_one_group().

* Enable mounting of groups data_maps (group_width != 0)

[QUESTION]
what is faster A or B;
A.	x += stride;
	x = x % width + first_x;

B	x += stride
	if (x < last_x)
		x = first_x;

Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
2010-02-28 03:55:53 -08:00
..
2009-03-31 19:44:38 +03:00
2009-06-21 17:53:47 +03:00
2010-02-28 03:55:53 -08:00
2009-06-21 17:53:47 +03:00
2010-02-28 03:55:53 -08:00
2009-12-10 09:59:21 +02:00
2009-03-31 19:44:20 +03:00
2009-06-21 17:53:47 +03:00
2010-02-28 03:55:53 -08:00
2009-06-21 17:53:47 +03:00