Skip to content

Commit

Permalink
fix I_DIO_WAKEUP definition
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Eric Sandeen authored and Al Viro committed Apr 24, 2015
1 parent fe0f07d commit ac74d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1812,7 +1812,7 @@ struct super_operations {
#define I_SYNC (1 << __I_SYNC)
#define I_REFERENCED (1 << 8)
#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_DIRTY_TIME (1 << 11)
#define __I_DIRTY_TIME_EXPIRED 12
Expand Down

0 comments on commit ac74d8d

Please sign in to comment.