Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs

Pull btrfs fix from Chris Mason:
"When an arm user reported crashes near page_address(page) in my new
code, it became clear that I can't be trusted with GFP masks. Filipe
beat me to the patch, and I'll just be in the corner with my dunce cap
on"

* 'for-linus-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs:
Btrfs: fix wrong mapping flags for free space inode

+1 -1
+1 -1
fs/btrfs/free-space-cache.c
··· 86 86 87 87 mapping_set_gfp_mask(inode->i_mapping, 88 88 mapping_gfp_mask(inode->i_mapping) & 89 - ~(GFP_NOFS & ~__GFP_HIGHMEM)); 89 + ~(__GFP_FS | __GFP_HIGHMEM)); 90 90 91 91 return inode; 92 92 }