On Mon, Jan 14, 2013 at 10:18:30PM +0800, Zheng Liu wrote: > > ext2fs_file_llseek_data/hole() seem to be weird because ext2_file_t > structure is hidden by a typedef. The caller can not dereference > it. So I define a marco called EXT2_SEEK_OFFSET_INVALID to let the > caller indicate that it find the data/hole from ext2_file_t->pos or > from offset. What do you think? Is the problem you're worried about is that the user can't get current location? That's pretty easy to solve. You can get it the same way it works with the lseek(2) system call. retval = ext2fs_file_llseek(file, 0, SEEK_CUR, &pos); Upon the return, pos will be contain the current file offset. - 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