blob: 9c0c894b56f8caeb2873d0202a6034eece6cd949 [file] [log] [blame]
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -08001/*
2 * Copyright IBM Corporation, 2010
3 * Author Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 *
13 */
14
Al Virodcdbd7b2015-04-02 23:11:36 -040015#include <linux/mm.h>
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -080016#include <linux/module.h>
Adeodato Simóe7d81302018-11-13 03:28:53 -030017#include "trans_common.h"
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -080018
19/**
20 * p9_release_req_pages - Release pages after the transaction.
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -080021 */
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +053022void p9_release_pages(struct page **pages, int nr_pages)
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -080023{
Sasha Levin110ecd62013-07-11 13:16:54 -040024 int i;
25
26 for (i = 0; i < nr_pages; i++)
27 if (pages[i])
28 put_page(pages[i]);
Venkateswararao Jujjuri (JV)022cae362011-01-28 14:11:13 -080029}
Aneesh Kumar K.Vabfa0342011-08-16 10:50:10 +053030EXPORT_SYMBOL(p9_release_pages);