All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tejun Heo <tj@kernel.org>
To: rjw@sisk.pl, paul@paulmenage.org, linux-kernel@vger.kernel.org,
	linux-pm@vger.kernel.org
Cc: arnd@arndb.de, oleg@redhat.com, matthltc@us.ibm.com
Subject: [PATCHSET pm] freezer: fix various bugs and simplify implementation, take#2
Date: Mon, 31 Oct 2011 12:05:11 -0700	[thread overview]
Message-ID: <1320087928-32307-1-git-send-email-tj@kernel.org> (raw)

Hello,

This is the second take of this patchset.  The first take[F] was
pulled into pm-next but got lost during the korg incident.  It's
rebased on top of the current linus/master and while at it I tried to
address issues which were raised after the patchset got pulled in.

* Setting of PF_NOFREEZE moved to after TASK_DEAD setting as suggested
  by Oleg.

* Bug in freezer_change_state() which incorrectly set the state
  directly to CGROUP_FROZEN instead of CGROUP_FREEZING fixed.

* "freezer: fix set_freezable[_with_signal]() race" patch splitted
  into two parts and resequenced to satisfy ordering dependency
  between fixes.

* Added missing Acked-by's and made other minor updates.

Patchset description follows.

The freezer code has developed a number of convolutions and bugs.
It's now using five per-task flags - TIF_FREEZE, PF_FREEZING,
PF_NOFREEZE, PF_FROZEN, PF_FREEZER_SKIP and PF_FREEZER_NOSIG, and at
the same time has quite a few race conditions.  PF_NOFREEZE
modifications can race against PM freezer, cgroup_freezer can race
against PM freezer, and so on.

This patchset tries to simplify the freezer implementation and fix the
various bugs.  It makes the synchronization more straight forward and
replaces TIF_FREEZE with directly checking freeze conditions which are
in effect, which makes the whole thing much saner.

This patchset removes TIF_FREEZE and PF_FREEZING.  Also,
PF_FREEZER_SKIP users are planned to move away from the flag and will
be removed.  It contains the following 17 patches.

 0001-freezer-fix-current-state-restoration-race-in-refrig.patch
 0002-freezer-don-t-unnecessarily-set-PF_NOFREEZE-explicit.patch
 0003-freezer-unexport-refrigerator-and-update-try_to_free.patch
 0004-freezer-implement-and-use-kthread_freezable_should_s.patch
 0005-freezer-rename-thaw_process-to-__thaw_task-and-simpl.patch
 0006-freezer-remove-racy-clear_freeze_flag-and-set-PF_NOF.patch
 0007-freezer-don-t-distinguish-nosig-tasks-on-thaw.patch
 0008-freezer-use-dedicated-lock-instead-of-task_lock-memo.patch
 0009-freezer-make-freezing-indicate-freeze-condition-in-e.patch
 0010-freezer-test-freezable-conditions-while-holding-free.patch
 0011-freezer-kill-PF_FREEZING.patch
 0012-freezer-clean-up-freeze_processes-failure-path.patch
 0013-cgroup_freezer-prepare-for-removal-of-TIF_FREEZE.patch
 0014-freezer-make-freezing-test-freeze-conditions-in-effe.patch
 0015-freezer-remove-now-unused-TIF_FREEZE.patch
 0016-freezer-remove-should_send_signal-and-update-frozen.patch
 0017-freezer-fix-set_freezable-_with_signal-race.patch

