|
@@ -636,7 +636,7 @@ enum changelog_rec_type {
|
|
|
CL_EXT = 9, /* namespace extended record (2nd half of rename) */
|
|
|
CL_OPEN = 10, /* not currently used */
|
|
|
CL_CLOSE = 11, /* may be written to log only with mtime change */
|
|
|
- CL_LAYOUT = 12, /* file layout/striping modified, no data changed */
|
|
|
+ CL_LAYOUT = 12, /* file layout/striping modified */
|
|
|
CL_TRUNC = 13,
|
|
|
CL_SETATTR = 14,
|
|
|
CL_XATTR = 15,
|
|
@@ -650,7 +650,7 @@ enum changelog_rec_type {
|
|
|
static inline const char *changelog_type2str(int type) {
|
|
|
static const char *changelog_str[] = {
|
|
|
"MARK", "CREAT", "MKDIR", "HLINK", "SLINK", "MKNOD", "UNLNK",
|
|
|
- "RMDIR", "RENME", "RNMTO", "OPEN", "CLOSE", "LAYOUT", "TRUNC",
|
|
|
+ "RMDIR", "RENME", "RNMTO", "OPEN", "CLOSE", "LYOUT", "TRUNC",
|
|
|
"SATTR", "XATTR", "HSM", "MTIME", "CTIME", "ATIME",
|
|
|
};
|
|
|
|