diff options
author | Joe Perches <joe@perches.com> | 2013-08-29 15:21:42 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2013-09-11 13:22:03 -0600 |
commit | c1b511eb211a6c72d66f7755d2b30a9a91ef9423 (patch) | |
tree | 9f86174885153c8669c06db0475457360eb2f65b /block/genhd.c | |
parent | 7aef2e780b13973ea60aed8c556107dabde6a495 (diff) | |
download | linux-c1b511eb211a6c72d66f7755d2b30a9a91ef9423.tar.bz2 |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/genhd.c b/block/genhd.c index dadf42b454a3..791f41943132 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); |