Commit 5f2272c2 authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Fix min_size and max_size definitions in ATTR_DEF structure in

      fs/ntfs/layout.h to be signed.
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent 5a06b739
......@@ -29,6 +29,8 @@ ToDo/Notes:
vfs ->truncate method.
- Add a new ntfs inode flag NInoTruncateFailed() and modify
fs/ntfs/inode.c::ntfs_truncate() to set and clear it appropriately.
- Fix min_size and max_size definitions in ATTR_DEF structure in
fs/ntfs/layout.h to be signed.
2.1.21 - Fix some races and bugs, rewrite mft write code, add mft allocator.
......
......@@ -589,8 +589,8 @@ typedef struct {
FIXME: What does it mean? (AIA) */
/* 88*/ COLLATION_RULE collation_rule; /* Default collation rule. */
/* 8c*/ ATTR_DEF_FLAGS flags; /* Flags describing the attribute. */
/* 90*/ le64 min_size; /* Optional minimum attribute size. */
/* 98*/ le64 max_size; /* Maximum size of attribute. */
/* 90*/ sle64 min_size; /* Optional minimum attribute size. */
/* 98*/ sle64 max_size; /* Maximum size of attribute. */
/* sizeof() = 0xa0 or 160 bytes */
} __attribute__ ((__packed__)) ATTR_DEF;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment