From: Jan Kara <jack@suse.cz>
To: Tejun Heo <tj@kernel.org>
Cc: Jens Axboe <axboe@kernel.dk>,
linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
Jan Kara <jack@suse.cz>
Subject: Re: [PATCH block/for-next] writeback: add tracepoints for cgroup foreign writebacks
Date: Fri, 30 Aug 2019 17:40:23 +0200 [thread overview]
Message-ID: <20190830154023.GC25069@quack2.suse.cz> (raw)
In-Reply-To: <20190829224701.GX2263813@devbig004.ftw2.facebook.com>
On Thu 29-08-19 15:47:19, Tejun Heo wrote:
> cgroup foreign inode handling has quite a bit of heuristics and
> internal states which sometimes makes it difficult to understand
> what's going on. Add tracepoints to improve visibility.
>
> Signed-off-by: Tejun Heo <tj@kernel.org>
...
> +TRACE_EVENT(track_foreign_dirty,
> +
> + TP_PROTO(struct page *page, struct bdi_writeback *wb),
> +
> + TP_ARGS(page, wb),
> +
> + TP_STRUCT__entry(
> + __array(char, name, 32)
> + __field(u64, bdi_id)
> + __field(unsigned long, ino)
> + __field(unsigned int, memcg_id)
> + __field(unsigned int, cgroup_ino)
> + __field(unsigned int, page_cgroup_ino)
> + ),
> +
> + TP_fast_assign(
> + strncpy(__entry->name, dev_name(wb->bdi->dev), 32);
> + __entry->bdi_id = wb->bdi->id;
> + __entry->ino = page->mapping->host->i_ino;
> + __entry->memcg_id = wb->memcg_css->id;
> + __entry->cgroup_ino = __trace_wb_assign_cgroup(wb);
> + __entry->page_cgroup_ino = page->mem_cgroup->css.cgroup->kn->id.ino;
> + ),
Are the page dereferences above safe? I suppose lock_page_memcg() protects
the page->mem_cgroup->css.cgroup->kn->id dereference? But page->mapping
does not seem to be protected by page lock?
Honza
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
next prev parent reply other threads:[~2019-08-30 15:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-29 22:47 [PATCH block/for-next] writeback: add tracepoints for cgroup foreign writebacks Tejun Heo
2019-08-30 13:43 ` Jens Axboe
2019-08-30 15:40 ` Jan Kara [this message]
2019-08-30 15:49 ` Tejun Heo
2019-08-30 16:42 ` Jan Kara
2019-08-30 17:09 ` Tejun Heo
2019-09-02 8:38 ` Jan Kara
2019-08-30 15:51 ` Tejun Heo
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=20190830154023.GC25069@quack2.suse.cz \
--to=jack@suse.cz \
--cc=axboe@kernel.dk \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tj@kernel.org \
/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