diff options
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index a3937a8ee95e..876275fc0638 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1641,16 +1641,17 @@ struct super_operations { | |||
1641 | * | 1641 | * |
1642 | * Q: What is the difference between I_WILL_FREE and I_FREEING? | 1642 | * Q: What is the difference between I_WILL_FREE and I_FREEING? |
1643 | */ | 1643 | */ |
1644 | #define I_DIRTY_SYNC 1 | 1644 | #define I_DIRTY_SYNC (1 << 0) |
1645 | #define I_DIRTY_DATASYNC 2 | 1645 | #define I_DIRTY_DATASYNC (1 << 1) |
1646 | #define I_DIRTY_PAGES 4 | 1646 | #define I_DIRTY_PAGES (1 << 2) |
1647 | #define __I_NEW 3 | 1647 | #define __I_NEW 3 |
1648 | #define I_NEW (1 << __I_NEW) | 1648 | #define I_NEW (1 << __I_NEW) |
1649 | #define I_WILL_FREE 16 | 1649 | #define I_WILL_FREE (1 << 4) |
1650 | #define I_FREEING 32 | 1650 | #define I_FREEING (1 << 5) |
1651 | #define I_CLEAR 64 | 1651 | #define I_CLEAR (1 << 6) |
1652 | #define __I_SYNC 7 | 1652 | #define __I_SYNC 7 |
1653 | #define I_SYNC (1 << __I_SYNC) | 1653 | #define I_SYNC (1 << __I_SYNC) |
1654 | #define I_REFERENCED (1 << 8) | ||
1654 | 1655 | ||
1655 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) | 1656 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) |
1656 | 1657 | ||