diff options
author | Eric Sandeen <sandeen@redhat.com> | 2015-04-16 16:04:56 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-24 15:45:34 -0400 |
commit | ac74d8d65c83d8061034d0908e1eab6a0c24f923 (patch) | |
tree | 79cbafb0fe91f192d75419acb3612c8efcc25d62 | |
parent | fe0f07d08ee35fb13d2cb048970072fe4f71ad14 (diff) |
fix I_DIO_WAKEUP definition
I_DIO_WAKEUP is never directly used, but fix it up anyway.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 9055eefa92c7..43565607088e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1812,7 +1812,7 @@ struct super_operations { | |||
1812 | #define I_SYNC (1 << __I_SYNC) | 1812 | #define I_SYNC (1 << __I_SYNC) |
1813 | #define I_REFERENCED (1 << 8) | 1813 | #define I_REFERENCED (1 << 8) |
1814 | #define __I_DIO_WAKEUP 9 | 1814 | #define __I_DIO_WAKEUP 9 |
1815 | #define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) | 1815 | #define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP) |
1816 | #define I_LINKABLE (1 << 10) | 1816 | #define I_LINKABLE (1 << 10) |
1817 | #define I_DIRTY_TIME (1 << 11) | 1817 | #define I_DIRTY_TIME (1 << 11) |
1818 | #define __I_DIRTY_TIME_EXPIRED 12 | 1818 | #define __I_DIRTY_TIME_EXPIRED 12 |