mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 10:04:00 +08:00
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:
parent
aeb1d7fb74
commit
730776b0e5
@ -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;
|
||||
|
@ -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)";
|
||||
|
Loading…
Reference in New Issue
Block a user