* What's in suspend-2.6.git
@ 2009-09-12 23:09 Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2009-09-12 23:09 UTC (permalink / raw)
To: pm list; +Cc: LKML, Paul Mundt
Hi,
This is a summary of the changes queued on the #linux-next branch
of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git
They are going to be pushed to Linus in the next couple of days, since I know
Paul is waiting for some of them to appear upstream.
PM developers, please speak up if there's anything obviously wrong or missing.
Albin Tonnerre (1):
PM: Add convenience macro to make switching to dev_pm_ops less error-prone
Dan Williams (1):
at_hdmac: Rework suspend_late()/resume_early()
Dmitry Torokhov (1):
Driver Core: Make PM operations a const pointer
Frans Pop (2):
floppy: Switch driver to dev_pm_ops
hp-wmi: Switch driver to dev_pm_ops
Gerald Schaefer (1):
PM / Hibernate / Memory hotplug: Always use for_each_populated_zone()
Magnus Damm (9):
Driver Core: Add platform device arch data V3
ARM: Rework omap suspend_late()/resume_early()
DMA: Rework dw_dmac suspend_late()/resume_early()
DMA: Rework txx9dmac suspend_late()/resume_early()
I2C: Rework i2c-pxa suspend_late()/resume_early()
I2C: Rework i2c-s3c2410 suspend_late()/resume() V2
USB: Rework musb suspend()/resume_early()
PM: Remove platform device suspend_late()/resume_early() V2
PM: Run-time PM platform device bus support
Rafael J. Wysocki (6):
PM: Introduce core framework for run-time PM of I/O devices (rev. 17)
PM/Hibernate: Rework shrinking of memory
PM/Hibernate: Do not release preallocated memory unnecessarily (rev. 2)
PM/Hibernate: Do not try to allocate too much memory too hard (rev. 2)
PM / irq: Fix comment describing suspend_device_irqs()
PM: Update kerneldoc comments in drivers/base/power/main.c
Thadeu Lima de Souza Cascardo (1):
PM: Fix typo in label name s/Platofrm_finish/Platform_finish/
Wu Fengguang (1):
PM: Trivial fixes
Xiaotian Feng (1):
PM: Reset transition_started at dpm_resume_noirq
---------------
Documentation/power/runtime_pm.txt | 378 +++++++++++++
arch/arm/include/asm/device.h | 3 +
arch/arm/plat-omap/debug-leds.c | 11 +-
arch/arm/plat-omap/gpio.c | 14 +-
arch/ia64/include/asm/device.h | 3 +
arch/microblaze/include/asm/device.h | 3 +
arch/powerpc/include/asm/device.h | 3 +
arch/sparc/include/asm/device.h | 3 +
arch/x86/include/asm/device.h | 3 +
drivers/base/dd.c | 11 +
drivers/base/platform.c | 84 ++--
drivers/base/power/Makefile | 1 +
drivers/base/power/main.c | 199 ++++---
drivers/base/power/power.h | 31 +-
drivers/base/power/runtime.c | 1011 ++++++++++++++++++++++++++++++++++
drivers/block/floppy.c | 9 +-
drivers/dma/at_hdmac.c | 19 +-
drivers/dma/dw_dmac.c | 15 +-
drivers/dma/txx9dmac.c | 15 +-
drivers/i2c/busses/i2c-pxa.c | 25 +-
drivers/i2c/busses/i2c-s3c2410.c | 25 +-
drivers/pci/pci-driver.c | 16 +-
drivers/platform/x86/hp-wmi.c | 15 +-
drivers/usb/musb/musb_core.c | 18 +-
include/asm-generic/device.h | 3 +
include/linux/device.h | 9 +-
include/linux/platform_device.h | 5 +-
include/linux/pm.h | 115 ++++-
include/linux/pm_runtime.h | 114 ++++
kernel/irq/pm.c | 8 +-
kernel/power/Kconfig | 14 +
kernel/power/hibernate.c | 21 +-
kernel/power/main.c | 17 +
kernel/power/power.h | 2 +-
kernel/power/snapshot.c | 412 +++++++++++----
35 files changed, 2310 insertions(+), 325 deletions(-)
Thanks,
Rafael
^ permalink raw reply [flat|nested] 2+ messages in thread
* What's in suspend-2.6.git
@ 2009-12-03 21:31 Rafael J. Wysocki
0 siblings, 0 replies; 2+ messages in thread
From: Rafael J. Wysocki @ 2009-12-03 21:31 UTC (permalink / raw)
To: pm list; +Cc: LKML, ACPI Devel Maling List
Hi,
This is a summary of the changes queued on the #linux-next branch
of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git
They are going to be pushed to Linus in the next couple of days.
PM developers, please speak up if there's anything obviously wrong or missing.
Alan Stern (2):
PM / Runtime: Export the PM runtime workqueue
PM / Runtime: Use deferred_resume flag in pm_request_resume
Jaswinder Singh Rajput (1):
PM: Fix kernel-doc notation
Jiri Slaby (1):
PM / Hibernate: Swap, use KERN_CONT
Nigel Cunningham (2):
PM / Hibernate: Move swap functions to kernel/power/swap.c.
PM / Hibernate: Shift remaining code from swsusp.c to hibernate.c
Rafael J. Wysocki (15):
PM: Introduce PM links framework
PM: Asynchronous resume of devices
PM: Asynchronous suspend of devices
PM: Allow PCI devices to suspend/resume asynchronously
PM: Allow ACPI devices to suspend/resume asynchronously
PM: Add a switch for disabling/enabling asynchronous suspend/resume
PM: Measure device suspend and resume times
PM: Add facility for advanced testing of async suspend/resume
PM: Measure suspend and resume times for individual devices
PM: Allow serio input devices to suspend/resume asynchronously
PM / Runtime: Fix lockdep warning in __pm_runtime_set_status()
PM / Runtime: Ensure timer_expires is nonzero in pm_schedule_suspend()
PM / Runtime: Make documentation of runtime_idle() agree with the code
PM / Runtime: Remove unnecessary braces in __pm_runtime_set_status()
PM: Add flag for devices capable of generating run-time wake-up events
Stephen Rothwell (1):
PM / Suspend: Using TASK_ macros requires sched.h
Tejun Heo (1):
PM / freezer: Don't get over-anxious while waiting
---------------
Documentation/power/runtime_pm.txt | 12 +-
drivers/acpi/glue.c | 3 +
drivers/acpi/scan.c | 1 +
drivers/base/core.c | 4 +
drivers/base/power/Makefile | 2 +-
drivers/base/power/common.c | 283 +++++++++++++++
drivers/base/power/main.c | 677 +++++++++++++++++++++++++++++++++---
drivers/base/power/power.h | 42 ++-
drivers/base/power/runtime.c | 27 +-
drivers/base/power/sysfs.c | 47 +++
drivers/input/serio/serio.c | 1 +
drivers/pci/pci.c | 1 +
drivers/pci/pcie/portdrv_core.c | 1 +
include/linux/device.h | 11 +
include/linux/pm.h | 21 +-
include/linux/pm_link.h | 30 ++
include/linux/pm_runtime.h | 12 +
include/linux/resume-trace.h | 7 +
kernel/power/Kconfig | 14 +
kernel/power/Makefile | 2 +-
kernel/power/hibernate.c | 26 ++
kernel/power/main.c | 32 ++-
kernel/power/process.c | 14 +-
kernel/power/swap.c | 107 ++++++-
kernel/power/swsusp.c | 188 ----------
25 files changed, 1281 insertions(+), 284 deletions(-)
Thanks,
Rafael
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-12-03 21:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-12 23:09 What's in suspend-2.6.git Rafael J. Wysocki
2009-12-03 21:31 Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®