cregit-Linux how code gets into the kernel

Release 4.7 include/linux/hugetlb_cgroup.h

Directory: include/linux
/*
 * Copyright IBM Corporation, 2012
 * Author Aneesh Kumar K.V <aneesh.kumar@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.
 *
 */

#ifndef _LINUX_HUGETLB_CGROUP_H

#define _LINUX_HUGETLB_CGROUP_H

#include <linux/mmdebug.h>

struct hugetlb_cgroup;
/*
 * Minimum page order trackable by hugetlb cgroup.
 * At least 3 pages are necessary for all the tracking information.
 */

#define HUGETLB_CGROUP_MIN_ORDER	2

#ifdef CONFIG_CGROUP_HUGETLB


static inline struct hugetlb_cgroup *hugetlb_cgroup_from_page(struct page *page) { VM_BUG_ON_PAGE(!PageHuge(page), page); if (compound_order(page) < HUGETLB_CGROUP_MIN_ORDER) return NULL; return (struct hugetlb_cgroup *)page[2].private; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar4692.00%133.33%
sasha levinsasha levin36.00%133.33%
kirill a. shutemovkirill a. shutemov12.00%133.33%
Total50100.00%3100.00%


static inline int set_hugetlb_cgroup(struct page *page, struct hugetlb_cgroup *h_cg) { VM_BUG_ON_PAGE(!PageHuge(page), page); if (compound_order(page) < HUGETLB_CGROUP_MIN_ORDER) return -1; page[2].private = (unsigned long)h_cg; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar5189.47%133.33%
sasha levinsasha levin35.26%133.33%
kirill a. shutemovkirill a. shutemov35.26%133.33%
Total57100.00%3100.00%


static inline bool hugetlb_cgroup_disabled(void) { return !cgroup_subsys_enabled(hugetlb_cgrp_subsys); }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar1168.75%150.00%
tejun heotejun heo531.25%150.00%
Total16100.00%2100.00%

extern int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages, struct hugetlb_cgroup **ptr); extern void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages, struct hugetlb_cgroup *h_cg, struct page *page); extern void hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages, struct page *page); extern void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages, struct hugetlb_cgroup *h_cg); extern void hugetlb_cgroup_file_init(void) __init; extern void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage); #else
static inline struct hugetlb_cgroup *hugetlb_cgroup_from_page(struct page *page) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar17100.00%1100.00%
Total17100.00%1100.00%


static inline int set_hugetlb_cgroup(struct page *page, struct hugetlb_cgroup *h_cg) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar20100.00%1100.00%
Total20100.00%1100.00%


static inline bool hugetlb_cgroup_disabled(void) { return true; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar12100.00%1100.00%
Total12100.00%1100.00%


static inline int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages, struct hugetlb_cgroup **ptr) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar23100.00%1100.00%
Total23100.00%1100.00%


static inline void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages, struct hugetlb_cgroup *h_cg, struct page *page) { }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar2295.65%150.00%
chen gangchen gang14.35%150.00%
Total23100.00%2100.00%


static inline void hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages, struct page *page) { }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar1794.44%150.00%
chen gangchen gang15.56%150.00%
Total18100.00%2100.00%


static inline void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages, struct hugetlb_cgroup *h_cg) { }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar1794.44%150.00%
chen gangchen gang15.56%150.00%
Total18100.00%2100.00%


static inline void hugetlb_cgroup_file_init(void) { }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar562.50%150.00%
jianguo wujianguo wu337.50%150.00%
Total8100.00%2100.00%


static inline void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage) { }

Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar1593.75%150.00%
chen gangchen gang16.25%150.00%
Total16100.00%2100.00%

#endif /* CONFIG_MEM_RES_CTLR_HUGETLB */ #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
aneesh kumaraneesh kumar37893.80%550.00%
sasha levinsasha levin71.74%110.00%
tejun heotejun heo51.24%110.00%
jianguo wujianguo wu51.24%110.00%
chen gangchen gang40.99%110.00%
kirill a. shutemovkirill a. shutemov40.99%110.00%
Total403100.00%10100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}