From: Stefan Richter Date: Sun, 4 Mar 2012 13:23:00 +0000 (+0100) Subject: firewire: sbp2: replace a GFP_ATOMIC allocation X-Git-Tag: v3.4-rc1~127^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c13ccfcf66b2e70f8d01f7fe7e1e20ba60e733e1;p=pandora-kernel.git firewire: sbp2: replace a GFP_ATOMIC allocation sbp2_send_management_orb() is called by sbp2_login, sbp2_reconnect, and sbp2_remove, all which are able to sleep during memory allocations. Actually, sbp2_send_management_orb() itself is a sleeping function. Login and remove could allocate with GFP_KERNEL but reconnect needs GFP_NOIO to ensure progress in low memory situations. Signed-off-by: Stefan Richter --- Reading git-diff-tree failed