All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] PM fixes for 2.6.32
@ 2009-09-28 22:58 Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-09-28 22:58 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux PCI, Jesse Barnes, LKML, pm list, stable

Hi Linus,

Please pull power management fixes for 2.6.32 from:

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git pm-fixes

This removes the redundant second argument of pcmcia_socket_dev_suspend()
and, on top of that, fixes CardBus suspend/resume that has been broken
since 2.6.29.

 drivers/pcmcia/at91_cf.c        |    2 +-
 drivers/pcmcia/au1000_generic.c |    2 +-
 drivers/pcmcia/bfin_cf_pcmcia.c |    2 +-
 drivers/pcmcia/cs.c             |    2 +-
 drivers/pcmcia/i82092.c         |    2 +-
 drivers/pcmcia/i82365.c         |    2 +-
 drivers/pcmcia/m32r_cfc.c       |    2 +-
 drivers/pcmcia/m32r_pcc.c       |    2 +-
 drivers/pcmcia/m8xx_pcmcia.c    |    2 +-
 drivers/pcmcia/omap_cf.c        |    2 +-
 drivers/pcmcia/pd6729.c         |    2 +-
 drivers/pcmcia/pxa2xx_base.c    |    2 +-
 drivers/pcmcia/sa1100_generic.c |    2 +-
 drivers/pcmcia/sa1111_generic.c |    2 +-
 drivers/pcmcia/tcic.c           |    2 +-
 drivers/pcmcia/vrc4171_card.c   |    2 +-
 drivers/pcmcia/yenta_socket.c   |   88 +++++++++++++++++++++------------------
 include/pcmcia/ss.h             |    2 +-
 18 files changed, 65 insertions(+), 57 deletions(-)

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

Rafael J. Wysocki (2):
      PM / PCMCIA: Drop second argument of pcmcia_socket_dev_suspend()
      PM / yenta: Fix cardbus suspend/resume regression


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

* [GIT PULL] PM fixes for 2.6.32
@ 2009-11-03 11:36 Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-11-03 11:36 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Dominik Brodowski, Stephen J. Gowdy, Jose Marino, Jiri Slaby,
	Pavel Machek, Romit Dasgupta, LKML, pm list

Hi Linus,

Please pull power management fixes for 2.6.32 from:

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git pm-fixes

This includes the following changes:

* The fix for http://bugzilla.kernel.org/show_bug.cgi?id=14334 (yenta resume
  regression from 2.6.31).

* Hibernation fixes from Jiri Slaby.  Two of these patches fix long standing
  bugs, but in my opinion they are simple enough to go into 2.6.32.  The third
  one is a two-liner complementing one of the fixes.

* PM core error code path fix from Romit Dasgupta.

* Removal of some run-time PM debug messages creating too much noise from
  Pavel (the run-time PM framework is a new feature in 2.6.32 and this is
  just a refinement of it).


 drivers/base/power/main.c     |    1 +
 drivers/base/power/runtime.c  |    4 --
 drivers/pcmcia/cs.c           |   69 +++++++++++++++++++++++++---------------
 drivers/pcmcia/yenta_socket.c |   12 ++++++-
 include/pcmcia/ss.h           |    4 ++
 kernel/power/hibernate.c      |   11 +++++--
 kernel/power/swap.c           |   43 +++++++++++++------------
 7 files changed, 89 insertions(+), 55 deletions(-)

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

Jiri Slaby (3):
      PM / Hibernate: Fix blkdev refleaks
      PM / Hibernate: Fix error handling in save_image()
      PM / Hibernate: Add newline to load_image() fail path

Pavel Machek (1):
      PM: Remove some debug messages producing too much noise

Rafael J. Wysocki (1):
      PM / yenta: Split resume into early and late parts (rev. 4)

Romit Dasgupta (1):
      PM: Fix warning on suspend errors


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

* [GIT PULL] PM fixes for 2.6.32
@ 2009-11-03 11:36 Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-11-03 11:36 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Stephen J. Gowdy, Jose Marino, LKML, Dominik Brodowski, pm list,
	Jiri Slaby

