From: Tejun Heo <tj@kernel.org>
To: Daniel Bristot de Oliveira <bristot@redhat.com>
Cc: linux-kernel@vger.kernel.org, Rik van Riel <riel@redhat.com>,
"Luis Claudio R. Goncalves" <lgoncalv@redhat.com>,
Li Zefan <lizefan@huawei.com>,
Johannes Weiner <hannes@cmpxchg.org>,
Juri Lelli <juri.lelli@arm.com>,
cgroups@vger.kernel.org
Subject: Re: [PATCH v2] cgroup: disable irqs while holding css_set_lock
Date: Tue, 7 Jun 2016 14:30:08 -0500 [thread overview]
Message-ID: <20160607193008.GA31708@htj.duckdns.org> (raw)
In-Reply-To: <1465325475-30593-1-git-send-email-bristot@redhat.com>
On Tue, Jun 07, 2016 at 03:51:15PM -0300, Daniel Bristot de Oliveira wrote:
> While testing the deadline scheduler + cgroup setup I hit this
> warning.
>
> [ 132.612935] ------------[ cut here ]------------
> [ 132.612951] WARNING: CPU: 5 PID: 0 at kernel/softirq.c:150 __local_bh_enable_ip+0x6b/0x80
> [ 132.612952] Modules linked in: (a ton of modules...)
> [ 132.612981] CPU: 5 PID: 0 Comm: swapper/5 Not tainted 4.7.0-rc2 #2
> [ 132.612981] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.8.2-20150714_191134- 04/01/2014
> [ 132.612982] 0000000000000086 45c8bb5effdd088b ffff88013fd43da0 ffffffff813d229e
> [ 132.612984] 0000000000000000 0000000000000000 ffff88013fd43de0 ffffffff810a652b
> [ 132.612985] 00000096811387b5 0000000000000200 ffff8800bab29d80 ffff880034c54c00
> [ 132.612986] Call Trace:
> [ 132.612987] <IRQ> [<ffffffff813d229e>] dump_stack+0x63/0x85
> [ 132.612994] [<ffffffff810a652b>] __warn+0xcb/0xf0
> [ 132.612997] [<ffffffff810e76a0>] ? push_dl_task.part.32+0x170/0x170
> [ 132.612999] [<ffffffff810a665d>] warn_slowpath_null+0x1d/0x20
> [ 132.613000] [<ffffffff810aba5b>] __local_bh_enable_ip+0x6b/0x80
> [ 132.613008] [<ffffffff817d6c8a>] _raw_write_unlock_bh+0x1a/0x20
> [ 132.613010] [<ffffffff817d6c9e>] _raw_spin_unlock_bh+0xe/0x10
> [ 132.613015] [<ffffffff811388ac>] put_css_set+0x5c/0x60
> [ 132.613016] [<ffffffff8113dc7f>] cgroup_free+0x7f/0xa0
> [ 132.613017] [<ffffffff810a3912>] __put_task_struct+0x42/0x140
> [ 132.613018] [<ffffffff810e776a>] dl_task_timer+0xca/0x250
> [ 132.613027] [<ffffffff810e76a0>] ? push_dl_task.part.32+0x170/0x170
> [ 132.613030] [<ffffffff8111371e>] __hrtimer_run_queues+0xee/0x270
> [ 132.613031] [<ffffffff81113ec8>] hrtimer_interrupt+0xa8/0x190
> [ 132.613034] [<ffffffff81051a58>] local_apic_timer_interrupt+0x38/0x60
> [ 132.613035] [<ffffffff817d9b0d>] smp_apic_timer_interrupt+0x3d/0x50
> [ 132.613037] [<ffffffff817d7c5c>] apic_timer_interrupt+0x8c/0xa0
Is this something in mainline? This forces all task free path to be
irq-safe, which *could* be fine but it's weird to make cgroup free
path irq-safe for something which isn't in mainline.
Thanks.
--
tejun
next prev parent reply other threads:[~2016-06-07 19:30 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-07 18:51 [PATCH v2] cgroup: disable irqs while holding css_set_lock Daniel Bristot de Oliveira
2016-06-07 19:30 ` Tejun Heo [this message]
2016-06-07 20:05 ` Daniel Bristot de Oliveira
[not found] ` <6f15f27f-3757-5413-4292-1386e95bc278-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-06-16 21:48 ` Daniel Bristot de Oliveira
[not found] ` <38469b61-7cc5-5fec-4de3-0e9a616dfe95-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-06-16 22:03 ` Tejun Heo
2016-06-16 22:14 ` Tejun Heo
[not found] ` <20160616221434.GI3262-qYNAdHglDFBN0TnZuCh8vA@public.gmane.org>
2016-06-17 0:12 ` Daniel Bristot de Oliveira
2016-06-17 5:36 ` Tejun Heo
2016-06-17 19:59 ` Daniel Bristot de Oliveira
[not found] ` <4353aea6-c1e9-80d2-be44-75340d0aaf01-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-06-22 20:00 ` Daniel Bristot de Oliveira
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=20160607193008.GA31708@htj.duckdns.org \
--to=tj@kernel.org \
--cc=bristot@redhat.com \
--cc=cgroups@vger.kernel.org \
--cc=hannes@cmpxchg.org \
--cc=juri.lelli@arm.com \
--cc=lgoncalv@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=riel@redhat.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