Hello Joonwoo,

Joonwoo Park:
> The problem that I encountered was ubifs set_page_dirty() assertion
> failure when mmap-ing to aufs filesystem which has branch as ubifs
> filesystem.
> I had a quick aufs hacking and I've inclined that aufs should have
> handled page_mkwrite of vm_operation. =A0The current version of aufs2 is
> registering only aufs_fault.
> Please find attached patch file aufs-mmap-fault.patch and correct me
> if I'm wrong.

I will read ubifs and try your test program, but it will take some time.
Just to make sure, your kernel is plain linux-2.6.27, isn't it?
And where can I get ubiattach and ubimkvol tools?

While I am not sure this is related to your problem, but mwr.c needs
fixing.

    /* Now write int's to the file as if it were memory (an array of ints).
     */
    for (i = 1; i <=NUMINTS; ++i) {
        map[i] = 2 * i; 
    }

'i' must be less than NUMINTS.
I guess you want to do,
    for (i = 0; i < NUMINTS; ...


J. R. Okajima

------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com

Reply via email to