On Sat, Feb 16, 2013 at 10:32:51AM +0800, Zheng Liu wrote: > > To be honest, my initial idea is only to split ext4_map_blocks into > ext4_map_blocks_read and ext4_map_blocks_write, and do some cleanups. > Thanks for your suggestions. I will look at it carefully after the > patch series of extent status tree has been applied. Ah, when you said get_block_t functions, I had assumed you had meant changing the function signature --- because the function signature being fixed by the generic DIO code is one of the things holding back a number of improvements in the map_blocks code paths. For example: 1) Thanks to the DIO code, we are ab(using) a struct buffer_head data structure to pass the mapping to the DIO code. Normally the buffer_head maps only a single block's worth of data, but here b_size is repurposed to indcate the size of the logical to physical block mapping, and b_data is invalid (since it isn't a real buffer head). There are a number of other fields in the struct buffer_head which in the DIO codepath which are completely unused, which isn't just an aesthetic issue --- it's also wasting valuable (and limited) kernel stack space, since the struct buffer_head is allocated on the stack of do_blockdev_direct_IO(). 2) We are currently using inode flags to pass state flags between different parts of the writepages code and the map_blocks code. This is bad because (a) it makes the code much harder to understand and maintain, and (b) it blocks us from being able to call map_blocks() in parallel. If we fix this, it would be relatively trivial to add support for parallel non-create map_block calls, and if we decide to try to use the extent status tree for range locking, it might be possible to do parallel block allocations sa well. (I believe some locking may be needed in mballoc.c for the inode-specific preallocation code, but that should be doable.) If we have multiple interested in working on various different projects, it might be useful to start documenting some of these proposed enhancements on the wiki, and certainly these would be good things for us to discuss at the ext4 developer's workshop in April. Regards, - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html