These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / fs / ntfs / malloc.h
index a44b14c..ab172e5 100644 (file)
@@ -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 */