summaryrefslogtreecommitdiffstats
path: root/block/genhd.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-08-29 15:21:42 -0700
committerJens Axboe <axboe@kernel.dk>2013-09-11 13:22:03 -0600
commitc1b511eb211a6c72d66f7755d2b30a9a91ef9423 (patch)
tree9f86174885153c8669c06db0475457360eb2f65b /block/genhd.c
parent7aef2e780b13973ea60aed8c556107dabde6a495 (diff)
downloadlinux-0-day-c1b511eb211a6c72d66f7755d2b30a9a91ef9423.tar.gz
linux-0-day-c1b511eb211a6c72d66f7755d2b30a9a91ef9423.tar.xz
block: Convert kmalloc_node(...GFP_ZERO...) to kzalloc_node(...)
Use the helper function instead of __GFP_ZERO. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/genhd.c')
-rw-r--r--block/genhd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/block/genhd.c b/block/genhd.c
index dadf42b454a38..791f419431322 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -1252,8 +1252,7 @@ struct gendisk *alloc_disk_node(int minors, int node_id)
{
struct gendisk *disk;
- disk = kmalloc_node(sizeof(struct gendisk),
- GFP_KERNEL | __GFP_ZERO, node_id);
+ disk = kzalloc_node(sizeof(struct gendisk), GFP_KERNEL, node_id);
if (disk) {
if (!init_part_stats(&disk->part0)) {
kfree(disk);