mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-28 00:35:00 -04:00
Add an optional reclaim callback to struct dmem_cgroup_region. When dmem.max is set below the current usage of a cgroup pool, the new limit is applied immediately (so that concurrent allocations are throttled while reclaim is in progress) and then the driver is asked to evict memory to bring usage back below the limit. Reclaim is attempted up to a bounded number of times. No error is returned to userspace if usage remains above the limit after reclaim, and a pending signal will abort the reclaim loop early. This matches the behavior of memory.max in the memory cgroup controller. Also honor O_NONBLOCK so that if that flag is set during the max value write, no reclaim is initiated. The idea is to avoid charging the reclaim cost to the writer of the max value. v2: - Write max before reclaim is attempted (Maarten) - Let signals abort the reclaim without error (Maarten) - If a new max value is written with the O_NONBLOCK flag, reclaim is not attempted (Maarten) - Extract region from the pool parameter rather than passing it explicitly to set_resource_xxx(). v3: - Use an rw_semaphore (unregister_sem) to protect reclaim callbacks against concurrent region unregistration: readers (reclaim) hold the read side; dmem_cgroup_unregister_region() takes the write side to drain in-flight callbacks before returning. (Sashiko-bot) v5: - Rebased on the introduction of struct dmem_cgroup_init. - Use nonblock=true in reset_all_resource_limits() to avoid sleeping inside rcu_read_lock() in dmemcs_offline(). (Sashiko-bot) - Compare usage against the truncated limit value stored in cnt.max, not the original u64. (Sashiko-bot) - Use a DMEM_MAX_RECLAIM_RETRIES (16) retry budget instead of 5, matching the memcg controller's MAX_RECLAIM_RETRIES. Only -ENOSPC (no progress) counts against the retry budget; other errors terminate the loop immediately. v6: - Fix dmem_cgroup_ops->reclaim docstring: -ENOSPC does not stop reclaim immediately but is retried up to DMEM_MAX_RECLAIM_RETRIES times; only other negative errors terminate the loop. (Sashiko-bot) v7: - Replace the per-region rw_semaphore with a static SRCU domain (dmemcg_srcu). SRCU is a better fit than rwsem for this use: it avoids the per-region lock overhead on every reclaim call, and synchronize_srcu() at unregister time is a rare operation. (Maarten) - Trim in-function comments to focus on what rather than how. Assisted-by: GitHub_Copilot:claude-sonnet-4.6 Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Tested-by: Thadeu Lima de Souza Cascardo <cascardo@igalia.com> Link: https://patch.msgid.link/20260725100036.2372-4-thomas.hellstrom@linux.intel.com Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
1045 lines
26 KiB
C
1045 lines
26 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright 2023-2024 Intel Corporation (Maarten Lankhorst <dev@lankhorst.se>)
|
|
* Copyright 2024 Red Hat (Maxime Ripard <mripard@kernel.org>)
|
|
* Partially based on the rdma and misc controllers, which bear the following copyrights:
|
|
*
|
|
* Copyright 2020 Google LLC
|
|
* Copyright (C) 2016 Parav Pandit <pandit.parav@gmail.com>
|
|
*/
|
|
|
|
#include <linux/cgroup.h>
|
|
#include <linux/cgroup_dmem.h>
|
|
#include <linux/list.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/page_counter.h>
|
|
#include <linux/parser.h>
|
|
#include <linux/refcount.h>
|
|
#include <linux/rculist.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/srcu.h>
|
|
|
|
/* Maximum reclaim attempts before giving up when lowering dmem.max. */
|
|
#define DMEM_MAX_RECLAIM_RETRIES 16
|
|
|
|
/* SRCU domain serialising reclaim callbacks against region unregistration. */
|
|
DEFINE_STATIC_SRCU(dmemcg_srcu);
|
|
|
|
struct dmem_cgroup_region {
|
|
/**
|
|
* @ref: References keeping the region alive.
|
|
* Keeps the region reference alive after a succesful RCU lookup.
|
|
*/
|
|
struct kref ref;
|
|
|
|
/** @rcu: RCU head for freeing */
|
|
struct rcu_head rcu;
|
|
|
|
/**
|
|
* @region_node: Linked into &dmem_cgroup_regions list.
|
|
* Protected by RCU and global spinlock.
|
|
*/
|
|
struct list_head region_node;
|
|
|
|
/**
|
|
* @pools: List of pools linked to this region.
|
|
* Protected by global spinlock only
|
|
*/
|
|
struct list_head pools;
|
|
|
|
/** @size: Size of region, in bytes */
|
|
u64 size;
|
|
|
|
/** @name: Name describing the node, set by dmem_cgroup_register_region */
|
|
char *name;
|
|
|
|
/**
|
|
* @unregistered: Whether the region is unregistered by its caller.
|
|
* No new pools should be added to the region afterwards, and no new
|
|
* reclaim callbacks should be invoked.
|
|
*/
|
|
bool unregistered;
|
|
|
|
/**
|
|
* @ops: Optional driver operations for this region.
|
|
*/
|
|
const struct dmem_cgroup_ops *ops;
|
|
|
|
/** @reclaim_priv: Private data passed to @ops->reclaim. */
|
|
void *reclaim_priv;
|
|
};
|
|
|
|
struct dmemcg_state {
|
|
struct cgroup_subsys_state css;
|
|
|
|
struct list_head pools;
|
|
};
|
|
|
|
struct dmem_cgroup_pool_state {
|
|
struct dmem_cgroup_region *region;
|
|
struct dmemcg_state *cs;
|
|
|
|
/* css node, RCU protected against region teardown */
|
|
struct list_head css_node;
|
|
|
|
/* dev node, no RCU protection required */
|
|
struct list_head region_node;
|
|
|
|
struct rcu_head rcu;
|
|
|
|
struct page_counter cnt;
|
|
struct dmem_cgroup_pool_state *parent;
|
|
|
|
refcount_t ref;
|
|
bool inited;
|
|
};
|
|
|
|
/*
|
|
* 3 operations require locking protection:
|
|
* - Registering and unregistering region to/from list, requires global lock.
|
|
* - Adding a dmem_cgroup_pool_state to a CSS, removing when CSS is freed.
|
|
* - Adding a dmem_cgroup_pool_state to a region list.
|
|
*
|
|
* Since for the most common operations RCU provides enough protection, I
|
|
* do not think more granular locking makes sense. Most protection is offered
|
|
* by RCU and the lockless operating page_counter.
|
|
*/
|
|
static DEFINE_SPINLOCK(dmemcg_lock);
|
|
static LIST_HEAD(dmem_cgroup_regions);
|
|
|
|
static void dmemcg_free_region(struct kref *ref);
|
|
static void dmemcg_pool_free_rcu(struct rcu_head *rcu);
|
|
|
|
static inline struct dmemcg_state *
|
|
css_to_dmemcs(struct cgroup_subsys_state *css)
|
|
{
|
|
return container_of(css, struct dmemcg_state, css);
|
|
}
|
|
|
|
static inline struct dmemcg_state *get_current_dmemcs(void)
|
|
{
|
|
return css_to_dmemcs(task_get_css(current, dmem_cgrp_id));
|
|
}
|
|
|
|
static struct dmemcg_state *parent_dmemcs(struct dmemcg_state *cg)
|
|
{
|
|
return cg->css.parent ? css_to_dmemcs(cg->css.parent) : NULL;
|
|
}
|
|
|
|
static void dmemcg_pool_get(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
refcount_inc(&pool->ref);
|
|
}
|
|
|
|
static bool dmemcg_pool_tryget(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return refcount_inc_not_zero(&pool->ref);
|
|
}
|
|
|
|
static void dmemcg_pool_put(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
if (!refcount_dec_and_test(&pool->ref))
|
|
return;
|
|
|
|
call_rcu(&pool->rcu, dmemcg_pool_free_rcu);
|
|
}
|
|
|
|
static void dmemcg_pool_free_rcu(struct rcu_head *rcu)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool = container_of(rcu, typeof(*pool), rcu);
|
|
|
|
if (pool->parent)
|
|
dmemcg_pool_put(pool->parent);
|
|
kref_put(&pool->region->ref, dmemcg_free_region);
|
|
kfree(pool);
|
|
}
|
|
|
|
static void free_cg_pool(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
list_del(&pool->region_node);
|
|
dmemcg_pool_put(pool);
|
|
}
|
|
|
|
static void
|
|
set_resource_min(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
|
|
{
|
|
page_counter_set_min(&pool->cnt, val);
|
|
}
|
|
|
|
static void
|
|
set_resource_low(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
|
|
{
|
|
page_counter_set_low(&pool->cnt, val);
|
|
}
|
|
|
|
static void
|
|
set_resource_max(struct dmem_cgroup_pool_state *pool, u64 val, bool nonblock)
|
|
{
|
|
struct dmem_cgroup_region *region = pool->region;
|
|
unsigned long limit = (unsigned long)val;
|
|
|
|
/* Apply the new limit immediately so concurrent allocations are throttled. */
|
|
xchg(&pool->cnt.max, limit);
|
|
|
|
if (nonblock)
|
|
return;
|
|
|
|
int srcu_idx = srcu_read_lock(&dmemcg_srcu);
|
|
|
|
if (!READ_ONCE(region->unregistered) && region->ops && region->ops->reclaim) {
|
|
for (int retries = DMEM_MAX_RECLAIM_RETRIES; ; ) {
|
|
u64 usage = page_counter_read(&pool->cnt);
|
|
int ret;
|
|
|
|
if (usage <= limit)
|
|
break;
|
|
|
|
if (signal_pending(current))
|
|
break;
|
|
|
|
ret = region->ops->reclaim(pool, usage - limit, region->reclaim_priv);
|
|
|
|
/* -ENOSPC means no progress; other errors are fatal. */
|
|
if (ret && (ret != -ENOSPC || !retries--))
|
|
break;
|
|
|
|
cond_resched();
|
|
}
|
|
}
|
|
srcu_read_unlock(&dmemcg_srcu, srcu_idx);
|
|
}
|
|
|
|
static u64 get_resource_low(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return pool ? READ_ONCE(pool->cnt.low) : 0;
|
|
}
|
|
|
|
static u64 get_resource_min(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return pool ? READ_ONCE(pool->cnt.min) : 0;
|
|
}
|
|
|
|
static u64 get_resource_max(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return pool ? READ_ONCE(pool->cnt.max) : PAGE_COUNTER_MAX;
|
|
}
|
|
|
|
static u64 get_resource_current(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return pool ? page_counter_read(&pool->cnt) : 0;
|
|
}
|
|
|
|
static u64 get_resource_peak(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
return pool ? READ_ONCE(pool->cnt.watermark) : 0;
|
|
}
|
|
|
|
static void reset_all_resource_limits(struct dmem_cgroup_pool_state *rpool)
|
|
{
|
|
set_resource_min(rpool, 0, false);
|
|
set_resource_low(rpool, 0, false);
|
|
/* nonblock: raising to max makes reclaim a no-op; sleeping is forbidden here. */
|
|
set_resource_max(rpool, PAGE_COUNTER_MAX, true);
|
|
}
|
|
|
|
static void dmemcs_offline(struct cgroup_subsys_state *css)
|
|
{
|
|
struct dmemcg_state *dmemcs = css_to_dmemcs(css);
|
|
struct dmem_cgroup_pool_state *pool;
|
|
|
|
rcu_read_lock();
|
|
list_for_each_entry_rcu(pool, &dmemcs->pools, css_node)
|
|
reset_all_resource_limits(pool);
|
|
rcu_read_unlock();
|
|
}
|
|
|
|
static void dmemcs_free(struct cgroup_subsys_state *css)
|
|
{
|
|
struct dmemcg_state *dmemcs = css_to_dmemcs(css);
|
|
struct dmem_cgroup_pool_state *pool, *next;
|
|
|
|
spin_lock(&dmemcg_lock);
|
|
list_for_each_entry_safe(pool, next, &dmemcs->pools, css_node) {
|
|
/*
|
|
*The pool is dead and all references are 0,
|
|
* no need for RCU protection with list_del_rcu or freeing.
|
|
*/
|
|
list_del(&pool->css_node);
|
|
free_cg_pool(pool);
|
|
}
|
|
spin_unlock(&dmemcg_lock);
|
|
|
|
kfree(dmemcs);
|
|
}
|
|
|
|
static struct cgroup_subsys_state *
|
|
dmemcs_alloc(struct cgroup_subsys_state *parent_css)
|
|
{
|
|
struct dmemcg_state *dmemcs = kzalloc_obj(*dmemcs);
|
|
if (!dmemcs)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
INIT_LIST_HEAD(&dmemcs->pools);
|
|
return &dmemcs->css;
|
|
}
|
|
|
|
static struct dmem_cgroup_pool_state *
|
|
find_cg_pool_locked(struct dmemcg_state *dmemcs, struct dmem_cgroup_region *region)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool;
|
|
|
|
list_for_each_entry_rcu(pool, &dmemcs->pools, css_node, spin_is_locked(&dmemcg_lock))
|
|
if (pool->region == region)
|
|
return pool;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static struct dmem_cgroup_pool_state *pool_parent(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
if (!pool->cnt.parent)
|
|
return NULL;
|
|
|
|
return container_of(pool->cnt.parent, typeof(*pool), cnt);
|
|
}
|
|
|
|
static void
|
|
dmem_cgroup_calculate_protection(struct dmem_cgroup_pool_state *limit_pool,
|
|
struct dmem_cgroup_pool_state *test_pool)
|
|
{
|
|
struct page_counter *climit;
|
|
struct cgroup_subsys_state *css;
|
|
struct dmemcg_state *dmemcg_iter;
|
|
struct dmem_cgroup_pool_state *pool, *found_pool;
|
|
|
|
climit = &limit_pool->cnt;
|
|
|
|
rcu_read_lock();
|
|
|
|
css_for_each_descendant_pre(css, &limit_pool->cs->css) {
|
|
dmemcg_iter = container_of(css, struct dmemcg_state, css);
|
|
found_pool = NULL;
|
|
|
|
list_for_each_entry_rcu(pool, &dmemcg_iter->pools, css_node) {
|
|
if (pool->region == limit_pool->region) {
|
|
found_pool = pool;
|
|
break;
|
|
}
|
|
}
|
|
if (!found_pool)
|
|
continue;
|
|
|
|
page_counter_calculate_protection(
|
|
climit, &found_pool->cnt, true);
|
|
|
|
if (found_pool == test_pool)
|
|
break;
|
|
}
|
|
rcu_read_unlock();
|
|
}
|
|
|
|
/**
|
|
* dmem_cgroup_state_evict_valuable() - Check if we should evict from test_pool
|
|
* @limit_pool: The pool for which we hit limits
|
|
* @test_pool: The pool for which to test
|
|
* @ignore_low: Whether we have to respect low watermarks.
|
|
* @ret_hit_low: Pointer to whether it makes sense to consider low watermark.
|
|
*
|
|
* This function returns true if we can evict from @test_pool, false if not.
|
|
* When returning false and @ignore_low is false, @ret_hit_low may
|
|
* be set to true to indicate this function can be retried with @ignore_low
|
|
* set to true.
|
|
*
|
|
* Return: bool
|
|
*/
|
|
bool dmem_cgroup_state_evict_valuable(struct dmem_cgroup_pool_state *limit_pool,
|
|
struct dmem_cgroup_pool_state *test_pool,
|
|
bool ignore_low, bool *ret_hit_low)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool = test_pool;
|
|
struct page_counter *ctest;
|
|
u64 used, min, low;
|
|
|
|
/* Can always evict from current pool, despite limits */
|
|
if (limit_pool == test_pool)
|
|
return true;
|
|
|
|
if (limit_pool) {
|
|
if (!parent_dmemcs(limit_pool->cs))
|
|
return true;
|
|
|
|
for (pool = test_pool; pool && limit_pool != pool; pool = pool_parent(pool))
|
|
{}
|
|
|
|
if (!pool)
|
|
return false;
|
|
} else {
|
|
/*
|
|
* If there is no cgroup limiting memory usage, use the root
|
|
* cgroup instead for limit calculations.
|
|
*/
|
|
for (limit_pool = test_pool; pool_parent(limit_pool); limit_pool = pool_parent(limit_pool))
|
|
{}
|
|
}
|
|
|
|
ctest = &test_pool->cnt;
|
|
|
|
dmem_cgroup_calculate_protection(limit_pool, test_pool);
|
|
|
|
used = page_counter_read(ctest);
|
|
min = READ_ONCE(ctest->emin);
|
|
|
|
if (used <= min)
|
|
return false;
|
|
|
|
if (!ignore_low) {
|
|
low = READ_ONCE(ctest->elow);
|
|
if (used > low)
|
|
return true;
|
|
|
|
*ret_hit_low = true;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_state_evict_valuable);
|
|
|
|
static struct dmem_cgroup_pool_state *
|
|
alloc_pool_single(struct dmemcg_state *dmemcs, struct dmem_cgroup_region *region,
|
|
struct dmem_cgroup_pool_state **allocpool)
|
|
{
|
|
struct dmemcg_state *parent = parent_dmemcs(dmemcs);
|
|
struct dmem_cgroup_pool_state *pool, *ppool = NULL;
|
|
|
|
if (!*allocpool) {
|
|
pool = kzalloc_obj(*pool, GFP_NOWAIT);
|
|
if (!pool)
|
|
return ERR_PTR(-ENOMEM);
|
|
} else {
|
|
pool = *allocpool;
|
|
*allocpool = NULL;
|
|
}
|
|
|
|
pool->region = region;
|
|
pool->cs = dmemcs;
|
|
|
|
if (parent)
|
|
ppool = find_cg_pool_locked(parent, region);
|
|
|
|
page_counter_init(&pool->cnt,
|
|
ppool ? &ppool->cnt : NULL, true);
|
|
reset_all_resource_limits(pool);
|
|
refcount_set(&pool->ref, 1);
|
|
kref_get(®ion->ref);
|
|
if (ppool && !pool->parent) {
|
|
pool->parent = ppool;
|
|
dmemcg_pool_get(ppool);
|
|
}
|
|
|
|
list_add_tail_rcu(&pool->css_node, &dmemcs->pools);
|
|
list_add_tail(&pool->region_node, ®ion->pools);
|
|
|
|
if (!parent)
|
|
pool->inited = true;
|
|
else
|
|
pool->inited = ppool ? ppool->inited : false;
|
|
return pool;
|
|
}
|
|
|
|
static struct dmem_cgroup_pool_state *
|
|
get_cg_pool_locked(struct dmemcg_state *dmemcs, struct dmem_cgroup_region *region,
|
|
struct dmem_cgroup_pool_state **allocpool)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool, *ppool, *retpool;
|
|
struct dmemcg_state *p, *pp;
|
|
|
|
/*
|
|
* Recursively create pool, we may not initialize yet on
|
|
* recursion, this is done as a separate step.
|
|
*/
|
|
for (p = dmemcs; p; p = parent_dmemcs(p)) {
|
|
pool = find_cg_pool_locked(p, region);
|
|
if (!pool)
|
|
pool = alloc_pool_single(p, region, allocpool);
|
|
|
|
if (IS_ERR(pool))
|
|
return pool;
|
|
|
|
if (p == dmemcs && pool->inited)
|
|
return pool;
|
|
|
|
if (pool->inited)
|
|
break;
|
|
}
|
|
|
|
retpool = pool = find_cg_pool_locked(dmemcs, region);
|
|
for (p = dmemcs, pp = parent_dmemcs(dmemcs); pp; p = pp, pp = parent_dmemcs(p)) {
|
|
if (pool->inited)
|
|
break;
|
|
|
|
/* ppool was created if it didn't exist by above loop. */
|
|
ppool = find_cg_pool_locked(pp, region);
|
|
|
|
/* Fix up parent links, mark as inited. */
|
|
pool->cnt.parent = &ppool->cnt;
|
|
if (ppool && !pool->parent) {
|
|
pool->parent = ppool;
|
|
dmemcg_pool_get(ppool);
|
|
}
|
|
pool->inited = true;
|
|
|
|
pool = ppool;
|
|
}
|
|
|
|
return retpool;
|
|
}
|
|
|
|
static void dmemcg_free_rcu(struct rcu_head *rcu)
|
|
{
|
|
struct dmem_cgroup_region *region = container_of(rcu, typeof(*region), rcu);
|
|
struct dmem_cgroup_pool_state *pool, *next;
|
|
|
|
list_for_each_entry_safe(pool, next, ®ion->pools, region_node)
|
|
free_cg_pool(pool);
|
|
kfree(region->name);
|
|
kfree(region);
|
|
}
|
|
|
|
static void dmemcg_free_region(struct kref *ref)
|
|
{
|
|
struct dmem_cgroup_region *cgregion = container_of(ref, typeof(*cgregion), ref);
|
|
|
|
call_rcu(&cgregion->rcu, dmemcg_free_rcu);
|
|
}
|
|
|
|
/**
|
|
* dmem_cgroup_unregister_region() - Unregister a previously registered region.
|
|
* @region: The region to unregister.
|
|
*
|
|
* This function undoes dmem_cgroup_register_region. It drains any
|
|
* in-flight reclaim callbacks before returning, so the caller may safely
|
|
* free the resources pointed to by the @reclaim_priv that was passed at
|
|
* registration time.
|
|
*/
|
|
void dmem_cgroup_unregister_region(struct dmem_cgroup_region *region)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool, *next;
|
|
|
|
if (!region)
|
|
return;
|
|
|
|
spin_lock(&dmemcg_lock);
|
|
|
|
/* Remove from global region list */
|
|
list_del_rcu(®ion->region_node);
|
|
|
|
list_for_each_entry_safe(pool, next, ®ion->pools, region_node) {
|
|
list_del_rcu(&pool->css_node);
|
|
list_del(&pool->region_node);
|
|
dmemcg_pool_put(pool);
|
|
}
|
|
|
|
/*
|
|
* Ensure any RCU based lookups fail. Additionally,
|
|
* no new pools should be added to the dead region
|
|
* by get_cg_pool_unlocked.
|
|
*/
|
|
WRITE_ONCE(region->unregistered, true);
|
|
spin_unlock(&dmemcg_lock);
|
|
|
|
synchronize_srcu(&dmemcg_srcu);
|
|
|
|
kref_put(®ion->ref, dmemcg_free_region);
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_unregister_region);
|
|
|
|
/**
|
|
* dmem_cgroup_register_region() - Register a regions for dev cgroup.
|
|
* @init: Initialization parameters for the region.
|
|
* @fmt: Region parameters to register
|
|
*
|
|
* This function registers a node in the dmem cgroup with the
|
|
* name given. After calling this function, the region can be
|
|
* used for allocations.
|
|
*
|
|
* Return: NULL or a struct on success, PTR_ERR on failure.
|
|
*/
|
|
struct dmem_cgroup_region *
|
|
dmem_cgroup_register_region(const struct dmem_cgroup_init *init,
|
|
const char *fmt, ...)
|
|
{
|
|
struct dmem_cgroup_region *ret;
|
|
char *region_name;
|
|
va_list ap;
|
|
|
|
if (!init || !init->size)
|
|
return NULL;
|
|
|
|
va_start(ap, fmt);
|
|
region_name = kvasprintf(GFP_KERNEL, fmt, ap);
|
|
va_end(ap);
|
|
if (!region_name)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
ret = kzalloc_obj(*ret);
|
|
if (!ret) {
|
|
kfree(region_name);
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
|
|
INIT_LIST_HEAD(&ret->pools);
|
|
ret->name = region_name;
|
|
ret->size = init->size;
|
|
ret->ops = init->ops;
|
|
ret->reclaim_priv = init->reclaim_priv;
|
|
kref_init(&ret->ref);
|
|
|
|
spin_lock(&dmemcg_lock);
|
|
list_add_tail_rcu(&ret->region_node, &dmem_cgroup_regions);
|
|
spin_unlock(&dmemcg_lock);
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_register_region);
|
|
|
|
static struct dmem_cgroup_region *dmemcg_get_region_by_name(const char *name)
|
|
{
|
|
struct dmem_cgroup_region *region;
|
|
|
|
list_for_each_entry_rcu(region, &dmem_cgroup_regions, region_node, spin_is_locked(&dmemcg_lock))
|
|
if (!strcmp(name, region->name) &&
|
|
kref_get_unless_zero(®ion->ref))
|
|
return region;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* dmem_cgroup_pool_state_put() - Drop a reference to a dmem_cgroup_pool_state
|
|
* @pool: &dmem_cgroup_pool_state
|
|
*
|
|
* Called to drop a reference to the limiting pool returned by
|
|
* dmem_cgroup_try_charge().
|
|
*/
|
|
void dmem_cgroup_pool_state_put(struct dmem_cgroup_pool_state *pool)
|
|
{
|
|
if (pool) {
|
|
css_put(&pool->cs->css);
|
|
dmemcg_pool_put(pool);
|
|
}
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_pool_state_put);
|
|
|
|
static struct dmem_cgroup_pool_state *
|
|
get_cg_pool_unlocked(struct dmemcg_state *cg, struct dmem_cgroup_region *region)
|
|
{
|
|
struct dmem_cgroup_pool_state *pool, *allocpool = NULL;
|
|
|
|
/* fastpath lookup? */
|
|
rcu_read_lock();
|
|
pool = find_cg_pool_locked(cg, region);
|
|
if (pool && !READ_ONCE(pool->inited))
|
|
pool = NULL;
|
|
if (pool && !dmemcg_pool_tryget(pool))
|
|
pool = NULL;
|
|
rcu_read_unlock();
|
|
|
|
while (!pool) {
|
|
spin_lock(&dmemcg_lock);
|
|
if (!region->unregistered)
|
|
pool = get_cg_pool_locked(cg, region, &allocpool);
|
|
else
|
|
pool = ERR_PTR(-ENODEV);
|
|
if (!IS_ERR(pool))
|
|
dmemcg_pool_get(pool);
|
|
spin_unlock(&dmemcg_lock);
|
|
|
|
if (pool == ERR_PTR(-ENOMEM)) {
|
|
pool = NULL;
|
|
if (WARN_ON(allocpool))
|
|
continue;
|
|
|
|
allocpool = kzalloc_obj(*allocpool);
|
|
if (allocpool) {
|
|
pool = NULL;
|
|
continue;
|
|
}
|
|
pool = ERR_PTR(-ENOMEM);
|
|
}
|
|
}
|
|
|
|
kfree(allocpool);
|
|
return pool;
|
|
}
|
|
|
|
/**
|
|
* dmem_cgroup_uncharge() - Uncharge a pool.
|
|
* @pool: Pool to uncharge.
|
|
* @size: Size to uncharge.
|
|
*
|
|
* Undoes the effects of dmem_cgroup_try_charge.
|
|
* Must be called with the returned pool as argument,
|
|
* and same @index and @size.
|
|
*/
|
|
void dmem_cgroup_uncharge(struct dmem_cgroup_pool_state *pool, u64 size)
|
|
{
|
|
if (!pool)
|
|
return;
|
|
|
|
page_counter_uncharge(&pool->cnt, size);
|
|
css_put(&pool->cs->css);
|
|
dmemcg_pool_put(pool);
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_uncharge);
|
|
|
|
/**
|
|
* dmem_cgroup_try_charge() - Try charging a new allocation to a region.
|
|
* @region: dmem region to charge
|
|
* @size: Size (in bytes) to charge.
|
|
* @ret_pool: On succesfull allocation, the pool that is charged.
|
|
* @ret_limit_pool: On a failed allocation, the limiting pool.
|
|
*
|
|
* This function charges the @region region for a size of @size bytes.
|
|
*
|
|
* If the function succeeds, @ret_pool is set, which must be passed to
|
|
* dmem_cgroup_uncharge() when undoing the allocation.
|
|
*
|
|
* When this function fails with -EAGAIN and @ret_limit_pool is non-null, it
|
|
* will be set to the pool for which the limit is hit. This can be used for
|
|
* eviction as argument to dmem_cgroup_evict_valuable(). This reference must be freed
|
|
* with @dmem_cgroup_pool_state_put().
|
|
*
|
|
* Return: 0 on success, -EAGAIN on hitting a limit, or a negative errno on failure.
|
|
*/
|
|
int dmem_cgroup_try_charge(struct dmem_cgroup_region *region, u64 size,
|
|
struct dmem_cgroup_pool_state **ret_pool,
|
|
struct dmem_cgroup_pool_state **ret_limit_pool)
|
|
{
|
|
struct dmemcg_state *cg;
|
|
struct dmem_cgroup_pool_state *pool;
|
|
struct page_counter *fail;
|
|
int ret;
|
|
|
|
*ret_pool = NULL;
|
|
if (ret_limit_pool)
|
|
*ret_limit_pool = NULL;
|
|
|
|
/*
|
|
* hold on to css, as cgroup can be removed but resource
|
|
* accounting happens on css.
|
|
*/
|
|
cg = get_current_dmemcs();
|
|
|
|
pool = get_cg_pool_unlocked(cg, region);
|
|
if (IS_ERR(pool)) {
|
|
ret = PTR_ERR(pool);
|
|
goto err;
|
|
}
|
|
|
|
if (!page_counter_try_charge(&pool->cnt, size, &fail)) {
|
|
if (ret_limit_pool) {
|
|
*ret_limit_pool = container_of(fail, struct dmem_cgroup_pool_state, cnt);
|
|
css_get(&(*ret_limit_pool)->cs->css);
|
|
dmemcg_pool_get(*ret_limit_pool);
|
|
}
|
|
dmemcg_pool_put(pool);
|
|
ret = -EAGAIN;
|
|
goto err;
|
|
}
|
|
|
|
/* On success, reference from get_current_dmemcs is transferred to *ret_pool */
|
|
*ret_pool = pool;
|
|
return 0;
|
|
|
|
err:
|
|
css_put(&cg->css);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_try_charge);
|
|
|
|
/**
|
|
* dmem_cgroup_below_min() - Tests whether current usage is within min limit.
|
|
*
|
|
* @root: Root of the subtree to calculate protection for, or NULL to calculate global protection.
|
|
* @test: The pool to test the usage/min limit of.
|
|
*
|
|
* Return: true if usage is below min and the cgroup is protected, false otherwise.
|
|
*/
|
|
bool dmem_cgroup_below_min(struct dmem_cgroup_pool_state *root,
|
|
struct dmem_cgroup_pool_state *test)
|
|
{
|
|
if (root == test || !pool_parent(test))
|
|
return false;
|
|
|
|
if (!root) {
|
|
for (root = test; pool_parent(root); root = pool_parent(root))
|
|
{}
|
|
}
|
|
|
|
/*
|
|
* In mem_cgroup_below_min(), the memcg pendant, this call is missing.
|
|
* mem_cgroup_below_min() gets called during traversal of the cgroup tree, where
|
|
* protection is already calculated as part of the traversal. dmem cgroup eviction
|
|
* does not traverse the cgroup tree, so we need to recalculate effective protection
|
|
* here.
|
|
*/
|
|
dmem_cgroup_calculate_protection(root, test);
|
|
return page_counter_read(&test->cnt) <= READ_ONCE(test->cnt.emin);
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_below_min);
|
|
|
|
/**
|
|
* dmem_cgroup_below_low() - Tests whether current usage is within low limit.
|
|
*
|
|
* @root: Root of the subtree to calculate protection for, or NULL to calculate global protection.
|
|
* @test: The pool to test the usage/low limit of.
|
|
*
|
|
* Return: true if usage is below low and the cgroup is protected, false otherwise.
|
|
*/
|
|
bool dmem_cgroup_below_low(struct dmem_cgroup_pool_state *root,
|
|
struct dmem_cgroup_pool_state *test)
|
|
{
|
|
if (root == test || !pool_parent(test))
|
|
return false;
|
|
|
|
if (!root) {
|
|
for (root = test; pool_parent(root); root = pool_parent(root))
|
|
{}
|
|
}
|
|
|
|
/*
|
|
* In mem_cgroup_below_low(), the memcg pendant, this call is missing.
|
|
* mem_cgroup_below_low() gets called during traversal of the cgroup tree, where
|
|
* protection is already calculated as part of the traversal. dmem cgroup eviction
|
|
* does not traverse the cgroup tree, so we need to recalculate effective protection
|
|
* here.
|
|
*/
|
|
dmem_cgroup_calculate_protection(root, test);
|
|
return page_counter_read(&test->cnt) <= READ_ONCE(test->cnt.elow);
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_below_low);
|
|
|
|
/**
|
|
* dmem_cgroup_get_common_ancestor(): Find the first common ancestor of two pools.
|
|
* @a: First pool to find the common ancestor of.
|
|
* @b: First pool to find the common ancestor of.
|
|
*
|
|
* Return: The first pool that is a parent of both @a and @b, or NULL if either @a or @b are NULL,
|
|
* or if such a pool does not exist. A reference to the returned pool is grabbed and must be
|
|
* released by the caller when it is done using the pool.
|
|
*/
|
|
struct dmem_cgroup_pool_state *dmem_cgroup_get_common_ancestor(struct dmem_cgroup_pool_state *a,
|
|
struct dmem_cgroup_pool_state *b)
|
|
{
|
|
struct cgroup *ancestor_cgroup;
|
|
struct cgroup_subsys_state *ancestor_css;
|
|
struct dmemcg_state *ancestor_dmemcs = NULL;
|
|
struct dmem_cgroup_pool_state *pool = NULL;
|
|
|
|
if (!a || !b)
|
|
return NULL;
|
|
|
|
ancestor_cgroup = cgroup_common_ancestor(a->cs->css.cgroup, b->cs->css.cgroup);
|
|
if (!ancestor_cgroup)
|
|
return NULL;
|
|
|
|
rcu_read_lock();
|
|
ancestor_css = cgroup_e_css(ancestor_cgroup, &dmem_cgrp_subsys);
|
|
if (css_tryget(ancestor_css))
|
|
ancestor_dmemcs = css_to_dmemcs(ancestor_css);
|
|
rcu_read_unlock();
|
|
|
|
if (ancestor_dmemcs) {
|
|
pool = get_cg_pool_unlocked(css_to_dmemcs(ancestor_css),
|
|
a->region);
|
|
if (WARN_ON(IS_ERR(pool))) {
|
|
pool = NULL;
|
|
css_put(ancestor_css);
|
|
}
|
|
}
|
|
return pool;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dmem_cgroup_get_common_ancestor);
|
|
|
|
static int dmem_cgroup_region_capacity_show(struct seq_file *sf, void *v)
|
|
{
|
|
struct dmem_cgroup_region *region;
|
|
|
|
rcu_read_lock();
|
|
list_for_each_entry_rcu(region, &dmem_cgroup_regions, region_node) {
|
|
seq_puts(sf, region->name);
|
|
seq_printf(sf, " %llu\n", region->size);
|
|
}
|
|
rcu_read_unlock();
|
|
return 0;
|
|
}
|
|
|
|
static int dmemcg_parse_limit(char *options, u64 *new_limit)
|
|
{
|
|
char *end;
|
|
|
|
if (!strcmp(options, "max")) {
|
|
*new_limit = PAGE_COUNTER_MAX;
|
|
return 0;
|
|
}
|
|
|
|
*new_limit = memparse(options, &end);
|
|
if (*end != '\0')
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static ssize_t dmemcg_limit_write(struct kernfs_open_file *of,
|
|
char *buf, size_t nbytes, loff_t off,
|
|
void (*apply)(struct dmem_cgroup_pool_state *, u64, bool))
|
|
{
|
|
struct dmemcg_state *dmemcs = css_to_dmemcs(of_css(of));
|
|
struct dmem_cgroup_pool_state *pool;
|
|
struct dmem_cgroup_region *region;
|
|
bool nonblock = of->file->f_flags & O_NONBLOCK;
|
|
char *region_name;
|
|
u64 new_limit;
|
|
int err;
|
|
|
|
buf = strstrip(buf);
|
|
region_name = strsep(&buf, " \t");
|
|
if (!buf || !region_name[0])
|
|
return -EINVAL;
|
|
|
|
rcu_read_lock();
|
|
region = dmemcg_get_region_by_name(region_name);
|
|
rcu_read_unlock();
|
|
if (!region)
|
|
return -EINVAL;
|
|
|
|
err = dmemcg_parse_limit(buf, &new_limit);
|
|
if (err < 0)
|
|
goto out_put;
|
|
|
|
pool = get_cg_pool_unlocked(dmemcs, region);
|
|
if (IS_ERR(pool)) {
|
|
err = PTR_ERR(pool);
|
|
goto out_put;
|
|
}
|
|
|
|
apply(pool, new_limit, nonblock);
|
|
dmemcg_pool_put(pool);
|
|
|
|
out_put:
|
|
kref_put(®ion->ref, dmemcg_free_region);
|
|
|
|
return err ?: nbytes;
|
|
}
|
|
|
|
static int dmemcg_limit_show(struct seq_file *sf, void *v,
|
|
u64 (*fn)(struct dmem_cgroup_pool_state *))
|
|
{
|
|
struct dmemcg_state *dmemcs = css_to_dmemcs(seq_css(sf));
|
|
struct dmem_cgroup_region *region;
|
|
|
|
rcu_read_lock();
|
|
list_for_each_entry_rcu(region, &dmem_cgroup_regions, region_node) {
|
|
struct dmem_cgroup_pool_state *pool = find_cg_pool_locked(dmemcs, region);
|
|
u64 val;
|
|
|
|
seq_puts(sf, region->name);
|
|
|
|
val = fn(pool);
|
|
if (val < PAGE_COUNTER_MAX)
|
|
seq_printf(sf, " %lld\n", val);
|
|
else
|
|
seq_puts(sf, " max\n");
|
|
}
|
|
rcu_read_unlock();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int dmem_cgroup_region_peak_show(struct seq_file *sf, void *v)
|
|
{
|
|
return dmemcg_limit_show(sf, v, get_resource_peak);
|
|
}
|
|
|
|
static int dmem_cgroup_region_current_show(struct seq_file *sf, void *v)
|
|
{
|
|
return dmemcg_limit_show(sf, v, get_resource_current);
|
|
}
|
|
|
|
static int dmem_cgroup_region_min_show(struct seq_file *sf, void *v)
|
|
{
|
|
return dmemcg_limit_show(sf, v, get_resource_min);
|
|
}
|
|
|
|
static ssize_t dmem_cgroup_region_min_write(struct kernfs_open_file *of,
|
|
char *buf, size_t nbytes, loff_t off)
|
|
{
|
|
return dmemcg_limit_write(of, buf, nbytes, off, set_resource_min);
|
|
}
|
|
|
|
static int dmem_cgroup_region_low_show(struct seq_file *sf, void *v)
|
|
{
|
|
return dmemcg_limit_show(sf, v, get_resource_low);
|
|
}
|
|
|
|
static ssize_t dmem_cgroup_region_low_write(struct kernfs_open_file *of,
|
|
char *buf, size_t nbytes, loff_t off)
|
|
{
|
|
return dmemcg_limit_write(of, buf, nbytes, off, set_resource_low);
|
|
}
|
|
|
|
static int dmem_cgroup_region_max_show(struct seq_file *sf, void *v)
|
|
{
|
|
return dmemcg_limit_show(sf, v, get_resource_max);
|
|
}
|
|
|
|
static ssize_t dmem_cgroup_region_max_write(struct kernfs_open_file *of,
|
|
char *buf, size_t nbytes, loff_t off)
|
|
{
|
|
return dmemcg_limit_write(of, buf, nbytes, off, set_resource_max);
|
|
}
|
|
|
|
static struct cftype files[] = {
|
|
{
|
|
.name = "capacity",
|
|
.seq_show = dmem_cgroup_region_capacity_show,
|
|
.flags = CFTYPE_ONLY_ON_ROOT,
|
|
},
|
|
{
|
|
.name = "current",
|
|
.seq_show = dmem_cgroup_region_current_show,
|
|
},
|
|
{
|
|
.name = "peak",
|
|
.seq_show = dmem_cgroup_region_peak_show,
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
},
|
|
{
|
|
.name = "min",
|
|
.write = dmem_cgroup_region_min_write,
|
|
.seq_show = dmem_cgroup_region_min_show,
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
},
|
|
{
|
|
.name = "low",
|
|
.write = dmem_cgroup_region_low_write,
|
|
.seq_show = dmem_cgroup_region_low_show,
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
},
|
|
{
|
|
.name = "max",
|
|
.write = dmem_cgroup_region_max_write,
|
|
.seq_show = dmem_cgroup_region_max_show,
|
|
.flags = CFTYPE_NOT_ON_ROOT,
|
|
},
|
|
{ } /* Zero entry terminates. */
|
|
};
|
|
|
|
struct cgroup_subsys dmem_cgrp_subsys = {
|
|
.css_alloc = dmemcs_alloc,
|
|
.css_free = dmemcs_free,
|
|
.css_offline = dmemcs_offline,
|
|
.legacy_cftypes = files,
|
|
.dfl_cftypes = files,
|
|
};
|