From: Jens Axboe <jens.axboe@oracle.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-aio@kvack.org,
reiserfs-dev@namesys.com, "Vladimir V. Saveliev" <vs@namesys.com>,
linux-mm@kvack.org
Subject: Re: dio_get_page() lockdep complaints
Date: Thu, 19 Apr 2007 16:15:10 +0200 [thread overview]
Message-ID: <20070419141510.GG11780@kernel.dk> (raw)
In-Reply-To: <20070419083407.GD20928@kernel.dk>
On Thu, Apr 19 2007, Jens Axboe wrote:
> > Is it possible that fio was changed? That it was changed to close() the fd
> > before doing the munmapping whereas it used to hold the file open?
>
> It's been a while since I tested on this box, so I don't really recall.
> But fio does close() the fd before doing munmap(). This particular test
> case doesn't use mmap(), though.
Ah wait, but it does use mmap! Fio sets up a semaphore my mmap'ing a
file in /tmp (which is reiserfs). Here's a test case that triggers it
100% reliably, adjust /tmp to some other location that is reiserfs.
lockdep from that run attached.
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
int main(int argc, char *argv[])
{
char fname[] = "/tmp/some_file"; /* /tmp on reiserfs */
void *p;
int fd;
fd = open(fname, O_RDWR|O_CREAT, 0644);
if (fd < 0) {
perror("open");
return 1;
}
if (ftruncate(fd, 64) < 0) {
perror("ftruncate");
return 1;
}
p = mmap(NULL, 64, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
if (p == MAP_FAILED) {
perror("mmap");
return 1;
}
unlink(fname);
close(fd);
munmap(p, 64);
return 0;
}
=======================================================
[ INFO: possible circular locking dependency detected ]
2.6.21-rc7 #18
-------------------------------------------------------
reiser-mmap/9643 is trying to acquire lock:
(&inode->i_mutex){--..}, at: [<b038c625>] mutex_lock+0x1c/0x1f
but task is already holding lock:
(&mm->mmap_sem){----}, at: [<b015c6cf>] sys_munmap+0x26/0x42
which lock already depends on the new lock.
the existing dependency chain (in reverse order) is:
-> #1 (&mm->mmap_sem){----}:
[<b013e3fb>] __lock_acquire+0xdee/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b0137b92>] down_read+0x3a/0x4c
[<b01b6b88>] reiserfs_remount+0x176/0x42a
[<b016ba21>] do_remount_sb+0xb9/0x10f
[<b017ebe7>] do_mount+0x1b6/0x616
[<b017f0b6>] sys_mount+0x6f/0xa9
[<b0103f04>] sysenter_past_esp+0x5d/0x99
[<ffffffff>] 0xffffffff
-> #0 (&inode->i_mutex){--..}:
[<b013e259>] __lock_acquire+0xc4c/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b038c3e5>] __mutex_lock_slowpath+0x73/0x297
[<b038c625>] mutex_lock+0x1c/0x1f
[<b01b17e9>] reiserfs_file_release+0x54/0x447
[<b016afe7>] __fput+0x53/0x101
[<b016b0ee>] fput+0x19/0x1c
[<b015bcd5>] remove_vma+0x3b/0x4d
[<b015c659>] do_munmap+0x17f/0x1cf
[<b015c6db>] sys_munmap+0x32/0x42
[<b0103f04>] sysenter_past_esp+0x5d/0x99
[<ffffffff>] 0xffffffff
other info that might help us debug this:
1 lock held by reiser-mmap/9643:
#0: (&mm->mmap_sem){----}, at: [<b015c6cf>] sys_munmap+0x26/0x42
stack backtrace:
[<b0104f54>] show_trace_log_lvl+0x1a/0x30
[<b0105626>] show_trace+0x12/0x14
[<b01056ad>] dump_stack+0x16/0x18
[<b013c48d>] print_circular_bug_tail+0x68/0x71
[<b013e259>] __lock_acquire+0xc4c/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b038c3e5>] __mutex_lock_slowpath+0x73/0x297
[<b038c625>] mutex_lock+0x1c/0x1f
[<b01b17e9>] reiserfs_file_release+0x54/0x447
[<b016afe7>] __fput+0x53/0x101
[<b016b0ee>] fput+0x19/0x1c
[<b015bcd5>] remove_vma+0x3b/0x4d
[<b015c659>] do_munmap+0x17f/0x1cf
[<b015c6db>] sys_munmap+0x32/0x42
[<b0103f04>] sysenter_past_esp+0x5d/0x99
=======================
--
Jens Axboe
WARNING: multiple messages have this Message-ID (diff)
From: Jens Axboe <jens.axboe@oracle.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-aio@kvack.org,
reiserfs-dev@namesys.com, "Vladimir V. Saveliev" <vs@namesys.com>,
linux-mm@kvack.org
Subject: Re: dio_get_page() lockdep complaints
Date: Thu, 19 Apr 2007 16:15:10 +0200 [thread overview]
Message-ID: <20070419141510.GG11780@kernel.dk> (raw)
In-Reply-To: <20070419083407.GD20928@kernel.dk>
On Thu, Apr 19 2007, Jens Axboe wrote:
> > Is it possible that fio was changed? That it was changed to close() the fd
> > before doing the munmapping whereas it used to hold the file open?
>
> It's been a while since I tested on this box, so I don't really recall.
> But fio does close() the fd before doing munmap(). This particular test
> case doesn't use mmap(), though.
Ah wait, but it does use mmap! Fio sets up a semaphore my mmap'ing a
file in /tmp (which is reiserfs). Here's a test case that triggers it
100% reliably, adjust /tmp to some other location that is reiserfs.
lockdep from that run attached.
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
int main(int argc, char *argv[])
{
char fname[] = "/tmp/some_file"; /* /tmp on reiserfs */
void *p;
int fd;
fd = open(fname, O_RDWR|O_CREAT, 0644);
if (fd < 0) {
perror("open");
return 1;
}
if (ftruncate(fd, 64) < 0) {
perror("ftruncate");
return 1;
}
p = mmap(NULL, 64, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
if (p == MAP_FAILED) {
perror("mmap");
return 1;
}
unlink(fname);
close(fd);
munmap(p, 64);
return 0;
}
=======================================================
[ INFO: possible circular locking dependency detected ]
2.6.21-rc7 #18
-------------------------------------------------------
reiser-mmap/9643 is trying to acquire lock:
(&inode->i_mutex){--..}, at: [<b038c625>] mutex_lock+0x1c/0x1f
but task is already holding lock:
(&mm->mmap_sem){----}, at: [<b015c6cf>] sys_munmap+0x26/0x42
which lock already depends on the new lock.
the existing dependency chain (in reverse order) is:
-> #1 (&mm->mmap_sem){----}:
[<b013e3fb>] __lock_acquire+0xdee/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b0137b92>] down_read+0x3a/0x4c
[<b01b6b88>] reiserfs_remount+0x176/0x42a
[<b016ba21>] do_remount_sb+0xb9/0x10f
[<b017ebe7>] do_mount+0x1b6/0x616
[<b017f0b6>] sys_mount+0x6f/0xa9
[<b0103f04>] sysenter_past_esp+0x5d/0x99
[<ffffffff>] 0xffffffff
-> #0 (&inode->i_mutex){--..}:
[<b013e259>] __lock_acquire+0xc4c/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b038c3e5>] __mutex_lock_slowpath+0x73/0x297
[<b038c625>] mutex_lock+0x1c/0x1f
[<b01b17e9>] reiserfs_file_release+0x54/0x447
[<b016afe7>] __fput+0x53/0x101
[<b016b0ee>] fput+0x19/0x1c
[<b015bcd5>] remove_vma+0x3b/0x4d
[<b015c659>] do_munmap+0x17f/0x1cf
[<b015c6db>] sys_munmap+0x32/0x42
[<b0103f04>] sysenter_past_esp+0x5d/0x99
[<ffffffff>] 0xffffffff
other info that might help us debug this:
1 lock held by reiser-mmap/9643:
#0: (&mm->mmap_sem){----}, at: [<b015c6cf>] sys_munmap+0x26/0x42
stack backtrace:
[<b0104f54>] show_trace_log_lvl+0x1a/0x30
[<b0105626>] show_trace+0x12/0x14
[<b01056ad>] dump_stack+0x16/0x18
[<b013c48d>] print_circular_bug_tail+0x68/0x71
[<b013e259>] __lock_acquire+0xc4c/0xf9c
[<b013e600>] lock_acquire+0x57/0x70
[<b038c3e5>] __mutex_lock_slowpath+0x73/0x297
[<b038c625>] mutex_lock+0x1c/0x1f
[<b01b17e9>] reiserfs_file_release+0x54/0x447
[<b016afe7>] __fput+0x53/0x101
[<b016b0ee>] fput+0x19/0x1c
[<b015bcd5>] remove_vma+0x3b/0x4d
[<b015c659>] do_munmap+0x17f/0x1cf
[<b015c6db>] sys_munmap+0x32/0x42
[<b0103f04>] sysenter_past_esp+0x5d/0x99
=======================
--
Jens Axboe
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2007-04-19 14:17 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-19 7:38 dio_get_page() lockdep complaints Jens Axboe
2007-04-19 8:01 ` Andrew Morton
2007-04-19 8:01 ` Andrew Morton
2007-04-19 8:01 ` Jens Axboe
2007-04-19 8:01 ` Jens Axboe
2007-04-19 8:25 ` Andrew Morton
2007-04-19 8:25 ` Andrew Morton
2007-04-19 8:34 ` Jens Axboe
2007-04-19 8:34 ` Jens Axboe
2007-04-19 12:43 ` Vladimir V. Saveliev
2007-04-19 12:43 ` Vladimir V. Saveliev
2007-04-19 12:49 ` Jens Axboe
2007-04-19 12:52 ` Jens Axboe
2007-04-19 12:52 ` Jens Axboe
2007-04-19 13:53 ` Roland Dreier
2007-04-19 13:53 ` Roland Dreier
2007-04-19 14:20 ` Jens Axboe
2007-04-19 14:20 ` Jens Axboe
2007-04-19 14:15 ` Jens Axboe [this message]
2007-04-19 14:15 ` Jens Axboe
2007-04-19 14:55 ` Vladimir V. Saveliev
2007-04-19 14:55 ` Vladimir V. Saveliev
2007-04-19 14:57 ` Vladimir V. Saveliev
2007-04-19 14:57 ` Vladimir V. Saveliev
2007-04-19 16:42 ` Andrew Morton
2007-04-19 16:42 ` Andrew Morton
2007-04-19 14:36 ` Chris Mason
2007-04-19 14:36 ` Chris Mason
2007-11-09 17:02 ` Peter Zijlstra
2007-11-09 17:30 ` Zach Brown
2007-11-09 17:45 ` Trond Myklebust
2007-11-09 17:48 ` Zach Brown
2007-11-09 18:01 ` Chris Mason
2007-11-09 18:35 ` Zach Brown
2007-11-09 18:53 ` Chris Mason
2007-11-09 18:57 ` Chris Mason
2007-11-09 19:16 ` Zach Brown
2007-11-09 19:35 ` Chris Mason
2007-11-11 19:49 ` Peter Zijlstra
2007-11-11 19:49 ` Peter Zijlstra
2007-11-12 8:45 ` Martin Schwidefsky
2007-11-12 8:45 ` Martin Schwidefsky
2007-11-12 9:27 ` Peter Zijlstra
2007-11-12 9:27 ` Peter Zijlstra
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=20070419141510.GG11780@kernel.dk \
--to=jens.axboe@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=linux-aio@kvack.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=reiserfs-dev@namesys.com \
--cc=vs@namesys.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.