This patchset is on top of the current linus/master (839d881074 "Merge
branch 'i2c-for-linus' of ...") and also available in the following
git branch.

 git://git.kernel.org/pub/scm/linux/kernel/git/tj/misc.git pm-freezer

At this point, this definitely is for the next merge window.  Diffstat
follows.

 Documentation/power/freezing-of-tasks.txt |   14 +-
 arch/alpha/include/asm/thread_info.h      |    2 
 arch/arm/include/asm/thread_info.h        |    2 
 arch/avr32/include/asm/thread_info.h      |    2 
 arch/blackfin/include/asm/thread_info.h   |    2 
 arch/cris/include/asm/thread_info.h       |    2 
 arch/frv/include/asm/thread_info.h        |    2 
 arch/h8300/include/asm/thread_info.h      |    2 
 arch/ia64/include/asm/thread_info.h       |    2 
 arch/m32r/include/asm/thread_info.h       |    2 
 arch/m68k/include/asm/thread_info.h       |    1 
 arch/microblaze/include/asm/thread_info.h |    2 
 arch/mips/include/asm/thread_info.h       |    2 
 arch/mn10300/include/asm/thread_info.h    |    2 
 arch/parisc/include/asm/thread_info.h     |    2 
 arch/powerpc/include/asm/thread_info.h    |    2 
 arch/s390/include/asm/thread_info.h       |    2 
 arch/sh/include/asm/thread_info.h         |    2 
 arch/sparc/include/asm/thread_info_32.h   |    2 
 arch/sparc/include/asm/thread_info_64.h   |    2 
 arch/um/include/asm/thread_info.h         |    2 
 arch/unicore32/include/asm/thread_info.h  |    2 
 arch/x86/include/asm/thread_info.h        |    2 
 arch/xtensa/include/asm/thread_info.h     |    2 
 drivers/bluetooth/btmrvl_main.c           |    2 
 drivers/mfd/twl4030-irq.c                 |    3 
 drivers/mfd/twl6030-irq.c                 |    2 
 drivers/net/irda/stir4200.c               |    2 
 drivers/platform/x86/thinkpad_acpi.c      |   15 --
 drivers/staging/rts_pstor/rtsx.c          |    2 
 fs/btrfs/async-thread.c                   |    2 
 fs/btrfs/disk-io.c                        |    8 -
 fs/ext4/super.c                           |    3 
 fs/fs-writeback.c                         |    4 
 fs/gfs2/log.c                             |    4 
 fs/gfs2/quota.c                           |    4 
 fs/jbd/journal.c                          |    2 
 fs/jbd2/journal.c                         |    2 
 fs/jfs/jfs_logmgr.c                       |    2 
 fs/jfs/jfs_txnmgr.c                       |    4 
 fs/nilfs2/segment.c                       |    2 
 fs/xfs/xfs_buf.c                          |    2 
 include/linux/freezer.h                   |   78 +++++-------
 include/linux/kthread.h                   |    1 
 include/linux/sched.h                     |    3 
 kernel/cgroup_freezer.c                   |   53 +++-----
 kernel/exit.c                             |    3 
 kernel/fork.c                             |    1 
 kernel/freezer.c                          |  182 +++++++++++++++++-------------
 kernel/kthread.c                          |   25 ++++
 kernel/power/hibernate.c                  |   15 --
 kernel/power/process.c                    |   67 +++--------
 kernel/power/user.c                       |    4 
 mm/backing-dev.c                          |    8 -
 54 files changed, 248 insertions(+), 316 deletions(-)

Thank you.

--
tejun

[F] http://thread.gmane.org/gmane.linux.kernel/1181594

             reply	other threads:[~2011-10-31 19:05 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-31 19:05 Tejun Heo [this message]
2011-10-31 19:05 ` [PATCH 01/17] freezer: fix current->state restoration race in refrigerator() Tejun Heo
2011-10-31 19:05 ` [PATCH 02/17] freezer: don't unnecessarily set PF_NOFREEZE explicitly Tejun Heo
2011-10-31 19:05 ` [PATCH 03/17] freezer: unexport refrigerator() and update try_to_freeze() slightly Tejun Heo
2011-10-31 19:05 ` [PATCH 04/17] freezer: implement and use kthread_freezable_should_stop() Tejun Heo
2011-10-31 19:05 ` [PATCH 05/17] freezer: rename thaw_process() to __thaw_task() and simplify the implementation Tejun Heo
2011-11-06 12:04   ` Srivatsa S. Bhat
2011-11-06 16:51     ` Tejun Heo
2011-11-06 17:10       ` Srivatsa S. Bhat
2011-10-31 19:05 ` [PATCH 06/17] freezer: remove racy clear_freeze_flag() and set PF_NOFREEZE on dead tasks Tejun Heo
2011-10-31 19:05 ` [PATCH 07/17] freezer: don't distinguish nosig tasks on thaw Tejun Heo
2011-10-31 19:05 ` [PATCH 08/17] freezer: use dedicated lock instead of task_lock() + memory barrier Tejun Heo
2011-10-31 19:05 ` [PATCH 09/17] freezer: make freezing indicate freeze condition in effect Tejun Heo
2011-10-31 19:05 ` [PATCH 10/17] freezer: test freezable conditions while holding freezer_lock Tejun Heo
2011-10-31 19:05 ` [PATCH 11/17] freezer: kill PF_FREEZING Tejun Heo
2011-10-31 19:05 ` [PATCH 12/17] freezer: clean up freeze_processes() failure path Tejun Heo
2011-11-03 19:09   ` Srivatsa S. Bhat
2011-11-03 22:25   ` [PATCH UPDATED " Tejun Heo
2011-10-31 19:05 ` [PATCH 13/17] cgroup_freezer: prepare for removal of TIF_FREEZE Tejun Heo
2011-10-31 22:33   ` [PATCH UPDATED " Tejun Heo
2011-10-31 19:05 ` [PATCH 14/17] freezer: make freezing() test freeze conditions in effect instead " Tejun Heo
2011-10-31 22:34   ` [PATCH UPDATED " Tejun Heo
2011-10-31 19:05 ` [PATCH 15/17] freezer: remove now unused TIF_FREEZE Tejun Heo
2011-10-31 19:05 ` [PATCH 16/17] freezer: remove should_send_signal() and update frozen() Tejun Heo
2011-10-31 19:05 ` [PATCH 17/17] freezer: fix set_freezable[_with_signal]() race Tejun Heo
2011-10-31 22:34 ` [PATCH 18/17] freezer: restructure __refrigerator() Tejun Heo
2011-10-31 22:35 ` [PATCH 19/17] freezer: use lock_task_sighand() in fake_signal_wake_up() Tejun Heo
2011-10-31 22:35 ` [PATCH UPDATED 20/17] freezer: remove unused @sig_only from freeze_task() Tejun Heo
2011-10-31 22:40 ` [PATCHSET UPDATED pm] freezer: fix various bugs and simplify implementation, take#2 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=1320087928-32307-1-git-send-email-tj@kernel.org \
    --to=tj@kernel.org \
    --cc=arnd@arndb.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=matthltc@us.ibm.com \
    --cc=oleg@redhat.com \
    --cc=paul@paulmenage.org \
    --cc=rjw@sisk.pl \
    /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.