mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
7ae2c17f53
DAMON_RECLAIM and DAMON_LRU_SORT has duplicated code for DAMON context and target initializations. Deduplicate the part by implementing a function for the initialization in 'modules-common.c' and using it. Link: https://lkml.kernel.org/r/20221026225943.100429-12-sj@kernel.org Signed-off-by: SeongJae Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
43 lines
877 B
C
43 lines
877 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Common Primitives for DAMON Modules
|
|
*
|
|
* Author: SeongJae Park <sjpark@amazon.de>
|
|
*/
|
|
|
|
#include <linux/damon.h>
|
|
|
|
#include "modules-common.h"
|
|
|
|
/*
|
|
* Allocate, set, and return a DAMON context for the physical address space.
|
|
* @ctxp: Pointer to save the point to the newly created context
|
|
* @targetp: Pointer to save the point to the newly created target
|
|
*/
|
|
int damon_modules_new_paddr_ctx_target(struct damon_ctx **ctxp,
|
|
struct damon_target **targetp)
|
|
{
|
|
struct damon_ctx *ctx;
|
|
struct damon_target *target;
|
|
|
|
ctx = damon_new_ctx();
|
|
if (!ctx)
|
|
return -ENOMEM;
|
|
|
|
if (damon_select_ops(ctx, DAMON_OPS_PADDR)) {
|
|
damon_destroy_ctx(ctx);
|
|
return -EINVAL;
|
|
}
|
|
|
|
target = damon_new_target();
|
|
if (!target) {
|
|
damon_destroy_ctx(ctx);
|
|
return -ENOMEM;
|
|
}
|
|
damon_add_target(ctx, target);
|
|
|
|
*ctxp = ctx;
|
|
*targetp = target;
|
|
return 0;
|
|
}
|