Hi, I am trying to use logfs for a project I am currently working on. The kernel version I used is 2.6.37 with some patch from TI DM8168. I search on the internet for an offline way to create a logfs image from a directory (like mkfs.jffs2), and the only way seems to be using the block2mtd kernel module. Does anybody confirm that? Also I encountered two BUG(): - The first is already documented on some mailing lists: it is the one that it appears when doing umount -> call to map_invalidatepage. I was able to apply the attached patch1 to fix this, but I still see call to this function. I guess I might miss something. - The other one is when mounting a filesystem that detects a previous incomplete write: it BUG() because it cannot find any free segment. Trying to understand what is happening, I realized that during the mount, the function that adds segment to the free list is called after the function that check the filesystem. I modified this like in the following patch2 and it seems to work fine. Does anybody have any thoughts about that? Thanks a lo --- 618FE3EF