Use kvfree() instead of open-coding it.

Cc: Anton Altaparmakov <an...@tuxera.com>
Signed-off-by: Pekka Enberg <penb...@kernel.org>
---
 fs/ntfs/malloc.h | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/fs/ntfs/malloc.h b/fs/ntfs/malloc.h
index a44b14c..ab172e5 100644
--- a/fs/ntfs/malloc.h
+++ b/fs/ntfs/malloc.h
@@ -85,12 +85,7 @@ static inline void *ntfs_malloc_nofs_nofail(unsigned long 
size)
 
 static inline void ntfs_free(void *addr)
 {
-       if (!is_vmalloc_addr(addr)) {
-               kfree(addr);
-               /* free_page((unsigned long)addr); */
-               return;
-       }
-       vfree(addr);
+       kvfree(addr);
 }
 
 #endif /* _LINUX_NTFS_MALLOC_H */
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to