[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150407081953.GW16501@mwanda>
Date: Tue, 7 Apr 2015 11:19:53 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Giedrius Statkevicius <giedrius.statkevicius@...il.com>
Cc: lidza.louina@...il.com, markh@...pro.net,
devel@...verdev.osuosl.org, gregkh@...uxfoundation.org,
driverdev-devel@...uxdriverproject.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 3/3] staging: dgnc: improve the coding style in unlocking
part of dgnc_tty_write()
On Tue, Apr 07, 2015 at 11:17:48AM +0300, Dan Carpenter wrote:
> This patch changes the lock ordering (behavior change) and it's not
> described in the changelog. Please figure out which way is the correct
> ordering and resend.
Actually the original ordering was obviously correct. You can't take
a mutex if you are holding a spinlock. So it always has to be:
mutex_lock();
spin_lock();
spin_unlock();
mutext_unlock();
regards,
dan carpenter
--
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