From: NeilBrown This flag should be set for a virtual device iff it is set for all underlying devices. Signed-off-by: Neil Brown Signed-off-by: Alasdair G Kergon Signed-off-by: Andrew Morton [Included in -mm] Index: linux-2.6.16-rc1/drivers/md/dm-table.c =================================================================== --- linux-2.6.16-rc1.orig/drivers/md/dm-table.c 2006-01-17 07:44:47.000000000 +0000 +++ linux-2.6.16-rc1/drivers/md/dm-table.c 2006-02-15 16:05:54.000000000 +0000 @@ -97,6 +97,8 @@ static void combine_restrictions_low(str lhs->seg_boundary_mask = min_not_zero(lhs->seg_boundary_mask, rhs->seg_boundary_mask); + + lhs->no_cluster |= rhs->no_cluster; } /* @@ -525,6 +527,8 @@ int dm_get_device(struct dm_target *ti, rs->seg_boundary_mask = min_not_zero(rs->seg_boundary_mask, q->seg_boundary_mask); + + rs->no_cluster |= !test_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags); } return r; @@ -834,6 +838,11 @@ void dm_table_set_restrictions(struct dm q->hardsect_size = t->limits.hardsect_size; q->max_segment_size = t->limits.max_segment_size; q->seg_boundary_mask = t->limits.seg_boundary_mask; + if (t->limits.no_cluster) + q->queue_flags &= ~(1 << QUEUE_FLAG_CLUSTER); + else + q->queue_flags |= (1 << QUEUE_FLAG_CLUSTER); + } unsigned int dm_table_get_num_targets(struct dm_table *t) Index: linux-2.6.16-rc1/include/linux/device-mapper.h =================================================================== --- linux-2.6.16-rc1.orig/include/linux/device-mapper.h 2006-01-17 07:44:47.000000000 +0000 +++ linux-2.6.16-rc1/include/linux/device-mapper.h 2006-02-15 16:05:54.000000000 +0000 @@ -97,6 +97,7 @@ struct io_restrictions { unsigned short hardsect_size; unsigned int max_segment_size; unsigned long seg_boundary_mask; + unsigned char no_cluster; /* inverted so that 0 is default */ }; struct dm_target {