Hi List I found some problems that I think is flash driver related(cfi_cmd0001.c). Somehow the flash is in Erase suspend when do_erase_oneblock has returned from INVAL_CACHE_AND_WAIT I have tried lots of "fixes" but the only one that works is to detect the Suspend in do_erase_oneblock and issue a new resume and go back to INVAL_CAHCE_AND_WAIT, see attached patch. I am uing Intel P30 flash and 2.6.19-rc3 on powerpc How to reproduce: apply patch to kernel boot to userspace and do: cp -a /bin /root/tt1 cp -a /bin /root/tt2 cp -a /bin /root/tt3 cp -a /bin /root/tt4 cp -a /bin /root/tt5 Fill up the rest JFFS2 FS to it is full using dd to create an huge file until the FS is full. make sure syslog and klogd is running and is logging to file on the JFFS2 FS. Now do 1) rm -rf /root/tt5 cp -a /root/tt1 /root/tt5 wait a few secs to a minute, then go to 1) a few other observations: It is very hard to trigger a erase, seems like the gc daemon uses that as its last resort. Why not erase blocks as soon they are ready to be erased? I have seen cp consume 100% CPU sevral times Also noticed gc sleeping whil cp is running and making no progress. had to kick gc with a kill -HUP to make it run to make room for the cp. The above observations makes me think there is a bug or two in JFFS2 as well. Jocke