[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1366389634-19348-1-git-send-email-linkinjeon@gmail.com>
Date: Sat, 20 Apr 2013 01:40:33 +0900
From: Namjae Jeon <linkinjeon@...il.com>
To: dwmw2@...radead.org, axboe@...nel.dk, shli@...nel.org,
Paul.Clements@...eleye.com, npiggin@...nel.dk, neilb@...e.de,
cjb@...top.org, adrian.hunter@...el.com,
James.Bottomley@...senPartnership.com, JBottomley@...allels.com
Cc: linux-scsi@...r.kernel.org, linux-mtd@...ts.infradead.org,
nbd-general@...ts.sourceforge.net, linux-raid@...r.kernel.org,
linux-mmc@...r.kernel.org, linux-kernel@...r.kernel.org,
jcmvbkbc@...il.com, Namjae Jeon <linkinjeon@...il.com>,
Namjae Jeon <namjae.jeon@...sung.com>,
Vivek Trivedi <t.vivek@...sung.com>
Subject: [PATCH v2 1/9] block: fix max discard sectors limit
From: Namjae Jeon <namjae.jeon@...sung.com>
https://lkml.org/lkml/2013/4/1/292
As per above discussion, it has been oberved that few drivers are
setting q->limits.max_discard_sectors to more than (UINT_MAX >> 9)
If multiple discard requests get merged, merged discard request's
size exceeds 4GB, there is possibility that merged discard request's
__data_len field may overflow.
This patch fixes this issue.
Also, adding BLK_DEF_MAX_DISCARD_SECTORS macro to use it instead
of UINT_MAX >> 9.
Reported-by: Max Filippov <jcmvbkbc@...il.com>
Signed-off-by: Namjae Jeon <namjae.jeon@...sung.com>
Signed-off-by: Vivek Trivedi <t.vivek@...sung.com>
---
block/blk-settings.c | 3 ++-
include/linux/blkdev.h | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/block/blk-settings.c b/block/blk-settings.c
index c50ecf0..34e6b61 100644
--- a/block/blk-settings.c
+++ b/block/blk-settings.c
@@ -283,7 +283,8 @@ EXPORT_SYMBOL(blk_queue_max_hw_sectors);
void blk_queue_max_discard_sectors(struct request_queue *q,
unsigned int max_discard_sectors)
{
- q->limits.max_discard_sectors = max_discard_sectors;
+ q->limits.max_discard_sectors = min_t(unsigned int, max_discard_sectors,
+ BLK_DEF_MAX_DISCARD_SECTORS);
}
EXPORT_SYMBOL(blk_queue_max_discard_sectors);
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 07aa5f6..efff505 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -1105,6 +1105,7 @@ enum blk_default_limits {
BLK_DEF_MAX_SECTORS = 1024,
BLK_MAX_SEGMENT_SIZE = 65536,
BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL,
+ BLK_DEF_MAX_DISCARD_SECTORS = UINT_MAX >> 9,
};
#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists