Skip to content

Commit ac74d8d

Browse files
Eric SandeenAl Viro
authored andcommitted
fix I_DIO_WAKEUP definition
I_DIO_WAKEUP is never directly used, but fix it up anyway. Signed-off-by: Eric Sandeen <[email protected]> Signed-off-by: Al Viro <[email protected]>
1 parent fe0f07d commit ac74d8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/fs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1812,7 +1812,7 @@ struct super_operations {
18121812
#define I_SYNC (1 << __I_SYNC)
18131813
#define I_REFERENCED (1 << 8)
18141814
#define __I_DIO_WAKEUP 9
1815-
#define I_DIO_WAKEUP (1 << I_DIO_WAKEUP)
1815+
#define I_DIO_WAKEUP (1 << __I_DIO_WAKEUP)
18161816
#define I_LINKABLE (1 << 10)
18171817
#define I_DIRTY_TIME (1 << 11)
18181818
#define __I_DIRTY_TIME_EXPIRED 12

0 commit comments

Comments
 (0)