* [PATCH] block: Use NUMA_NO_NODE instead of -1
@ 2012-11-09 15:37 Ezequiel Garcia
2012-11-10 9:38 ` Jens Axboe
0 siblings, 1 reply; 3+ messages in thread
From: Ezequiel Garcia @ 2012-11-09 15:37 UTC (permalink / raw)
To: linux-kernel; +Cc: Ezequiel Garcia, Jens Axboe
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com>
---
block/blk-core.c | 2 +-
block/genhd.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/block/blk-core.c b/block/blk-core.c
index 4b4dbdf..c9563ca 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -551,7 +551,7 @@ void blk_exit_rl(struct request_list *rl)
struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
{
- return blk_alloc_queue_node(gfp_mask, -1);
+ return blk_alloc_queue_node(gfp_mask, NUMA_NO_NODE);
}
EXPORT_SYMBOL(blk_alloc_queue);
diff --git a/block/genhd.c b/block/genhd.c
index cac7366..e842bdc 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -1245,7 +1245,7 @@ EXPORT_SYMBOL(blk_lookup_devt);
struct gendisk *alloc_disk(int minors)
{
- return alloc_disk_node(minors, -1);
+ return alloc_disk_node(minors, NUMA_NO_NODE);
}
EXPORT_SYMBOL(alloc_disk);
--
1.7.8.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-11-10 9:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-09 15:37 [PATCH] block: Use NUMA_NO_NODE instead of -1 Ezequiel Garcia
2012-11-10 9:38 ` Jens Axboe
2012-11-10 9:42 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).