I have understood the phenomenon, and I think this is a kernel's bug.
I am having a similar problem with 2.4.26 on an NEC VR5500 with a 32k 2-way cache. This is with a 32 bit little-endian kernel, and an ext2 filesystem on an ide hard drive in pio mode.
Removing just the check for PG_dcache_dirty fixes the problem for me.
Along the way, I found a bogus check for cache aliases in c-r4k.c. In the ld_mmu_r4xx0 function, it has the check: if (c->dcache.sets * c->dcache.ways > PAGE_SIZE) which will never work for a 32k cache.
Bob Breuer
The real wrong place is not the judgement for condition "PG_dcache_dirty"
in function __update_cache( ).
in file mm/filemap.c and function filemap_nopage( ):
......
success:
/*
* Try read-ahead for sequential areas.
*/
if (VM_SequentialReadHint(area))
nopage_sequential_readahead(area, pgoff, size);
/*
* Found the page and have a reference on it, need to check sharing
* and possibly copy it over to another page..
*/
mark_page_accessed(page);
flush_page_to_ram(page);
return page;
......
flush_page_to_ram( ) has not been used for a long time, and in kernel 2.4.22 "include/asm-mips/cacheflush.h" #define flush_page_to_ram(page) do { } while (0)
so the mapped page has not been flushed to ram, and the user space will not
know the latest data in the page.
the flush_page_to_ram( ) should be replaced by flush_dcache_page( ),
and if the flush_dcache_page( ) does not really flush the cache, it will set
the PG_dcache_dirty, and the real flush will be postponed to __update_cache( ).
and if there is not the flush_dcache_page( ) here, no one will set the PG_dcache_dirty,
and __update_cache( ) will not flush the page too, so the D-cache aliasing happens.
at last, when I replaced flush_page_to_ram( ) with flush_dcache_page( ), the internal compiler error disappeared.
I hope your problem will be solved by this way too. God bless you! :-)