Defined reparse tag for system compression

The new compression formats used by Windows 10 uses reparse data, and
a new reparse tag which it is useful to define even though these formats
is not yet supported by ntfs-3g.
This commit is contained in:
Jean-Pierre André 2015-12-01 10:56:01 +01:00
parent aeb1d7fb74
commit 730776b0e5
2 changed files with 1 additions and 1 deletions

View File

@ -2409,6 +2409,7 @@ typedef enum {
IO_REPARSE_TAG_SIS = const_cpu_to_le32(0x80000007),
IO_REPARSE_TAG_SYMLINK = const_cpu_to_le32(0xA000000C),
IO_REPARSE_TAG_WIM = const_cpu_to_le32(0x80000008),
IO_REPARSE_TAG_WOF = const_cpu_to_le32(0x80000017),
IO_REPARSE_TAG_VALID_VALUES = const_cpu_to_le32(0xf000ffff),
} PREDEFINED_REPARSE_TAGS;

View File

@ -411,7 +411,6 @@ static char *ntfs_attr_get_name_mbs(ATTR_RECORD *attr)
static const char *reparse_type_name(le32 tag)
{
const char *name;
le32 IO_REPARSE_TAG_WOF = const_cpu_to_le32(0x80000017); /* temporary */
if (tag == IO_REPARSE_TAG_MOUNT_POINT)
name = " (mount point)";