*/
static DEFINE_SPINLOCK(balloon_pages_lock);
-/*
+/**
* balloon_page_insert - insert a page into the balloon's page list and make
* the page->private assignment accordingly.
* @balloon : pointer to balloon device
list_add(&page->lru, &balloon->pages);
}
-/*
+/**
* balloon_page_finalize - prepare a balloon page that was removed from the
* balloon list for release to the page allocator
* @page: page to be released to the page allocator
}
EXPORT_SYMBOL_GPL(balloon_page_list_dequeue);
-/*
+/**
* balloon_page_alloc - allocates a new page for insertion into the balloon
* page list.
*
}
EXPORT_SYMBOL_GPL(balloon_page_alloc);
-/*
+/**
* balloon_page_enqueue - inserts a new page into the balloon page list.
*
* @b_dev_info: balloon device descriptor where we will insert a new page
}
EXPORT_SYMBOL_GPL(balloon_page_enqueue);
-/*
+/**
* balloon_page_dequeue - removes a page from balloon's page list and returns
* its address to allow the driver to release the page.
* @b_dev_info: balloon device descriptor where we will grab a page from.