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 tag 'for-linus-4.15-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fix from Juergen Gross:
"One minor fix adjusting the kmalloc flags in the new pvcalls driver
added in rc1"

* tag 'for-linus-4.15-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/pvcalls: use GFP_ATOMIC under spin lock

+1 -1
+1 -1
drivers/xen/pvcalls-front.c
··· 805 805 pvcalls_exit(); 806 806 return ret; 807 807 } 808 - map2 = kzalloc(sizeof(*map2), GFP_KERNEL); 808 + map2 = kzalloc(sizeof(*map2), GFP_ATOMIC); 809 809 if (map2 == NULL) { 810 810 clear_bit(PVCALLS_FLAG_ACCEPT_INFLIGHT, 811 811 (void *)&map->passive.flags);