Goswin von Brederlow
2006-Oct-26 07:30 UTC
[Lustre-discuss] BUG: warning at fs/inotify.c:255/inotify_d_instantiate()
Hi, I''m hitting a problem with lustre 1.4.7.1 on 2.6.18 as client. I thought this was a known issue but I can''t seem to find it again. When I run bonnie on the client I get the following: BUG: warning at fs/inotify.c:255/inotify_d_instantiate() [ 995.557024] [ 995.557025] Call Trace: [ 995.561017] [<ffffffff80291507>] inotify_d_instantiate+0x35/0x68 [ 995.567134] [<ffffffff80281600>] d_instantiate+0x58/0x67 [ 995.572567] [<ffffffff88296ac5>] :llite:ll_create_nd+0x3c7/0x41c [ 995.578686] [<ffffffff8027ac1e>] vfs_create+0xb6/0xf4 [ 995.583847] [<ffffffff8027b055>] open_namei+0x1bf/0x716 [ 995.589182] [<ffffffff80233622>] lock_task_sighand+0x29/0x4f [ 995.594952] [<ffffffff80237c68>] getrusage+0x1d6/0x1f3 [ 995.600203] [<ffffffff8026c310>] do_filp_open+0x59/0x82 [ 995.605542] [<ffffffff88269791>] :llite:ll_intent_release+0x0/0xfc [ 995.611836] [<ffffffff80237caa>] sys_getrusage+0x25/0x2d [ 995.617259] [<ffffffff88269791>] :llite:ll_intent_release+0x0/0xfc [ 995.623545] [<ffffffff8026c692>] do_sys_open+0x44/0xc5 [ 995.628793] [<ffffffff8021a6db>] sysenter_do_call+0x1b/0x67 [ 995.634475] Any pointers welcome. MfG Goswin
Oleg Drokin
2006-Oct-26 13:40 UTC
[Lustre-discuss] BUG: warning at fs/inotify.c:255/inotify_d_instantiate()
Hello! On Thu, Oct 26, 2006 at 03:30:19PM +0200, Goswin von Brederlow wrote:> I''m hitting a problem with lustre 1.4.7.1 on 2.6.18 as client. I > thought this was a known issue but I can''t seem to find it again. > When I run bonnie on the client I get the following: > BUG: warning at fs/inotify.c:255/inotify_d_instantiate()This is because definition of DCACHE_INOTIFY_PARENT_WATCHED clashes with DCACHE_LUSTRE_INVALID. You need to make them different numbers, not 0x20 both. Bye, Oleg
Goswin von Brederlow
2006-Oct-27 06:52 UTC
[Lustre-discuss] BUG: warning at fs/inotify.c:255/inotify_d_instantiate()
Oleg Drokin <green@clusterfs.com> writes:> Hello! > > On Thu, Oct 26, 2006 at 03:30:19PM +0200, Goswin von Brederlow wrote: > >> I''m hitting a problem with lustre 1.4.7.1 on 2.6.18 as client. I >> thought this was a known issue but I can''t seem to find it again. >> When I run bonnie on the client I get the following: >> BUG: warning at fs/inotify.c:255/inotify_d_instantiate() > > This is because definition of DCACHE_INOTIFY_PARENT_WATCHED clashes with > DCACHE_LUSTRE_INVALID. > You need to make them different numbers, not 0x20 both. > > Bye, > OlegThanks. That was indeed the problem. MfG Goswin