Hi Linus,

Please pull power management fixes for 2.6.32 from:

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git pm-fixes

This includes the following changes:

* The fix for http://bugzilla.kernel.org/show_bug.cgi?id=14334 (yenta resume
  regression from 2.6.31).

* Hibernation fixes from Jiri Slaby.  Two of these patches fix long standing
  bugs, but in my opinion they are simple enough to go into 2.6.32.  The third
  one is a two-liner complementing one of the fixes.

* PM core error code path fix from Romit Dasgupta.

* Removal of some run-time PM debug messages creating too much noise from
  Pavel (the run-time PM framework is a new feature in 2.6.32 and this is
  just a refinement of it).


 drivers/base/power/main.c     |    1 +
 drivers/base/power/runtime.c  |    4 --
 drivers/pcmcia/cs.c           |   69 +++++++++++++++++++++++++---------------
 drivers/pcmcia/yenta_socket.c |   12 ++++++-
 include/pcmcia/ss.h           |    4 ++
 kernel/power/hibernate.c      |   11 +++++--
 kernel/power/swap.c           |   43 +++++++++++++------------
 7 files changed, 89 insertions(+), 55 deletions(-)

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

Jiri Slaby (3):
      PM / Hibernate: Fix blkdev refleaks
      PM / Hibernate: Fix error handling in save_image()
      PM / Hibernate: Add newline to load_image() fail path

Pavel Machek (1):
      PM: Remove some debug messages producing too much noise

Rafael J. Wysocki (1):
      PM / yenta: Split resume into early and late parts (rev. 4)

Romit Dasgupta (1):
      PM: Fix warning on suspend errors

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

* [GIT PULL] PM fixes for 2.6.32
@ 2009-09-28 22:58 Rafael J. Wysocki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-09-28 22:58 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux PCI, pm list, LKML, Jesse Barnes, stable

Hi Linus,

Please pull power management fixes for 2.6.32 from:

git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6.git pm-fixes

This removes the redundant second argument of pcmcia_socket_dev_suspend()
and, on top of that, fixes CardBus suspend/resume that has been broken
since 2.6.29.

 drivers/pcmcia/at91_cf.c        |    2 +-
 drivers/pcmcia/au1000_generic.c |    2 +-
 drivers/pcmcia/bfin_cf_pcmcia.c |    2 +-
 drivers/pcmcia/cs.c             |    2 +-
 drivers/pcmcia/i82092.c         |    2 +-
 drivers/pcmcia/i82365.c         |    2 +-
 drivers/pcmcia/m32r_cfc.c       |    2 +-
 drivers/pcmcia/m32r_pcc.c       |    2 +-
 drivers/pcmcia/m8xx_pcmcia.c    |    2 +-
 drivers/pcmcia/omap_cf.c        |    2 +-
 drivers/pcmcia/pd6729.c         |    2 +-
 drivers/pcmcia/pxa2xx_base.c    |    2 +-
 drivers/pcmcia/sa1100_generic.c |    2 +-
 drivers/pcmcia/sa1111_generic.c |    2 +-
 drivers/pcmcia/tcic.c           |    2 +-
 drivers/pcmcia/vrc4171_card.c   |    2 +-
 drivers/pcmcia/yenta_socket.c   |   88 +++++++++++++++++++++------------------
 include/pcmcia/ss.h             |    2 +-
 18 files changed, 65 insertions(+), 57 deletions(-)

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

Rafael J. Wysocki (2):
      PM / PCMCIA: Drop second argument of pcmcia_socket_dev_suspend()
      PM / yenta: Fix cardbus suspend/resume regression

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

end of thread, other threads:[~2009-11-03 11:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-28 22:58 [GIT PULL] PM fixes for 2.6.32 Rafael J. Wysocki
  -- strict thread matches above, loose matches on Subject: below --
2009-11-03 11:36 Rafael J. Wysocki
2009-11-03 11:36 Rafael J. Wysocki
2009-09-28 22:58 Rafael J. Wysocki

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.