linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 3/8] mtd: use generic helper to set max_discard_sectors
@ 2013-04-13 13:38 Namjae Jeon
  2013-05-13  7:08 ` Artem Bityutskiy
  0 siblings, 1 reply; 3+ messages in thread
From: Namjae Jeon @ 2013-04-13 13:38 UTC (permalink / raw)
  To: dwmw2, axboe, shli, Paul.Clements, npiggin, neilb, cjb, adrian.hunter
  Cc: linux-mtd, nbd-general, linux-raid, linux-mmc, linux-kernel,
	Namjae Jeon, Namjae Jeon, Vivek Trivedi

From: Namjae Jeon <namjae.jeon@samsung.com>

It is better to use blk_queue_max_discard_sectors helper
function to set max_discard_sectors as it checks
max_discard_sectors upper limit UINT_MAX >> 9

similar issue was reported for mmc in below link
https://lkml.org/lkml/2013/4/1/292

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.

Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Vivek Trivedi <t.vivek@samsung.com>
---
 drivers/mtd/mtd_blkdevs.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/mtd_blkdevs.c b/drivers/mtd/mtd_blkdevs.c
index 5ad39bb..cf35f99 100644
--- a/drivers/mtd/mtd_blkdevs.c
+++ b/drivers/mtd/mtd_blkdevs.c
@@ -417,7 +417,7 @@ int add_mtd_blktrans_dev(struct mtd_blktrans_dev *new)
 
 	if (tr->discard) {
 		queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, new->rq);
-		new->rq->limits.max_discard_sectors = UINT_MAX;
+		blk_queue_max_discard_sectors(new->rq, UINT_MAX >> 9);
 	}
 
 	gd->queue = new->rq;
-- 
1.7.9.5


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

* Re: [PATCH 3/8] mtd: use generic helper to set max_discard_sectors
  2013-04-13 13:38 [PATCH 3/8] mtd: use generic helper to set max_discard_sectors Namjae Jeon
@ 2013-05-13  7:08 ` Artem Bityutskiy
  2013-05-13  7:10   ` Namjae Jeon
  0 siblings, 1 reply; 3+ messages in thread
From: Artem Bityutskiy @ 2013-05-13  7:08 UTC (permalink / raw)
  To: Namjae Jeon
  Cc: dwmw2, axboe, shli, Paul.Clements, npiggin, neilb, cjb,
	adrian.hunter, linux-mtd, nbd-general, linux-raid, linux-mmc,
	linux-kernel, Namjae Jeon, Vivek Trivedi

On Sat, 2013-04-13 at 22:38 +0900, Namjae Jeon wrote:
> From: Namjae Jeon <namjae.jeon@samsung.com>
> 
> It is better to use blk_queue_max_discard_sectors helper
> function to set max_discard_sectors as it checks
> max_discard_sectors upper limit UINT_MAX >> 9
> 
> similar issue was reported for mmc in below link
> https://lkml.org/lkml/2013/4/1/292

Pushed to l2-mtd.git, thanks!

-- 
Best Regards,
Artem Bityutskiy


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

* Re: [PATCH 3/8] mtd: use generic helper to set max_discard_sectors
  2013-05-13  7:08 ` Artem Bityutskiy
@ 2013-05-13  7:10   ` Namjae Jeon
  0 siblings, 0 replies; 3+ messages in thread
From: Namjae Jeon @ 2013-05-13  7:10 UTC (permalink / raw)
  To: dedekind1
  Cc: dwmw2, axboe, shli, Paul.Clements, npiggin, neilb, cjb,
	adrian.hunter, linux-mtd, nbd-general, linux-raid, linux-mmc,
	linux-kernel, Namjae Jeon, Vivek Trivedi

2013/5/13, Artem Bityutskiy <dedekind1@gmail.com>:
> On Sat, 2013-04-13 at 22:38 +0900, Namjae Jeon wrote:
>> From: Namjae Jeon <namjae.jeon@samsung.com>
>>
>> It is better to use blk_queue_max_discard_sectors helper
>> function to set max_discard_sectors as it checks
>> max_discard_sectors upper limit UINT_MAX >> 9
>>
>> similar issue was reported for mmc in below link
>> https://lkml.org/lkml/2013/4/1/292
>
> Pushed to l2-mtd.git, thanks!
>
Hi. Artem.
Please revert this patch and ignore it.
Because this issue was already fixed by the below patch.
https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git/commit/?id=871dd9286e25330c8a581e5dacfa8b1dfe1dd641

Sorry for interrupt.
Thanks.
> --
> Best Regards,
> Artem Bityutskiy
>
>

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

end of thread, other threads:[~2013-05-13  7:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-13 13:38 [PATCH 3/8] mtd: use generic helper to set max_discard_sectors Namjae Jeon
2013-05-13  7:08 ` Artem Bityutskiy
2013-05-13  7:10   ` Namjae Jeon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).