Skip to content
Snippets Groups Projects
Commit ac74d8d6 authored by Eric Sandeen's avatar Eric Sandeen Committed by Al Viro
Browse files

fix I_DIO_WAKEUP definition


I_DIO_WAKEUP is never directly used, but fix it up anyway.

Signed-off-by: default avatarEric Sandeen <sandeen@redhat.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent fe0f07d0
No related branches found
No related tags found
No related merge requests found
...@@ -1812,7 +1812,7 @@ struct super_operations { ...@@ -1812,7 +1812,7 @@ struct super_operations {
#define I_SYNC (1 << __I_SYNC) #define I_SYNC (1 << __I_SYNC)
#define I_REFERENCED (1 << 8) #define I_REFERENCED (1 << 8)
#define __I_DIO_WAKEUP 9 #define __I_DIO_WAKEUP 9
#define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) #define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP)
#define I_LINKABLE (1 << 10) #define I_LINKABLE (1 << 10)
#define I_DIRTY_TIME (1 << 11) #define I_DIRTY_TIME (1 << 11)
#define __I_DIRTY_TIME_EXPIRED 12 #define __I_DIRTY_TIME_EXPIRED 12
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment