Lines Matching refs:lp
219 struct linked_page *lp = page_address;
221 lp->next = safe_pages_list;
222 safe_pages_list = lp;
252 struct linked_page *lp = list->next;
255 list = lp;
292 struct linked_page *lp;
294 lp = ca->safe_needed ? _get_safe_page(ca->gfp_mask) : get_image_page(ca->gfp_mask, PG_ANY);
295 if (!lp) {
299 lp->next = ca->chain;
300 ca->chain = lp;
941 struct linked_page *lp = p_list;
943 p_list = lp->next;
944 recycle_safe_page(lp);
2539 struct linked_page *lp;
2574 lp = get_image_page(GFP_ATOMIC, PG_SAFE);
2575 if (!lp) {
2579 lp->next = safe_pages_list;
2580 safe_pages_list = lp;
2586 lp = (struct linked_page *)get_zeroed_page(GFP_ATOMIC);
2587 if (!lp) {
2591 if (!swsusp_page_is_free(virt_to_page(lp))) {
2593 lp->next = safe_pages_list;
2594 safe_pages_list = lp;
2597 swsusp_set_page_forbidden(virt_to_page(lp));
2598 swsusp_set_page_free(virt_to_page(lp));