login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
March
»
5
Re: [RFC][PATCH] PM: Make PM core handle device registrations concurrent with suspend/hibernation
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Alan Stern
Subject:
Re: [RFC][PATCH] PM: Make PM core handle device registrations concurrent with suspend/hibernation
Date: Wednesday, March 5, 2008 - 3:00 pm
On Wed, 5 Mar 2008, Rafael J. Wysocki wrote:
quoted text
> On Wednesday, 5 of March 2008, Alan Stern wrote: > > On Wed, 5 Mar 2008, Rafael J. Wysocki wrote: > > > > > -void device_pm_add(struct device *dev) > > > +int device_pm_add(struct device *dev) > > > { > > > + int error = 0; > > > + > > > pr_debug("PM: Adding info for %s:%s\n", > > > dev->bus ? dev->bus->name : "No Bus", > > > kobject_name(&dev->kobj)); > > > mutex_lock(&dpm_list_mtx); > > > - list_add_tail(&dev->power.entry, &dpm_active); > > > + if (dev->parent && dev->parent->power.sleeping) { > > > + WARN_ON(true); > > > > I would prefer to put a dev_warn() line here, so that people reading > > the kernel log can easily tell which device caused the problem and what > > sort of problem it is. Something like this: > > > > dev_warn(dev, "device added while parent %s is asleep\n", > > dev->parent->bus_id); > > WARN_ON(true); > > Added. > > > > @@ -426,6 +406,12 @@ static int dpm_suspend(pm_message_t stat > > > struct list_head *entry = dpm_active.prev; > > > struct device *dev = to_device(entry); > > > > > > + if (dev->parent && dev->parent->power.sleeping) { > > > + WARN_ON(true); > > > + error = -EAGAIN; > > > + break; > > > > Again, a dev_warn() would be appropriate. > > I chose just "WARN_ON(dev->parent && dev->parent->power.sleeping)", > which is shorter. :-) > > I don't really expect it to appear and if it's reported, it'll be easy to > figure out everything from the stack trace.
Okay.
quoted text
> Revised patch below.
It looks good. Let's hope it doesn't mess up ACPI too badly... :-) Acked-by: Alan Stern <stern@rowland.harvard.edu> Alan Stern --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[RFC][PATCH] PM: Make PM core handle device registrations ...
, Rafael J. Wysocki
, (Mon Mar 3, 4:10 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Tue Mar 4, 9:01 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Tue Mar 4, 2:52 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Tue Mar 4, 6:15 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Wed Mar 5, 9:03 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Cornelia Huck
, (Wed Mar 5, 9:16 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Wed Mar 5, 9:27 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Wed Mar 5, 2:49 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Wed Mar 5, 3:00 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Wed Mar 5, 4:24 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Thu Mar 6, 8:26 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Thu Mar 6, 9:26 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Thu Mar 6, 10:40 am)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Thu Mar 6, 1:18 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Thu Mar 6, 1:28 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Thu Mar 6, 2:28 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Alan Stern
, (Thu Mar 6, 2:58 pm)
Re: [RFC][PATCH] PM: Make PM core handle device registrati ...
, Rafael J. Wysocki
, (Thu Mar 6, 3:30 pm)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Ingo Molnar
Re: [PATCH 0/3] v2 Make hierarchical RCU less IPI-happy and add more tracing
Jeremy Fitzhardinge
Re: Linux 2.6.28.10 and Linux 2.6.29.6 XEN Guest Support Broken x86_64 in BUILD
Nick Piggin
Re: [patch] CFS (Completely Fair Scheduler), v2
Gary Hade
Re: [PATCH 0/5][RFC] Physical PCI slot objects
Dave Johnson
Re: expected behavior of PF_PACKET on NETIF_F_HW_VLAN_RX device?
linux-netdev
:
Arnd Bergmann
Re: 64-bit net_device_stats
Stephens, Allan
RE: [PATCH]: tipc: Fix oops on send prior to entering networked mode
frank.blaschka
[patch 3/5] [PATCH] qeth: support z/VM VSWITCH Port Isolation
Wu Fengguang
Re: [PATCH] dm9601: handle corrupt mac address
David Miller
Re: [PATCH net-2.6.24] Fix refcounting problem with netif_rx_reschedule()
git
:
Junio C Hamano
Re: [PATCH] [RFC] add Message-ID field to log on git-am operation
Junio C Hamano
Re: Handling large files with GIT
Karl
Re: [ANNOUNCE] pg - A patch porcelain for GIT
Josh Triplett
Re: [RFC][PATCH 00/10] Sparse: Git's "make check" target
Pierre Habouzit
Re: [PATCH] git-daemon: more powerful base-path/user-path settings, using formats.
git-commits-head
:
Linux Kernel Mailing List
MIPS: RBTX4939: Fix IOC pin-enable register updating
Linux Kernel Mailing List
regulator: update email address for Liam Girdwood
Linux Kernel Mailing List
[SCSI] ipr: add message to error table
Linux Kernel Mailing List
powerpc/32: Wire up the trampoline code for kdump
Linux Kernel Mailing List
USB: omap_udc: sync with OMAP tree
openbsd-misc
:
Josh Grosse
Re: error : pkg add phpMyAdmin
Brian Candler
Re: OBSD's perspective on SELinux
Jacob Meuser
Re: /dev/audio: Device busy
David Vasek
Re: Inexpensive, low power, "wall wart" computer
William Boshuck
Re: Richard Stallman...
Colocation donated by:
Syndicate