From: Ingo Molnar <mingo@kernel.org>
To: Byungchul Park <byungchul.park@lge.com>
Cc: willy@linux.intel.com, akpm@linux-foundation.org,
linux-kernel@vger.kernel.org, akinobu.mita@gmail.com,
jack@suse.cz, sergey.senozhatsky.work@gmail.com,
peter@hurleysoftware.com,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH v2] lock/semaphore: Avoid an unnecessary deadlock within up()
Date: Wed, 3 Feb 2016 08:28:48 +0100 [thread overview]
Message-ID: <20160203072847.GA32026@gmail.com> (raw)
In-Reply-To: <1454479377-24434-1-git-send-email-byungchul.park@lge.com>
* Byungchul Park <byungchul.park@lge.com> wrote:
> void up(struct semaphore *sem)
> {
> unsigned long flags;
> + struct task_struct *p = NULL;
>
> raw_spin_lock_irqsave(&sem->lock, flags);
> if (likely(list_empty(&sem->wait_list)))
> sem->count++;
> else
> - __up(sem);
> + p = __up(sem);
> raw_spin_unlock_irqrestore(&sem->lock, flags);
> +
> + /*
> + * wake_up_process() needs not to be protected by a spinlock.
> + * Thus move it from the protected region to here. What is
> + * worse, this unnecessary protection can cause a deadlock by
> + * acquiring the same sem->lock within wake_up_process().
> + */
> + if (unlikely(p))
> + wake_up_process(p);
So I'm not sure this is completely race free, for cases where a semaphore is
attached to a task and is managed/destroyed on task exit.
Since we don't have a guaranteed reference to 'p' here, the task might wake up
(via a signal) and exit (and its task struct might be freed and the semaphore
might be freed), after we unlocked the semaphore but before we wake the task up.
So why not move printk away from semaphores? Semaphores are classical constructs
that have legacies and are somewhat non-obvious to use, compared to modern,
simpler locking primitives. I'd not touch their implementation, unless we are
absolutely sure this is a safe optimization.
Thanks,
Ingo
next prev parent reply other threads:[~2016-02-03 7:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-03 6:02 [PATCH v2] lock/semaphore: Avoid an unnecessary deadlock within up() Byungchul Park
2016-02-03 7:28 ` Ingo Molnar [this message]
2016-02-03 7:42 ` Sergey Senozhatsky
2016-02-03 8:04 ` Ingo Molnar
2016-02-03 8:28 ` Sergey Senozhatsky
2016-02-03 9:02 ` Ingo Molnar
2016-02-03 8:12 ` Byungchul Park
2016-02-03 8:30 ` Sergey Senozhatsky
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=20160203072847.GA32026@gmail.com \
--to=mingo@kernel.org \
--cc=akinobu.mita@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=byungchul.park@lge.com \
--cc=jack@suse.cz \
--cc=linux-kernel@vger.kernel.org \
--cc=peter@hurleysoftware.com \
--cc=sergey.senozhatsky.work@gmail.com \
--cc=torvalds@linux-foundation.org \
--cc=willy@linux.intel.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