[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <482B2DC9.3050503@linux.vnet.ibm.com>
Date: Wed, 14 May 2008 23:52:01 +0530
From: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com>
To: Jeff Mahoney <jeffm@...e.com>
CC: linux-kernel@...r.kernel.org, reiserfs-devel@...r.kernel.org,
Andrew Morton <akpm@...l.org>
Subject: Re: [patch 2/3] [PATCH] reiserfs: convert j_flush_sem to mutex
Jeff Mahoney wrote:
> Jeff Mahoney wrote:
>> j_flush_sem is a semaphore but uses it as if it were a mutex. This
>> patch converts it to a mutex.
>> --- a/fs/reiserfs/journal.c
>> +++ b/fs/reiserfs/journal.c
>> @@ -1411,8 +1411,8 @@ static int flush_journal_list(struct sup
>>
>> /* if flushall == 0, the lock is already held */
>> if (flushall) {
>> - down(&journal->j_flush_sem);
>> - } else if (!down_trylock(&journal->j_flush_sem)) {
>> + mutex_lock(&journal->j_flush_mutex);
>> + } else if (!mutex_trylock(&journal->j_flush_mutex)) {
>> BUG();
>> }
>
> Oops. This chunk didn't get refreshed, here's the right one.
>
> -Jeff
Thanks, the patch resolves the kernel bug.
Tested-by: Kamalesh Babulal <kamalesh@...ux.vnet.ibm.com>
> Signed-off-by: Jeff Mahoney <jeffm@...e.com>
> ---
> fs/reiserfs/journal.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/fs/reiserfs/journal.c
> +++ b/fs/reiserfs/journal.c
> @@ -1410,7 +1410,7 @@ static int flush_journal_list(struct sup
> /* if flushall == 0, the lock is already held */
> if (flushall) {
> mutex_lock(&journal->j_flush_mutex);
> - } else if (!mutex_trylock(&journal->j_flush_mutex)) {
> + } else if (mutex_trylock(&journal->j_flush_mutex)) {
> BUG();
> }
>
--
Thanks & Regards,
Kamalesh Babulal,
Linux Technology Center,
IBM, ISTL.
--
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