From: Tejun Heo <tj@kernel.org>
To: Frederic Weisbecker <fweisbec@gmail.com>
Cc: axboe@kernel.dk, mingo@redhat.com, rostedt@goodmis.org,
teravest@google.com, slavapestov@google.com, ctalbott@google.com,
dhsharp@google.com, linux-kernel@vger.kernel.org,
winget@google.com, namhyung@gmail.com
Subject: Re: [RFC PATCHSET take#2] ioblame: IO tracer with origin tracking
Date: Wed, 11 Jan 2012 09:02:52 -0800 [thread overview]
Message-ID: <20120111170252.GD26832@google.com> (raw)
In-Reply-To: <20120111144012.GB7991@somewhere.redhat.com>
Hello, Frederic.
On Wed, Jan 11, 2012 at 03:40:14PM +0100, Frederic Weisbecker wrote:
> I think this has been asked before. So sorry for asking twice.
I thought Namhyung was primarily asking about stat gathering which is
chopped now.
> But I'm wondering why the post processing is made from the kernel. Do you think
> it would be possible to pull that out in userspace. We have some nice scripting
> framework for post processing of trace events in perf tools for example.
>
> If it's not possible please tell us why. We really would like to avoid adding such
> a big piece of code in the tracing subsystem if possible.
I suppose you're talking about the state tracking by post-processing,
right?
* ioblame tracks stack trace for each dirtying operation. If we don't
want further state tracking in kernel, we would have to exort the
whole stack trace on each dirtying operation which can be high
frequency. Also, is there an efficient way to export variable
length data via TPs? If so, it can be somewhat better but still not
very good.
* Even if we track dirtying state in userland, when an io is issued,
it needs to be mapped back to the dirtying actions. If the dirtier
state is in userland, we have to export all physaddrs of pages in
the IO so that userland can match them up and clear dirtied states.
Again, the same problem.
* As implemented, most of state tracking should be fairly stable and
shouldn't require much modification as code base evolves but it's
still trying to extract pretty high level semantics from disjoint
events across multiple layers. It's reasonable to expect future
changes would require updates to how those semantics are
established. Exporting higher level semantics, we don't get tied to
keeping the relevant raw tracepoints and, more importantly, their
exact interactions stable.
* It isn't trivial but still pretty straight-forward. Most of what it
does is abbreviating strack trace to an identifier (which BTW could
be useful for other tracing purposes and may be worthwhile to
generalize) and tracking page and inode dirtiers using those
identifiers. It stays mostly out of the way and doesn't noticeably
harm maintainability. It fits the role of in-kernel tracers -
building information from domain knowledge and states and exporting
to userland in sensible form.
Thanks.
--
tejun
next prev parent reply other threads:[~2012-01-11 17:03 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-10 18:28 [RFC PATCHSET take#2] ioblame: IO tracer with origin tracking Tejun Heo
2012-01-10 18:28 ` [PATCH 1/9] block: abstract disk iteration into disk_iter Tejun Heo
2012-01-10 18:28 ` [PATCH 2/9] block: block_bio_complete tracepoint was missing Tejun Heo
2012-01-11 17:25 ` Steven Rostedt
2012-01-11 17:30 ` Tejun Heo
2012-01-12 0:24 ` Namhyung Kim
2012-01-10 18:28 ` [PATCH 3/9] block: add @req to bio_{front|back}_merge tracepoints Tejun Heo
2012-01-10 18:28 ` [PATCH 4/9] writeback: move struct wb_writeback_work to writeback.h Tejun Heo
2012-01-10 18:28 ` [PATCH 5/9] writeback: add more tracepoints Tejun Heo
2012-01-10 18:28 ` [PATCH 6/9] block: add block_touch_buffer tracepoint Tejun Heo
2012-01-11 17:42 ` Steven Rostedt
2012-01-11 17:58 ` Tejun Heo
2012-01-10 18:28 ` [PATCH 7/9] vfs: add fcheck tracepoint Tejun Heo
2012-01-10 18:28 ` [PATCH 8/9] stacktrace: implement save_stack_trace_quick() Tejun Heo
2012-01-11 16:26 ` Frederic Weisbecker
2012-01-11 16:38 ` Tejun Heo
2012-01-11 17:37 ` Tejun Heo
2012-01-17 2:22 ` Frederic Weisbecker
2012-01-10 18:28 ` [PATCH 9/9] block, trace: implement ioblame - IO tracer with origin tracking Tejun Heo
2012-01-11 0:25 ` Chanho Park
2012-01-11 1:04 ` Tejun Heo
2012-01-11 1:32 ` [PATCH RESEND " Tejun Heo
2012-01-11 6:15 ` Namhyung Kim
2012-01-11 17:06 ` Tejun Heo
2012-01-12 1:05 ` Namhyung Kim
2012-01-12 1:14 ` Tejun Heo
2012-01-12 1:35 ` Namhyung Kim
2012-01-12 1:37 ` Tejun Heo
2012-01-12 1:40 ` Namhyung Kim
2012-01-12 1:41 ` Namhyung Kim
2012-01-12 1:44 ` Tejun Heo
2012-01-12 2:19 ` Namhyung Kim
2012-01-12 2:24 ` Tejun Heo
2012-01-11 18:08 ` Tejun Heo
2012-01-11 14:40 ` [RFC PATCHSET take#2] ioblame: " Frederic Weisbecker
2012-01-11 17:02 ` Tejun Heo [this message]
2012-01-11 22:45 ` David Sharp
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120111170252.GD26832@google.com \
--to=tj@kernel.org \
--cc=axboe@kernel.dk \
--cc=ctalbott@google.com \
--cc=dhsharp@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=namhyung@gmail.com \
--cc=rostedt@goodmis.org \
--cc=slavapestov@google.com \
--cc=teravest@google.com \
--cc=winget@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox