aboutsummaryrefslogtreecommitdiffstats
path: root/block/genhd.c
diff options
context:
space:
mode:
authorMing Lei <ming.lei@canonical.com>2013-02-22 19:34:13 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-02-23 20:50:16 -0500
commit25e823c8c37d123b77ce12a042da889e6bb5f9d1 (patch)
treec06fc6af0ac6d31e3f509871c7f0d871e0d0684b /block/genhd.c
parente823407f7b11fa06ba8e7a2801eb9ed11268a7ec (diff)
block/genhd.c: apply pm_runtime_set_memalloc_noio on block devices
Apply the introduced pm_runtime_set_memalloc_noio on block device so that PM core will teach mm to not allocate memory with GFP_IOFS when calling the runtime_resume and runtime_suspend callback for block devices and its ancestors. Signed-off-by: Ming Lei <ming.lei@canonical.com> Cc: Jens Axboe <axboe@kernel.dk> Cc: Minchan Kim <minchan@kernel.org> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Oliver Neukum <oneukum@suse.de> Cc: Jiri Kosina <jiri.kosina@suse.com> Cc: Mel Gorman <mel@csn.ul.ie> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Michal Hocko <mhocko@suse.cz> Cc: Ingo Molnar <mingo@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: "Rafael J. Wysocki" <rjw@sisk.pl> Cc: Greg KH <greg@kroah.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Eric Dumazet <eric.dumazet@gmail.com> Cc: David Decotigny <david.decotigny@google.com> Cc: Tom Herbert <therbert@google.com> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'block/genhd.c')
-rw-r--r--block/genhd.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/block/genhd.c b/block/genhd.c
index 3993ebf4135f..5f73c2435fde 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -18,6 +18,7 @@
18#include <linux/mutex.h> 18#include <linux/mutex.h>
19#include <linux/idr.h> 19#include <linux/idr.h>
20#include <linux/log2.h> 20#include <linux/log2.h>
21#include <linux/pm_runtime.h>
21 22
22#include "blk.h" 23#include "blk.h"
23 24
@@ -534,6 +535,14 @@ static void register_disk(struct gendisk *disk)
534 return; 535 return;
535 } 536 }
536 } 537 }
538
539 /*
540 * avoid probable deadlock caused by allocating memory with
541 * GFP_KERNEL in runtime_resume callback of its all ancestor
542 * devices
543 */
544 pm_runtime_set_memalloc_noio(ddev, true);
545
537 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj); 546 disk->part0.holder_dir = kobject_create_and_add("holders", &ddev->kobj);
538 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj); 547 disk->slave_dir = kobject_create_and_add("slaves", &ddev->kobj);
539 548
@@ -663,6 +672,7 @@ void del_gendisk(struct gendisk *disk)
663 disk->driverfs_dev = NULL; 672 disk->driverfs_dev = NULL;
664 if (!sysfs_deprecated) 673 if (!sysfs_deprecated)
665 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk))); 674 sysfs_remove_link(block_depr, dev_name(disk_to_dev(disk)));
675 pm_runtime_set_memalloc_noio(disk_to_dev(disk), false);
666 device_del(disk_to_dev(disk)); 676 device_del(disk_to_dev(disk));
667} 677}
668EXPORT_SYMBOL(del_gendisk); 678EXPORT_SYMBOL(del_gendisk);