diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-26 10:39:54 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-26 10:39:54 -0700 | 
| commit | f01ef569cddb1a8627b1c6b3a134998ad1cf4b22 (patch) | |
| tree | 29ea1a0942c8549c24411e976cd6891c7e995e89 /mm/filemap.c | |
| parent | a93a1329271038f0e8337061d3b41b3b212a851e (diff) | |
| parent | bcff25fc8aa47a13faff8b4b992589813f7b450a (diff) | |
| download | olio-linux-3.10-f01ef569cddb1a8627b1c6b3a134998ad1cf4b22.tar.xz olio-linux-3.10-f01ef569cddb1a8627b1c6b3a134998ad1cf4b22.zip  | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/writeback
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/wfg/writeback: (27 commits)
  mm: properly reflect task dirty limits in dirty_exceeded logic
  writeback: don't busy retry writeback on new/freeing inodes
  writeback: scale IO chunk size up to half device bandwidth
  writeback: trace global_dirty_state
  writeback: introduce max-pause and pass-good dirty limits
  writeback: introduce smoothed global dirty limit
  writeback: consolidate variable names in balance_dirty_pages()
  writeback: show bdi write bandwidth in debugfs
  writeback: bdi write bandwidth estimation
  writeback: account per-bdi accumulated written pages
  writeback: make writeback_control.nr_to_write straight
  writeback: skip tmpfs early in balance_dirty_pages_ratelimited_nr()
  writeback: trace event writeback_queue_io
  writeback: trace event writeback_single_inode
  writeback: remove .nonblocking and .encountered_congestion
  writeback: remove writeback_control.more_io
  writeback: skip balance_dirty_pages() for in-memory fs
  writeback: add bdi_dirty_limit() kernel-doc
  writeback: avoid extra sync work at enqueue time
  writeback: elevate queue_io() into wb_writeback()
  ...
Fix up trivial conflicts in fs/fs-writeback.c and mm/filemap.c
Diffstat (limited to 'mm/filemap.c')
| -rw-r--r-- | mm/filemap.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 10a17111327..867d40222ec 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -78,7 +78,7 @@   *  ->i_mutex			(generic_file_buffered_write)   *    ->mmap_sem		(fault_in_pages_readable->do_page_fault)   * - *  inode_wb_list_lock + *  bdi->wb.list_lock   *    sb_lock			(fs/fs-writeback.c)   *    ->mapping->tree_lock	(__sync_single_inode)   * @@ -96,9 +96,9 @@   *    ->zone.lru_lock		(check_pte_range->isolate_lru_page)   *    ->private_lock		(page_remove_rmap->set_page_dirty)   *    ->tree_lock		(page_remove_rmap->set_page_dirty) - *    inode_wb_list_lock	(page_remove_rmap->set_page_dirty) + *    bdi.wb->list_lock		(page_remove_rmap->set_page_dirty)   *    ->inode->i_lock		(page_remove_rmap->set_page_dirty) - *    inode_wb_list_lock	(zap_pte_range->set_page_dirty) + *    bdi.wb->list_lock		(zap_pte_range->set_page_dirty)   *    ->inode->i_lock		(zap_pte_range->set_page_dirty)   *    ->private_lock		(zap_pte_range->__set_page_dirty_buffers)   *  |