Commit c9c2009a authored by Anton Altaparmakov's avatar Anton Altaparmakov

NTFS: Document extended attribute ($EA) NEED_EA flag. (Based on libntfs

      patch by Yura Pakhuchiy.)
Signed-off-by: default avatarAnton Altaparmakov <aia21@cantab.net>
parent dda65b94
...@@ -78,6 +78,8 @@ ToDo/Notes: ...@@ -78,6 +78,8 @@ ToDo/Notes:
- $EA attributes can be both resident and non-resident. - $EA attributes can be both resident and non-resident.
- Use %z for size_t to fix compilation warnings. (Andrew Morton) - Use %z for size_t to fix compilation warnings. (Andrew Morton)
- Fix compilation warnings with gcc-4.0.2 on SUSE 10.0. - Fix compilation warnings with gcc-4.0.2 on SUSE 10.0.
- Document extended attribute ($EA) NEED_EA flag. (Based on libntfs
patch by Yura Pakhuchiy.)
2.1.24 - Lots of bug fixes and support more clean journal states. 2.1.24 - Lots of bug fixes and support more clean journal states.
......
...@@ -2374,7 +2374,9 @@ typedef struct { ...@@ -2374,7 +2374,9 @@ typedef struct {
* Extended attribute flags (8-bit). * Extended attribute flags (8-bit).
*/ */
enum { enum {
NEED_EA = 0x80 NEED_EA = 0x80 /* If set the file to which the EA belongs
cannot be interpreted without understanding
the associates extended attributes. */
} __attribute__ ((__packed__)); } __attribute__ ((__packed__));
typedef u8 EA_FLAGS; typedef u8 EA_FLAGS;
......
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