On Fri, Aug 02, 2013 at 05:49:31PM +0800, Zheng Liu wrote: > diff --git a/lib/ext2fs/ext2_err.et.in b/lib/ext2fs/ext2_err.et.in > index 7e6d6e5..8a19cab 100644 > --- a/lib/ext2fs/ext2_err.et.in > +++ b/lib/ext2fs/ext2_err.et.in > @@ -68,6 +68,9 @@ ec EXT2_ET_MAGIC_EXTENT_HANDLE, > ec EXT2_ET_BAD_MAGIC, > "Bad magic number in super-block" > > +ec EXT2_ET_BAD_EXT_ATTR_MAGIC, > + "Bad magic number in extend attribute" > + > ec EXT2_ET_REV_TOO_HIGH, > "Filesystem revision too high" Error cods MUST always be added at the end of the error code table. Otherwise, the error code numbers will change, and that will break the ABI --- i.e., #define EXT2_ET_REV_TOO_HIGH (2133571348L) might turn into #define EXT2_ET_REV_TOO_HIGH (2133571349L) and that will cause no end of confusion when older applications link with a newer version of the libext2fs shared library. - 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