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-5.8b-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fix from Juergen Gross:
"Just one fix of a recent patch (double free in an error path)"

* tag 'for-linus-5.8b-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
xen/xenbus: Fix a double free in xenbus_map_ring_pv()

+1 -3
+1 -3
drivers/xen/xenbus/xenbus_client.c
··· 693 693 bool leaked; 694 694 695 695 area = alloc_vm_area(XEN_PAGE_SIZE * nr_grefs, info->ptes); 696 - if (!area) { 697 - kfree(node); 696 + if (!area) 698 697 return -ENOMEM; 699 - } 700 698 701 699 for (i = 0; i < nr_grefs; i++) 702 700 info->phys_addrs[i] =