Skip to content

Commit 6753471

Browse files
hansendcaxboe
authored andcommitted
blk-mq: uses page->list incorrectly
'struct page' has two list_head fields: 'lru' and 'list'. Conveniently, they are unioned together. This means that code can use them interchangably, which gets horribly confusing. The blk-mq made the logical decision to try to use page->list. But, that field was actually introduced just for the slub code. ->lru is the right field to use outside of slab/slub. Signed-off-by: Dave Hansen <[email protected]> Acked-by: David Rientjes <[email protected]> Acked-by: Kirill A. Shutemov <[email protected]> Cc: Jens Axboe <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
1 parent 3d6efbf commit 6753471

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

block/blk-mq.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1063,8 +1063,8 @@ static void blk_mq_free_rq_map(struct blk_mq_hw_ctx *hctx)
10631063
struct page *page;
10641064

10651065
while (!list_empty(&hctx->page_list)) {
1066-
page = list_first_entry(&hctx->page_list, struct page, list);
1067-
list_del_init(&page->list);
1066+
page = list_first_entry(&hctx->page_list, struct page, lru);
1067+
list_del_init(&page->lru);
10681068
__free_pages(page, page->private);
10691069
}
10701070

@@ -1128,7 +1128,7 @@ static int blk_mq_init_rq_map(struct blk_mq_hw_ctx *hctx,
11281128
break;
11291129

11301130
page->private = this_order;
1131-
list_add_tail(&page->list, &hctx->page_list);
1131+
list_add_tail(&page->lru, &hctx->page_list);
11321132

11331133
p = page_address(page);
11341134
entries_per_page = order_to_size(this_order) / rq_size;

0 commit comments

Comments
 (0)