2012-11-09 15:38:13

by Ezequiel Garcia

[permalink] [raw]
Subject: [PATCH] block: Use NUMA_NO_NODE instead of -1

Cc: Jens Axboe <[email protected]>
Signed-off-by: Ezequiel Garcia <[email protected]>
---
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


2012-11-10 09:38:46

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] block: Use NUMA_NO_NODE instead of -1

On 2012-11-09 16:37, Ezequiel Garcia wrote:
> Cc: Jens Axboe <[email protected]>
> Signed-off-by: Ezequiel Garcia <[email protected]>

Thanks, applied.

--
Jens Axboe

2012-11-10 09:42:30

by Jens Axboe

[permalink] [raw]
Subject: Re: [PATCH] block: Use NUMA_NO_NODE instead of -1

On 2012-11-10 10:38, Jens Axboe wrote:
> On 2012-11-09 16:37, Ezequiel Garcia wrote:
>> Cc: Jens Axboe <[email protected]>
>> Signed-off-by: Ezequiel Garcia <[email protected]>
>
> Thanks, applied.

BTW, you missed blk_init_queue(), I fixed up that one too.

--
Jens Axboe