/* * Copyright IBM Corporation, 2010 * Author Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2.1 of the GNU Lesser General Public License * as published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * */ #include <linux/mm.h> #include <linux/module.h> /** * p9_release_req_pages - Release pages after the transaction. */
void p9_release_pages(struct page **pages, int nr_pages) { int i; for (i = 0; i < nr_pages; i++) if (pages[i]) put_page(pages[i]); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Venkateswararao Jujjuri (JV) | 22 | 48.89% | 1 | 33.33% |
Sasha Levin | 14 | 31.11% | 1 | 33.33% |
Aneesh Kumar K.V | 9 | 20.00% | 1 | 33.33% |
Total | 45 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Venkateswararao Jujjuri (JV) | 32 | 55.17% | 1 | 25.00% |
Sasha Levin | 14 | 24.14% | 1 | 25.00% |
Aneesh Kumar K.V | 11 | 18.97% | 1 | 25.00% |
Al Viro | 1 | 1.72% | 1 | 25.00% |
Total | 58 | 100.00% | 4 | 100.00% |