From: Oliver Neukum Date: Fri, 4 Jul 2008 08:10:53 +0000 (+0200) Subject: USB: update to Documentation X-Git-Tag: v2.6.27-rc4~101^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f0fa74634c0c686618b5318748bde233772a1a8d;p=profile%2Fivi%2Fkernel-x86-ivi.git USB: update to Documentation this mentions a new deadlock due to advanced power management. Signed-off-by: Oliver Neukum Signed-off-by: Greg Kroah-Hartman --- diff --git a/Documentation/usb/power-management.txt b/Documentation/usb/power-management.txt index b2fc4d4..9d31140 100644 --- a/Documentation/usb/power-management.txt +++ b/Documentation/usb/power-management.txt @@ -436,7 +436,12 @@ post_reset; the USB core guarantees that this is true of internal suspend/resume events as well. If a driver wants to block all suspend/resume calls during some -critical section, it can simply acquire udev->pm_mutex. +critical section, it can simply acquire udev->pm_mutex. Note that +calls to resume may be triggered indirectly. Block IO due to memory +allocations can make the vm subsystem resume a device. Thus while +holding this lock you must not allocate memory with GFP_KERNEL or +GFP_NOFS. + Alternatively, if the critical section might call some of the usb_autopm_* routines, the driver can avoid deadlock by doing: