From: Artem Bityutskiy <dedekind1@gmail.com>
To: Fubo Chen <fubo.chen@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>, linux-mtd@lists.infradead.org
Subject: Re: [PATCH] mtd: Fix memory leak triggered by removal
Date: Fri, 09 Mar 2012 11:49:07 +0200 [thread overview]
Message-ID: <1331286547.22872.49.camel@sauron.fi.intel.com> (raw)
In-Reply-To: <4462354.EgehQQfXY4@asus>
On Sat, 2012-02-25 at 16:57 +0000, Fubo Chen wrote:
> dev = rq->queuedata;
>
> - if (!dev)
> + if (unlikely(blk_queue_dead(rq)))
> while ((req = blk_fetch_request(rq)) != NULL)
> __blk_end_request_all(req, -ENODEV);
I think this should be a separate patch with own commit message and
explanation. I guess you can kill 'dev' as well then?
> else {
> @@ -469,8 +469,6 @@ error1:
>
> int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
> {
> - unsigned long flags;
> -
> if (mutex_trylock(&mtd_table_mutex)) {
> mutex_unlock(&mtd_table_mutex);
> BUG();
> @@ -488,10 +486,7 @@ int del_mtd_blktrans_dev(struct mtd_blktrans_dev *old)
> kthread_stop(old->thread);
>
> /* Kill current requests */
> - spin_lock_irqsave(&old->queue_lock, flags);
> - old->rq->queuedata = NULL;
> - blk_start_queue(old->rq);
> - spin_unlock_irqrestore(&old->queue_lock, flags);
> + blk_cleanup_queue(old->rq);
Please, provide better explanation in the commit message about which
problem you solve, why you do this, and how you tested this.
blktrans_dev_release() also calls blk_cleanup_queue() - why we need to
do it 2 times?
--
Best Regards,
Artem Bityutskiy
next prev parent reply other threads:[~2012-03-09 9:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-25 16:57 [PATCH] mtd: Fix memory leak triggered by removal Fubo Chen
2012-03-09 9:49 ` Artem Bityutskiy [this message]
2012-03-09 9:48 ` Bityutskiy, Artem
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1331286547.22872.49.camel@sauron.fi.intel.com \
--to=dedekind1@gmail.com \
--cc=dwmw2@infradead.org \
--cc=fubo.chen@gmail.com \
--cc=linux-mtd@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox