Commit 526e8262 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'for-linus-6.0-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fix from Juergen Gross:
 "A single fix for an issue in the xenbus driver (initialization of
  multi-page rings for Xen PV devices)"

* tag 'for-linus-6.0-rc7-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
  xen/xenbus: fix xenbus_setup_ring()
parents 22565ae7 ce6b8ccd
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -382,9 +382,10 @@ int xenbus_setup_ring(struct xenbus_device *dev, gfp_t gfp, void **vaddr,
	unsigned long ring_size = nr_pages * XEN_PAGE_SIZE;
	grant_ref_t gref_head;
	unsigned int i;
	void *addr;
	int ret;

	*vaddr = alloc_pages_exact(ring_size, gfp | __GFP_ZERO);
	addr = *vaddr = alloc_pages_exact(ring_size, gfp | __GFP_ZERO);
	if (!*vaddr) {
		ret = -ENOMEM;
		goto err;
@@ -401,13 +402,15 @@ int xenbus_setup_ring(struct xenbus_device *dev, gfp_t gfp, void **vaddr,
		unsigned long gfn;

		if (is_vmalloc_addr(*vaddr))
			gfn = pfn_to_gfn(vmalloc_to_pfn(vaddr[i]));
			gfn = pfn_to_gfn(vmalloc_to_pfn(addr));
		else
			gfn = virt_to_gfn(vaddr[i]);
			gfn = virt_to_gfn(addr);

		grefs[i] = gnttab_claim_grant_reference(&gref_head);
		gnttab_grant_foreign_access_ref(grefs[i], dev->otherend_id,
						gfn, 0);

		addr += XEN_PAGE_SIZE;
	}

	return 0;