~ubuntu-branches/ubuntu/raring/linux-ti-omap4/raring-proposed

« back to all changes in this revision

Viewing changes to Documentation/power/runtime_pm.txt

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Ubuntu: 3.5.0-25.38
  • Date: 2013-02-20 22:03:31 UTC
  • mfrom: (74.1.1 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20130220220331-0ea4l33x3cr61nch
Tags: 3.5.0-220.28
* Release Tracking Bug
  - LP: #1130311

[ Paolo Pisati ]

* rebased on Ubuntu-3.5.0-25.38

[ Ubuntu: 3.5.0-25.38 ]

* Release Tracking Bug
  - LP: #1129472
* ptrace: introduce signal_wake_up_state() and ptrace_signal_wake_up()
  - LP: #1119885, #1129192
  - CVE-2013-0871
* ptrace: ensure arch_ptrace/ptrace_request can never race with SIGKILL
  - LP: #1119885, #1129192
  - CVE-2013-0871
* wake_up_process() should be never used to wakeup a TASK_STOPPED/TRACED
  task
  - LP: #1119885, #1129192
  - CVE-2013-0871

Show diffs side-by-side

added added

removed removed

Lines of Context:
642
642
  * During system suspend it calls pm_runtime_get_noresume() and
643
643
    pm_runtime_barrier() for every device right before executing the
644
644
    subsystem-level .suspend() callback for it.  In addition to that it calls
645
 
    pm_runtime_disable() for every device right after executing the
646
 
    subsystem-level .suspend() callback for it.
 
645
    __pm_runtime_disable() with 'false' as the second argument for every device
 
646
    right before executing the subsystem-level .suspend_late() callback for it.
647
647
 
648
648
  * During system resume it calls pm_runtime_enable() and pm_runtime_put_sync()
649
 
    for every device right before and right after executing the subsystem-level
650
 
    .resume() callback for it, respectively.
 
649
    for every device right after executing the subsystem-level .resume_early()
 
650
    callback and right after executing the subsystem-level .resume() callback
 
651
    for it, respectively.
651
652
 
652
653
7. Generic subsystem callbacks
653
654