aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Enberg <penberg@kernel.org>2015-06-24 16:54:48 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2015-06-24 17:49:38 -0700
commitb0cbeee72f88996678fff672a75bd845b7ad7034 (patch)
treed4f16d3cd62fad86dd5303104f60946cc781cfc1
parentfsnotify: remove obsolete documentation (diff)
downloadlinux-dev-b0cbeee72f88996678fff672a75bd845b7ad7034.tar.xz
linux-dev-b0cbeee72f88996678fff672a75bd845b7ad7034.zip
NTFS: use kvfree() in ntfs_free()
Use kvfree() instead of open-coding it. Signed-off-by: Pekka Enberg <penberg@kernel.org> Cc: Anton Altaparmakov <anton@tuxera.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/ntfs/malloc.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ntfs/malloc.h b/fs/ntfs/malloc.h
index a44b14cbceeb..ab172e5f51d9 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 */