All of lore.kernel.org
 help / color / mirror / Atom feed
* [folded-merged] selftests-damon-test-no-op-commit-broke-damon-status-fix.patch removed from -mm tree
@ 2025-09-13 22:13 Andrew Morton
  0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-09-13 22:13 UTC (permalink / raw)
  To: mm-commits, sj, honggyu.kim, ekffu200098, akpm


The quilt patch titled
     Subject: selftests/damon: change wrong json.dump usage to json.dumps
has been removed from the -mm tree.  Its filename was
     selftests-damon-test-no-op-commit-broke-damon-status-fix.patch

This patch was dropped because it was folded into selftests-damon-test-no-op-commit-broke-damon-status.patch

------------------------------------------------------
From: Sang-Heon Jeon <ekffu200098@gmail.com>
Subject: selftests/damon: change wrong json.dump usage to json.dumps
Date: Sat, 16 Aug 2025 10:40:33 +0900

To print drgn status to stdout json.dumps should be used without
json.dump.  Change incorrect function call by typo.

Link: https://lkml.kernel.org/r/20250816014033.190451-1-ekffu200098@gmail.com
Signed-off-by: Sang-Heon Jeon <ekffu200098@gmail.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Cc: Honggyu Kim <honggyu.kim@sk.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 tools/testing/selftests/damon/sysfs_no_op_commit_break.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/tools/testing/selftests/damon/sysfs_no_op_commit_break.py~selftests-damon-test-no-op-commit-broke-damon-status-fix
+++ a/tools/testing/selftests/damon/sysfs_no_op_commit_break.py
@@ -62,8 +62,8 @@ def main():
         exit(1)
 
     if before_commit_status != after_commit_status:
-        print(f'before: {json.dump(before_commit_status, indent=2)}')
-        print(f'after: {json.dump(after_commit_status, indent=2)}')
+        print(f'before: {json.dumps(before_commit_status, indent=2)}')
+        print(f'after: {json.dumps(after_commit_status, indent=2)}')
         exit(1)
 
     kdamonds.stop()
_

Patches currently in -mm which might be from ekffu200098@gmail.com are

mm-damon-update-expired-description-of-damos_action.patch
docs-mm-damon-design-fix-typo-s-sz_trtied-sz_tried.patch
selftests-damon-test-no-op-commit-broke-damon-status.patch
mm-damon-tests-core-kunit-add-damos_commit_filter-test.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-09-13 22:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-13 22:13 [folded-merged] selftests-damon-test-no-op-commit-broke-damon-status-fix.patch removed from -mm tree Andrew Morton

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.