linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] More power management updates for v5.7-rc1
@ 2020-04-10  9:49 Rafael J. Wysocki
  2020-04-10 17:30 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2020-04-10  9:49 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux PM, Linux Kernel Mailing List

Hi Linus,

Please pull from the tag

 git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \
 pm-5.7-rc1-3

with top-most commit a31434bcd4cb73b13cd8136c3cbba966dd01f058

 Merge branch 'pm-cpuidle'

on top of commit 7e63420847ae5f1036e4f7c42f0b3282e73efbc2

 Merge tag 'acpi-5.7-rc1-2' of
git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

to receive more power management updates for 5.7-rc1.

These rework the compat ioctl handling in the user space hibernation
interface (Christoph Hellwig) and fix a typo in a function name in
the cpuidle haltpoll driver (Yihao Wu).

Thanks!


---------------

Christoph Hellwig (2):
      PM / sleep: move SNAPSHOT_SET_SWAP_AREA handling into a helper
      PM / sleep: handle the compat case in snapshot_set_swap_area()

Yihao Wu (1):
      cpuidle-haltpoll: Fix small typo

---------------

 drivers/cpuidle/cpuidle-haltpoll.c |   4 +-
 kernel/power/user.c                | 101 +++++++++++++++++--------------------
 2 files changed, 48 insertions(+), 57 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] More power management updates for v5.7-rc1
  2020-04-10  9:49 [GIT PULL] More power management updates for v5.7-rc1 Rafael J. Wysocki
@ 2020-04-10 17:30 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-04-10 17:30 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: Linus Torvalds, Linux PM, Linux Kernel Mailing List

The pull request you sent on Fri, 10 Apr 2020 11:49:13 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git pm-5.7-rc1-3

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/bbec2a2dc338a19185549c318356e25c65552d15

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] More power management updates for v5.7-rc1
  2020-04-06 15:11 Rafael J. Wysocki
@ 2020-04-06 18:15 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-04-06 18:15 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: Linus Torvalds, Linux PM, Linux Kernel Mailing List,
	Platform Driver, ACPI Devel Maling List

The pull request you sent on Mon, 6 Apr 2020 17:11:39 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git pm-5.7-rc1-2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/ef05db16bbd81c0afc4e97806ab338665863bd3b

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] More power management updates for v5.7-rc1
@ 2020-04-06 15:11 Rafael J. Wysocki
  2020-04-06 18:15 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2020-04-06 15:11 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Linux PM, Linux Kernel Mailing List, Platform Driver,
	ACPI Devel Maling List

Hi Linus,

Please pull from the tag

 git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git \
 pm-5.7-rc1-2

with top-most commit 54032b863b56b0e5313bfcd6ef0818943c59c4f4

 Merge branches 'pm-sleep' and 'pm-cpufreq'

on top of commit 2ce94bc4e056d3e48291aac87a95ebd2a86348ba

 Merge tag 'pnp-5.7-rc1' of
git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

to receive additional power management updates for 5.7-rc1.

These fix a corner-case suspend-to-idle wakeup issue on systems
where the ACPI SCI is shared with another wakeup source, add a
kernel command line option to set pm_debug_messages via the kernel
command line, add a document desctibing system-wide suspend and
resume code flows, modify cpufreq Kconfig to choose schedutil as
the preferred governor by default in a couple of cases and do some
assorted cleanups.

Specifics:

 - Fix corner-case suspend-to-idle wakeup issue on systems where
   the ACPI SCI is shared with another wakeup source (Hans de Goede).

 - Add document describing system-wide suspend and resume code flows
   to the admin guide (Rafael Wysocki).

 - Add kernel command line option to set pm_debug_messages (Chen Yu).

 - Choose schedutil as the preferred scaling governor by default on
   ARM big.LITTLE systems and on x86 systems using the intel_pstate
   driver in the passive mode (Linus Walleij, Rafael Wysocki).

 - Drop racy and redundant checks from the PM core's device_prepare()
   routine (Rafael Wysocki).

 - Make resume from hibernation take the hibernation_restore() return
   value into account (Dexuan Cui).

Thanks!


---------------

Chen Yu (1):
      PM: sleep: Add pm_debug_messages kernel command line option

Dexuan Cui (1):
      PM: hibernate: Propagate the return value of hibernation_restore()

Hans de Goede (2):
      ACPI: PM: Add acpi_[un]register_wakeup_handler()
      platform/x86: intel_int0002_vgpio: Use acpi_register_wakeup_handler()

Linus Walleij (1):
      cpufreq: Select schedutil when using big.LITTLE

Rafael J. Wysocki (3):
      cpufreq: intel_pstate: Select schedutil as the default governor
      PM: sleep: core: Drop racy and redundant checks from device_prepare()
      Documentation: PM: sleep: Document system-wide suspend code flows

---------------

 Documentation/admin-guide/kernel-parameters.txt |   3 +
 Documentation/admin-guide/pm/suspend-flows.rst  | 270 ++++++++++++++++++++++++
 Documentation/admin-guide/pm/system-wide.rst    |   1 +
 drivers/acpi/sleep.c                            |   4 +
 drivers/acpi/sleep.h                            |   1 +
 drivers/acpi/wakeup.c                           |  81 +++++++
 drivers/base/power/main.c                       |   7 +-
 drivers/cpufreq/Kconfig                         |   4 +-
 drivers/cpufreq/Kconfig.x86                     |   2 +
 drivers/platform/x86/intel_int0002_vgpio.c      |  10 +
 include/linux/acpi.h                            |   5 +
 kernel/power/hibernate.c                        |   2 +-
 kernel/power/main.c                             |   7 +
 13 files changed, 389 insertions(+), 8 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-04-10 17:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-10  9:49 [GIT PULL] More power management updates for v5.7-rc1 Rafael J. Wysocki
2020-04-10 17:30 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2020-04-06 15:11 Rafael J. Wysocki
2020-04-06 18:15 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).