Re: How to find out, what "pdflush" is working on

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Frank Ch. Eigler
Date: Friday, September 26, 2008 - 2:24 pm

> [...]

Something based upon the following systemtap script may help:

probe kernel.function("__writeback_single_inode") {
  if (execname() == "pdflush")
     printf("pdflush %d writeback bdev %x inode %x\n", tid(), $inode->i_rdev, $inode->i_ino) 
}

Other fields are available as $inode->FOO.

- FChE
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
How to find out, what "pdflush" is working on, Martin Knoblauch, (Tue Sep 16, 6:09 am)
Re: How to find out, what "pdflush" is working on, Frank Ch. Eigler, (Fri Sep 26, 2:24 pm)