···3434 journals with two different restart pages. We sanity check both and3535 either use the only sane one or the more recent one of the two in the3636 case that both are valid.3737- - Modify fs/ntfs/malloc.h::ntfs_malloc_nofs() to do the kmalloc() based3838- allocations with __GFP_HIGHMEM, analogous to how the vmalloc() based3939- allocations are done.4037 - Add fs/ntfs/malloc.h::ntfs_malloc_nofs_nofail() which is analogous to4138 ntfs_malloc_nofs() but it performs allocations with __GFP_NOFAIL and4239 hence cannot fail.···8790 in the first buffer head instead of a driver global spin lock to8891 improve scalability.8992 - Minor fix to error handling and error message display in9090- fs/ntfs/aops.c::ntfs_prepare_nonresident_write(). 9393+ fs/ntfs/aops.c::ntfs_prepare_nonresident_write().9494+ - Change the mount options {u,f,d}mask to always parse the number as9595+ an octal number to conform to how chmod(1) works, too. Thanks to9696+ Giuseppe Bilotta and Horst von Brand for pointing out the errors of9797+ my ways.919892992.1.23 - Implement extension of resident files and make writing safe as well as93100 many bug fixes, cleanups, and enhancements...
+1-1
fs/ntfs/malloc.h
···4545 if (likely(size <= PAGE_SIZE)) {4646 BUG_ON(!size);4747 /* kmalloc() has per-CPU caches so is faster for now. */4848- return kmalloc(PAGE_SIZE, gfp_mask);4848+ return kmalloc(PAGE_SIZE, gfp_mask & ~__GFP_HIGHMEM);4949 /* return (void *)__get_free_page(gfp_mask); */5050 }5151 if (likely(size >> PAGE_SHIFT < num_physpages))