diff options
author | Wu Fengguang <fengguang.wu@intel.com> | 2011-05-05 23:10:38 -0400 |
---|---|---|
committer | Wu Fengguang <fengguang.wu@intel.com> | 2011-06-07 20:25:23 -0400 |
commit | 846d5a091b0506b75489577cde27f39b37a192a4 (patch) | |
tree | 739bd1e28f86d4620b55401d0cc4b5ab4e44eb91 /include/linux/writeback.h | |
parent | b7a2441f9966fe3e1be960a876ab52e6029ea005 (diff) |
writeback: remove .nonblocking and .encountered_congestion
Remove two unused struct writeback_control fields:
.encountered_congestion (completely unused)
.nonblocking (never set, checked/showed in XFS,NFS/btrfs)
The .for_background check in nfs_write_inode() is also removed btw,
as .for_background implies WB_SYNC_NONE.
Reviewed-by: Jan Kara <jack@suse.cz>
Proposed-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Diffstat (limited to 'include/linux/writeback.h')
-rw-r--r-- | include/linux/writeback.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/writeback.h b/include/linux/writeback.h index 8797b20dd22b..2f1b512bd6e0 100644 --- a/include/linux/writeback.h +++ b/include/linux/writeback.h | |||
@@ -39,8 +39,6 @@ struct writeback_control { | |||
39 | loff_t range_start; | 39 | loff_t range_start; |
40 | loff_t range_end; | 40 | loff_t range_end; |
41 | 41 | ||
42 | unsigned nonblocking:1; /* Don't get stuck on request queues */ | ||
43 | unsigned encountered_congestion:1; /* An output: a queue is full */ | ||
44 | unsigned for_kupdate:1; /* A kupdate writeback */ | 42 | unsigned for_kupdate:1; /* A kupdate writeback */ |
45 | unsigned for_background:1; /* A background writeback */ | 43 | unsigned for_background:1; /* A background writeback */ |
46 | unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */ | 44 | unsigned tagged_writepages:1; /* tag-and-write to avoid livelock */ |