mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 06:55:13 +08:00
IB/ehca: use kvfree() in ipz_queue_{cd}tor()
Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@kernel.org> Cc: Hoang-Nam Nguyen <hnguyen@de.ibm.com> Cc: Christoph Raisch <raisch@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
48a20138ab
commit
f8c5b93947
@ -245,10 +245,7 @@ int ipz_queue_ctor(struct ehca_pd *pd, struct ipz_queue *queue,
|
|||||||
ipz_queue_ctor_exit0:
|
ipz_queue_ctor_exit0:
|
||||||
ehca_gen_err("Couldn't alloc pages queue=%p "
|
ehca_gen_err("Couldn't alloc pages queue=%p "
|
||||||
"nr_of_pages=%x", queue, nr_of_pages);
|
"nr_of_pages=%x", queue, nr_of_pages);
|
||||||
if (is_vmalloc_addr(queue->queue_pages))
|
kvfree(queue->queue_pages);
|
||||||
vfree(queue->queue_pages);
|
|
||||||
else
|
|
||||||
kfree(queue->queue_pages);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -270,10 +267,7 @@ int ipz_queue_dtor(struct ehca_pd *pd, struct ipz_queue *queue)
|
|||||||
free_page((unsigned long)queue->queue_pages[i]);
|
free_page((unsigned long)queue->queue_pages[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_vmalloc_addr(queue->queue_pages))
|
kvfree(queue->queue_pages);
|
||||||
vfree(queue->queue_pages);
|
|
||||||
else
|
|
||||||
kfree(queue->queue_pages);
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user