Re: Sysfs over network

2009-11-21 Thread Patrick
Le vendredi 20 novembre 2009 à 20:11 +0700, Mulyadi Santosa a écrit : Hi On 11/20/09, Patrick kpa_i...@yahoo.fr wrote: Does anybody have an idea ? How could I completely disable file caching or how could I do same result as touch but from the kernel on sysfs file ? Not a FUSE user

Re: read_cache_page asynchronous failures

2009-11-21 Thread Zhu Yanhai
read_cache_page will lock the page. So the code uses wait_on_page_locked() to wait it until it is unlocked (which means reading is finished). If there was anything wrong during reading, page won't be marked with PG_uptodate, so the caller will know reading failed. Regards, Zhu Yanhai 2009/11/20

Bizarr shutdown hang behavior

2009-11-21 Thread roland
Hello all. I have a question on hangs on shutdown. I am running a 2.6.31.5 kernel. The machine is running an athlon64 processor and the motherboard is a MSI K8N Neo V2.0 H nForce3 250. Machine works great other than hanging on shutdown. Looks like the hang is in umounting the filesystems in

Re: Bizarr shutdown hang behavior

2009-11-21 Thread Pavan Kandepet
Did you check /var/log/messages for anything unusual? Pavan On Sat, Nov 21, 2009 at 2:57 PM, roland r...@brahmaloka.net wrote: Hello all. I have a question on hangs on shutdown. I am running a 2.6.31.5 kernel. The machine is running an athlon64 processor and the motherboard is a MSI K8N Neo

Re: Bizarr shutdown hang behavior

2009-11-21 Thread roland
Pavan Kandepet wrote: Did you check /var/log/messages for anything unusual? Pavan On Sat, Nov 21, 2009 at 2:57 PM, roland r...@brahmaloka.net wrote: Hello all. I have a question on hangs on shutdown. I am running a 2.6.31.5 kernel. The machine is running an athlon64 processor and the

Re: Sysfs over network

2009-11-21 Thread Mulyadi Santosa
On 11/21/09, Patrick pat...@sunrise.ch wrote: Thanks for your answers, I have already tried this yesterday morning and it works very fine ! I have also added -ocache=no Glad you solved it. Looks like by using direct I/O, FUSE will simply bypass its own internal cache... -- regards,