mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
mm/damon/sysfs-schemes: use nr_accesses_bp as the source of tried_regions/<N>/nr_accesses
DAMON sysfs interface exposes access rate of each region via DAMOS tried regions directory. For this, the nr_accesses field of the region is used. DAMOS was actually using nr_accesses in the past, but it uses nr_accesses_bp now. Use the value that it is really using as the source. Note that this doesn't expose nr_accesses_bp as is (in basis point), but after converting it to the natural number by dividing the value by 10,000. Hence there is no behavioral change from users' perspective. Link: https://lkml.kernel.org/r/20230916020945.47296-3-sj@kernel.org Signed-off-by: SeongJae Park <sj@kernel.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Shuah Khan <shuah@kernel.org> Cc: Steven Rostedt (Google) <rostedt@goodmis.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
affa87c708
commit
e7639bb48d
@ -31,7 +31,7 @@ static struct damon_sysfs_scheme_region *damon_sysfs_scheme_region_alloc(
|
||||
return NULL;
|
||||
sysfs_region->kobj = (struct kobject){};
|
||||
sysfs_region->ar = region->ar;
|
||||
sysfs_region->nr_accesses = region->nr_accesses;
|
||||
sysfs_region->nr_accesses = region->nr_accesses_bp / 10000;
|
||||
sysfs_region->age = region->age;
|
||||
INIT_LIST_HEAD(&sysfs_region->list);
|
||||
return sysfs_region;
|
||||
|
Loading…
Reference in New Issue
Block a user