aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)
85 85
86static inline void ntfs_free(void *addr) 86static inline void ntfs_free(void *addr)
87{ 87{
88 if (!is_vmalloc_addr(addr)) { 88 kvfree(addr);
89 kfree(addr);
90 /* free_page((unsigned long)addr); */
91 return;
92 }
93 vfree(addr);
94} 89}
95 90
96#endif /* _LINUX_NTFS_MALLOC_H */ 91#endif /* _LINUX_NTFS_MALLOC_H */