| To: | linux-kernel@xxxxxxxxxxxxxxx |
|---|---|
| Subject: | [PATCH v3 1/2] block: reorganize rounding of max_discard_sectors |
| From: | Paolo Bonzini <pbonzini@xxxxxxxxxx> |
| Date: | Thu, 5 Jul 2012 18:01:43 +0200 |
| Cc: | snitzer@xxxxxxxxxx, david@xxxxxxxxxxxxx, dm-devel@xxxxxxxxxx, xfs@xxxxxxxxxxx, hch@xxxxxx, martin.petersen@xxxxxxxxxx, axboe@xxxxxxxxx, vgoyal@xxxxxxxxxx |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=tdzsdb9nAm8wqGb4YnrMrpXKTpLa/lyV+ZWDeffpraE=; b=iLjQm9DjJ8zB48rd3twXjm9xRgmf9KMMneLLkKo2kR1IYT3iC+8tnGY31Nrj0LsgS2 +1gX7DxksC6JYwI7oUPE06IUFi90MRyGCzxP4v2mNfExE9UvYeW+wuYEfx9xnumSqN8f F5Kdqyiku30QVHq2JYvn1MPYQL86ggBJw13x9S9r3AVmsgUgpHJ0LJ2pnS+6ATlOwmFE xAsiF/dK8oQtFxUiFAetYohxBrTcOY6p0ajUipMEyEIEcqNX1uIZ0ukQGhaiL1zVmNiz GpVnYtpYlNSVD2ey4cV0q/E79Zb6Xf3tPyqqHmjjtN2GIxHoMGGv+OYtbeecPehFa+nT fQ6w== |
| In-reply-to: | <1341504104-1674-1-git-send-email-pbonzini@xxxxxxxxxx> |
| References: | <1341504104-1674-1-git-send-email-pbonzini@xxxxxxxxxx> |
| Sender: | Paolo Bonzini <paolo.bonzini@xxxxxxxxx> |
Mostly a preparation for the next patch.
In principle this fixes an infinite loop if max_discard_sectors < granularity,
but that really shouldn't happen.
Cc: Jens Axboe <axboe@xxxxxxxxx>
Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
---
block/blk-lib.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/block/blk-lib.c b/block/blk-lib.c
index 2b461b4..16b06f6 100644
--- a/block/blk-lib.c
+++ b/block/blk-lib.c
@@ -44,6 +44,7 @@ int blkdev_issue_discard(struct block_device *bdev, sector_t
sector,
struct request_queue *q = bdev_get_queue(bdev);
int type = REQ_WRITE | REQ_DISCARD;
unsigned int max_discard_sectors;
+ unsigned int granularity;
struct bio_batch bb;
struct bio *bio;
int ret = 0;
@@ -54,18 +55,18 @@ int blkdev_issue_discard(struct block_device *bdev,
sector_t sector,
if (!blk_queue_discard(q))
return -EOPNOTSUPP;
+ /* Zero-sector (unknown) and one-sector granularities are the same. */
+ granularity = max(q->limits.discard_granularity >> 9, 1U);
+
/*
* Ensure that max_discard_sectors is of the proper
* granularity
*/
max_discard_sectors = min(q->limits.max_discard_sectors, UINT_MAX >> 9);
+ max_discard_sectors = round_down(max_discard_sectors, granularity);
if (unlikely(!max_discard_sectors)) {
/* Avoid infinite loop below. Being cautious never hurts. */
return -EOPNOTSUPP;
- } else if (q->limits.discard_granularity) {
- unsigned int disc_sects = q->limits.discard_granularity >> 9;
-
- max_discard_sectors &= ~(disc_sects - 1);
}
if (flags & BLKDEV_DISCARD_SECURE) {
--
1.7.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH v3 0/2] block: improvements for discard alignment, Paolo Bonzini |
|---|---|
| Next by Date: | [PATCH v3 2/2] block: split discard into aligned requests, Paolo Bonzini |
| Previous by Thread: | [PATCH v3 0/2] block: improvements for discard alignment, Paolo Bonzini |
| Next by Thread: | [PATCH v3 2/2] block: split discard into aligned requests, Paolo Bonzini |
| Indexes: | [Date] [Thread] [Top] [All Lists] |