diff options
author | Wu Fengguang <fengguang.wu@intel.com> | 2010-12-01 18:33:37 -0500 |
---|---|---|
committer | Wu Fengguang <fengguang.wu@intel.com> | 2011-06-07 20:25:23 -0400 |
commit | 251d6a471c831e22880b3c146bb4556ddfb1dc82 (patch) | |
tree | 5ea61b9153866eda9f4164bf316c03786e1a7840 /fs/fs-writeback.c | |
parent | 846d5a091b0506b75489577cde27f39b37a192a4 (diff) |
writeback: trace event writeback_single_inode
It is valuable to know how the dirty inodes are iterated and their IO size.
"writeback_single_inode: bdi 8:0: ino=134246746 state=I_DIRTY_SYNC|I_SYNC age=414 index=0 to_write=1024 wrote=0"
- "state" reflects inode->i_state at the end of writeback_single_inode()
- "index" reflects mapping->writeback_index after the ->writepages() call
- "to_write" is the wbc->nr_to_write at entrance of writeback_single_inode()
- "wrote" is the number of pages actually written
v2: add trace event writeback_single_inode_requeue as proposed by Dave.
CC: Dave Chinner <david@fromorbit.com>
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Diffstat (limited to 'fs/fs-writeback.c')
-rw-r--r-- | fs/fs-writeback.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index f43c479feee9..5185fad48b62 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -346,6 +346,7 @@ writeback_single_inode(struct inode *inode, struct bdi_writeback *wb, | |||
346 | struct writeback_control *wbc) | 346 | struct writeback_control *wbc) |
347 | { | 347 | { |
348 | struct address_space *mapping = inode->i_mapping; | 348 | struct address_space *mapping = inode->i_mapping; |
349 | long nr_to_write = wbc->nr_to_write; | ||
349 | unsigned dirty; | 350 | unsigned dirty; |
350 | int ret; | 351 | int ret; |
351 | 352 | ||
@@ -368,6 +369,8 @@ writeback_single_inode(struct inode *inode, struct bdi_writeback *wb, | |||
368 | */ | 369 | */ |
369 | if (wbc->sync_mode != WB_SYNC_ALL) { | 370 | if (wbc->sync_mode != WB_SYNC_ALL) { |
370 | requeue_io(inode, wb); | 371 | requeue_io(inode, wb); |
372 | trace_writeback_single_inode_requeue(inode, wbc, | ||
373 | nr_to_write); | ||
371 | return 0; | 374 | return 0; |
372 | } | 375 | } |
373 | 376 | ||
@@ -467,6 +470,7 @@ writeback_single_inode(struct inode *inode, struct bdi_writeback *wb, | |||
467 | } | 470 | } |
468 | } | 471 | } |
469 | inode_sync_complete(inode); | 472 | inode_sync_complete(inode); |
473 | trace_writeback_single_inode(inode, wbc, nr_to_write); | ||
470 | return ret; | 474 | return ret; |
471 | } | 475 | } |
472 | 476 | ||