public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] block: align start sector of a discard request
@ 2012-03-14 17:12 Paolo Bonzini
  2012-03-14 17:12 ` [PATCH 1/2] block: tweak rounding of max_discard_sectors Paolo Bonzini
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Paolo Bonzini @ 2012-03-14 17:12 UTC (permalink / raw)
  To: linux-kernel; +Cc: Jens Axboe

When a disk has a large discard_granularity, discards are not split with
optimal alignment; the pessimization gets bigger as discard_granularity
and max_discard_sectors become closer.

Take the limit case of discard_granularity == max_discard_sectors == 64.
Then, if a request is submitted for 256 sectors 2..257 it will be split
like this: 2..65, 66..129, 130..193, 194..257.  None of these requests
is aligned, so in fact you might end up with no discarded logical blocks
at all.  With this patch, the split will be 2..63, 64..127, 128..191,
192..255, 256..257.  The patches also take the discard_alignment into
consideration.

Patch 1 adjusts the computation of the granularity-adjusted
max_discard_sectors so that it prepares for the new code in patch 2,
while patch 2 actually adjusts the split.

Paolo Bonzini (2):
  block: tweak rounding of max_discard_sectors
  block: split discard into aligned requests

 block/blk-lib.c    |   41 +++++++++++++++++++++++++++--------------
 1 files changed, 27 insertions(+), 14 deletions(-)

-- 
1.7.7.6


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-03-27  9:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-14 17:12 [PATCH 0/2] block: align start sector of a discard request Paolo Bonzini
2012-03-14 17:12 ` [PATCH 1/2] block: tweak rounding of max_discard_sectors Paolo Bonzini
2012-03-27  9:04   ` Christoph Hellwig
2012-03-14 17:12 ` [PATCH 2/2] block: split discard into aligned requests Paolo Bonzini
2012-03-27  9:06   ` Christoph Hellwig
2012-03-21 21:48 ` [PATCH 0/2] block: align start sector of a discard request Paolo Bonzini
2012-03-27  6:43 ` Paolo Bonzini
2012-03-27  6:54   ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox