All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Zijlstra <peterz@infradead.org>
To: lkp@lists.01.org
Subject: Re: [rfcomm_run] WARNING: CPU: 1 PID: 79 at kernel/sched/core.c:7156 __might_sleep()
Date: Thu, 02 Oct 2014 21:57:27 +0200	[thread overview]
Message-ID: <20141002195727.GD10583@worktop.programming.kicks-ass.net> (raw)
In-Reply-To: <20141002191114.GA30606@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1497 bytes --]

On Thu, Oct 02, 2014 at 09:11:14PM +0200, Oleg Nesterov wrote:
> On 10/02, Peter Zijlstra wrote:
> >
> > On Thu, Oct 02, 2014 at 03:52:50PM +0200, Peter Zijlstra wrote:
> > > > If yes, then wakeups from signals don't work either, right?
> > >
> > > Its a kthread, there should not be any signals.
> >
> > That said, in the tty patch we do appear to have this problem.
> >
> > Oleg, do we want something like the below on top to make that work
> > again?
> >
> > ---
> > --- a/kernel/sched/wait.c
> > +++ b/kernel/sched/wait.c
> > @@ -326,8 +326,10 @@ long wait_woken(wait_queue_t *wait, unsi
> >  	 * woken_wake_function() such that if we observe WQ_FLAG_WOKEN we must
> >  	 * also observe all state before the wakeup.
> >  	 */
> > -	if (!(wait->flags & WQ_FLAG_WOKEN))
> > -		timeout = schedule_timeout(timeout);
> > +	if (!(wait->flags & WQ_FLAG_WOKEN)) {
> > +		if (___wait_is_interruptible(mode) && !signal_pending_state(mode, current))
> > +			timeout = schedule_timeout(timeout);
> > +	}
> >  	__set_current_state(TASK_RUNNING);
> 
> I am a bit confused... but for what?
> 
> schedule() won't sleep if signal_pending_state(mode) anyway, so we
> do not need this correctness-wise. And the caller needs to check
> signal_pending() anyway.

Urgh, I always forget how all that signal stuff works. Yes you're right,
we check that right in __schedule().

I'll just make all what I did go away and we'll keep it simple like it
was. Sorry for the confusion.

WARNING: multiple messages have this Message-ID (diff)
From: Peter Zijlstra <peterz@infradead.org>
To: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Hurley <peter@hurleysoftware.com>,
	Fengguang Wu <fengguang.wu@intel.com>,
	Jet Chen <jet.chen@intel.com>, Su Tao <tao.su@intel.com>,
	Yuanhan Liu <yuanhan.liu@intel.com>, LKP <lkp@01.org>,
	linux-kernel@vger.kernel.org,
	Marcel Holtmann <marcel@holtmann.org>
Subject: Re: [rfcomm_run] WARNING: CPU: 1 PID: 79 at kernel/sched/core.c:7156 __might_sleep()
Date: Thu, 2 Oct 2014 21:57:27 +0200	[thread overview]
Message-ID: <20141002195727.GD10583@worktop.programming.kicks-ass.net> (raw)
In-Reply-To: <20141002191114.GA30606@redhat.com>

On Thu, Oct 02, 2014 at 09:11:14PM +0200, Oleg Nesterov wrote:
> On 10/02, Peter Zijlstra wrote:
> >
> > On Thu, Oct 02, 2014 at 03:52:50PM +0200, Peter Zijlstra wrote:
> > > > If yes, then wakeups from signals don't work either, right?
> > >
> > > Its a kthread, there should not be any signals.
> >
> > That said, in the tty patch we do appear to have this problem.
> >
> > Oleg, do we want something like the below on top to make that work
> > again?
> >
> > ---
> > --- a/kernel/sched/wait.c
> > +++ b/kernel/sched/wait.c
> > @@ -326,8 +326,10 @@ long wait_woken(wait_queue_t *wait, unsi
> >  	 * woken_wake_function() such that if we observe WQ_FLAG_WOKEN we must
> >  	 * also observe all state before the wakeup.
> >  	 */
> > -	if (!(wait->flags & WQ_FLAG_WOKEN))
> > -		timeout = schedule_timeout(timeout);
> > +	if (!(wait->flags & WQ_FLAG_WOKEN)) {
> > +		if (___wait_is_interruptible(mode) && !signal_pending_state(mode, current))
> > +			timeout = schedule_timeout(timeout);
> > +	}
> >  	__set_current_state(TASK_RUNNING);
> 
> I am a bit confused... but for what?
> 
> schedule() won't sleep if signal_pending_state(mode) anyway, so we
> do not need this correctness-wise. And the caller needs to check
> signal_pending() anyway.

Urgh, I always forget how all that signal stuff works. Yes you're right,
we check that right in __schedule().

I'll just make all what I did go away and we'll keep it simple like it
was. Sorry for the confusion.

  parent reply	other threads:[~2014-10-02 19:57 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-30  8:02 [rfcomm_run] WARNING: CPU: 1 PID: 79 at kernel/sched/core.c:7156 __might_sleep() Fengguang Wu
2014-10-02 11:09 ` Peter Zijlstra
2014-10-02 11:09   ` Peter Zijlstra
2014-10-02 12:31   ` Peter Zijlstra
2014-10-02 12:31     ` Peter Zijlstra
2014-10-02 12:38     ` Peter Hurley
2014-10-02 12:38       ` Peter Hurley
2014-10-02 12:54       ` Peter Zijlstra
2014-10-02 12:54         ` Peter Zijlstra
2014-10-02 13:05         ` Peter Hurley
2014-10-02 13:05           ` Peter Hurley
2014-10-02 13:41           ` Peter Zijlstra
2014-10-02 13:41             ` Peter Zijlstra
2014-10-02 12:42     ` Peter Zijlstra
2014-10-02 12:42       ` Peter Zijlstra
2014-10-02 13:49       ` Peter Hurley
2014-10-02 13:49         ` Peter Hurley
2014-10-02 13:52         ` Peter Zijlstra
2014-10-02 13:52           ` Peter Zijlstra
2014-10-02 13:58           ` Peter Zijlstra
2014-10-02 13:58             ` Peter Zijlstra
2014-10-02 14:16             ` Peter Hurley
2014-10-02 14:16               ` Peter Hurley
2014-10-02 16:57               ` Peter Zijlstra
2014-10-02 16:57                 ` Peter Zijlstra
2014-10-02 19:18                 ` Oleg Nesterov
2014-10-02 19:18                   ` Oleg Nesterov
2014-10-02 19:11             ` Oleg Nesterov
2014-10-02 19:11               ` Oleg Nesterov
2014-10-02 19:49               ` Peter Hurley
2014-10-02 19:49                 ` Peter Hurley
2014-10-02 19:57               ` Peter Zijlstra [this message]
2014-10-02 19:57                 ` Peter Zijlstra
2014-10-02 20:10       ` Oleg Nesterov
2014-10-02 20:10         ` Oleg Nesterov
2014-10-03 11:50         ` Peter Zijlstra
2014-10-03 11:50           ` Peter Zijlstra
2014-10-03 17:56           ` Oleg Nesterov
2014-10-03 17:56             ` Oleg Nesterov
2014-10-03 19:30             ` Oleg Nesterov
2014-10-03 19:30               ` Oleg Nesterov
2014-10-04  8:42               ` Peter Zijlstra
2014-10-04  8:42                 ` Peter Zijlstra
2014-10-06  0:25                 ` Oleg Nesterov
2014-10-06  0:25                   ` Oleg Nesterov
2014-10-06  9:19                   ` Peter Zijlstra
2014-10-06  9:19                     ` Peter Zijlstra
2014-10-06 10:59                     ` Paul E. McKenney
2014-10-06 10:59                       ` Paul E. McKenney
2014-10-06 16:21                     ` Oleg Nesterov
2014-10-06 16:24                       ` Oleg Nesterov
2014-10-04  8:44             ` Peter Zijlstra
2014-10-04  8:44               ` Peter Zijlstra

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=20141002195727.GD10583@worktop.programming.kicks-ass.net \
    --to=peterz@infradead.org \
    --cc=lkp@lists.01.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.