Commit 175f5475 authored by Laura Abbott's avatar Laura Abbott Committed by Greg Kroah-Hartman

staging: lustre: Use is_vmalloc_addr

Instead of manually checking the bounds of VMALLOC_START and
VMALLOC_END, just use is_vmalloc_addr. That's what the function
was designed for.
Signed-off-by: default avatarLaura Abbott <lauraa@codeaurora.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 731becf8
...@@ -529,8 +529,7 @@ kiblnd_kvaddr_to_page (unsigned long vaddr) ...@@ -529,8 +529,7 @@ kiblnd_kvaddr_to_page (unsigned long vaddr)
{ {
struct page *page; struct page *page;
if (vaddr >= VMALLOC_START && if (is_vmalloc_addr(vaddr)) {
vaddr < VMALLOC_END) {
page = vmalloc_to_page ((void *)vaddr); page = vmalloc_to_page ((void *)vaddr);
LASSERT (page != NULL); LASSERT (page != NULL);
return page; return page;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment