From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C4482C4167D for ; Tue, 12 Dec 2023 19:22:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233051AbjLLTWT (ORCPT ); Tue, 12 Dec 2023 14:22:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57140 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235135AbjLLTWP (ORCPT ); Tue, 12 Dec 2023 14:22:15 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C6E76B9 for ; Tue, 12 Dec 2023 11:22:21 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DDE4CC433C8; Tue, 12 Dec 2023 19:22:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702408941; bh=i5eA2fXhaq3Do9ywFpJzwHOFQOS7qYLx5BFeshX3BZI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lSUwxVgDk2j4cnZPH/Zy7xE7vjsRTnpogG2abp5kyPRCtT/TZgdYhJerl+EIt8XO+ AZCxf+fPMQpNamCpOTnjqC4DOxO2jnXg7wVICwPQJUTf6RfCL14WhPZuHupkqX7l0O Hq+nJ2IAFAZtDifyGfoR91Vlrlzdh0w8cg/NWZlNbz/mzlhu3X4Kwv8yuSz6GB6uHz PVUgx+D3XmLxKMS4vyobPs59mP5iwt/lGzRutQe8tew0eS6GZcND9rnTgF9gVWr8sg 0Nerc0Xi7synedvS/VCWgFV37xO/7MVPkRGY//8a+vJkxCv/bYg7Qcn9afsFwQw62R IjULLbahcHfEg== From: SeongJae Park To: SeongJae Park Cc: Andrew Morton , Shuah Khan , damon@lists.linux.dev, linux-mm@kvack.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 4/5] selftests/damon: add a test for update_schemes_tried_regions sysfs command Date: Tue, 12 Dec 2023 19:22:18 +0000 Message-Id: <20231212192218.54095-1-sj@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20231212191206.52917-5-sj@kernel.org> References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This and fifth patch of this patchset may not cleanly applicable, since those are made on top of my out-of-tree experimental changes. I will rebase these and send v2. Sorry for the noise. Thanks, SJ On 2023-12-12T19:12:05+00:00 SeongJae Park wrote: > Add a selftest for verifying the accuracy of DAMON's access monitoring > functionality. The test starts a program of artificial access pattern, > monitor the access pattern using DAMON, and check if DAMON finds > expected amount of hot data region (working set size) with only > acceptable error rate. > > Note that the acceptable error rate is set with only naive assumptions > and small number of tests. Hence failures of the test may not always > mean DAMON is broken. Rather than that, those could be a signal to > better understand the real accuracy level of DAMON in wider > environments. Based on further finding, we could optimize DAMON or > adjust the expectation of the test. > > Signed-off-by: SeongJae Park > --- > tools/testing/selftests/damon/Makefile | 2 + > tools/testing/selftests/damon/access_memory.c | 41 ++++++++++++++ > ...te_schemes_tried_regions_wss_estimation.py | 55 +++++++++++++++++++ > 3 files changed, 98 insertions(+) > create mode 100644 tools/testing/selftests/damon/access_memory.c > create mode 100755 tools/testing/selftests/damon/sysfs_update_schemes_tried_regions_wss_estimation.py > > diff --git a/tools/testing/selftests/damon/Makefile b/tools/testing/selftests/damon/Makefile > index d2105d41ea25..1363987709c6 100644 > --- a/tools/testing/selftests/damon/Makefile > +++ b/tools/testing/selftests/damon/Makefile > @@ -4,6 +4,7 @@ > TEST_GEN_FILES += huge_count_read_write > TEST_GEN_FILES += dbgfs_target_ids_read_before_terminate_race > TEST_GEN_FILES += dbgfs_target_ids_pid_leak > +TEST_GEN_FILES += access_memory > > TEST_FILES = _chk_dependency.sh _debugfs_common.sh > TEST_PROGS = debugfs_attrs.sh debugfs_schemes.sh debugfs_target_ids.sh > @@ -11,6 +12,7 @@ TEST_PROGS += debugfs_empty_targets.sh debugfs_huge_count_read_write.sh > TEST_PROGS += debugfs_duplicate_context_creation.sh > TEST_PROGS += debugfs_rm_non_contexts.sh > TEST_PROGS += sysfs.sh sysfs_update_removed_scheme_dir.sh > +TEST_PROGS += sysfs_update_schemes_tried_regions_wss_estimation.py > TEST_PROGS += reclaim.sh lru_sort.sh > TEST_PROGS += dbgfs_target_ids_read_before_terminate_race.sh > TEST_PROGS += dbgfs_target_ids_pid_leak.sh > diff --git a/tools/testing/selftests/damon/access_memory.c b/tools/testing/selftests/damon/access_memory.c > new file mode 100644 > index 000000000000..585a2fa54329 > --- /dev/null > +++ b/tools/testing/selftests/damon/access_memory.c > @@ -0,0 +1,41 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * Artificial memory access program for testing DAMON. > + */ > + > +#include > +#include > +#include > +#include > + > +int main(int argc, char *argv[]) > +{ > + char **regions; > + clock_t start_clock; > + int nr_regions; > + int sz_region; > + int access_time_ms; > + int i; > + > + if (argc != 4) { > + printf("Usage: %s