> From: Atsushi Nemoto [mailto:anemo@xxxxxxxxxxxxx] > Sent: Friday, March 23, 2007 11:42 AM > To: Ravi Pratap > Cc: ralf@xxxxxxxxxxxxxx; miklos@xxxxxxxxxx; linux-mips@xxxxxxxxxxxxxx > Subject: Re: flush_anon_page for MIPS > > On Fri, 23 Mar 2007 10:51:32 -0400, "Ravi Pratap" > <Ravi.Pratap@xxxxxxxxxxxxxxxxx> wrote: > > > Was this one found by code inspection or actually > triggered by like > > > FUSE? > > > > It was actually triggered by FUSE. > > Could you point us any good (simple, easy to install, > independent from any special device) FUSE program to test it? The standard FUSE hello program triggers the bug every single time. All you have to do is follow the example on the FUSE web page: http://fuse.sourceforge.net ~/fuse/example$ mkdir /tmp/fuse ~/fuse/example$ ./hello /tmp/fuse ~/fuse/example$ ls -l /tmp/fuse total 0 -r--r--r-- 1 root root 13 Jan 1 1970 hello ~/fuse/example$ cat /tmp/fuse/hello Hello World! ~/fuse/example$ fusermount -u /tmp/fuse ~/fuse/example$ It hangs when you do ls -l /tmp/fuse, in the above example. HTH, Ravi.