errcode_t ext2fs_dirent_swab_in(ext2_filsys fs, char *buf, int flags) { + return ext2fs_dirent_swab_in(fs, buf, fs->blocksize, flags); +} I guess it misses "2" for function name. Should be: errcode_t ext2fs_dirent_swab_in(ext2_filsys fs, char *buf, int flags) { + return ext2fs_dirent_swab_in2(fs, buf, fs->blocksize, flags); +} Thanks, Jon > On Mon, Mar 3, 2014 at 10:49 AM, Theodore Ts'o <tytso@xxxxxxx> wrote: >> On Fri, Dec 06, 2013 at 05:57:57PM +0800, Zheng Liu wrote: >> From: Zheng Liu <wenqing.lz@xxxxxxxxxx> >> >> Later we will use ext2fs_dirent_swab_in/out to handle big-endian problem >> for inline data. Now interfaces assume that it handles a block, but it >> is not true after adding inline data. So this commit defines a new >> interface for inline data. >> >> Signed-off-by: Zheng Liu <wenqing.lz@xxxxxxxxxx> > > Thanks, applied. > > - 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 -- 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