mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/5] Enhance Union-Find with KUnit tests and optimization improvements
@ 2024-10-05 21:49 Kuan-Wei Chiu
  2024-10-05 21:49 ` [PATCH 1/5] lib/union_find: Add EXPORT_SYMBOL() for uf_find() and uf_union() Kuan-Wei Chiu
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Kuan-Wei Chiu @ 2024-10-05 21:49 UTC (permalink / raw)
  To: xavier_qy, longman, lizefan.x, tj, hannes, mkoutny, akpm
  Cc: jserv, linux-kernel, cgroups, Kuan-Wei Chiu

This patch series adds KUnit tests for the Union-Find implementation
and optimizes the path compression in the uf_find() function to achieve
a lower tree height and improved efficiency. Additionally, it modifies
uf_union() to return a boolean value indicating whether a merge
occurred, enhancing the process of calculating the number of groups in
the cgroup cpuset.

Regards,
Kuan-Wei

Kuan-Wei Chiu (5):
  lib/union_find: Add EXPORT_SYMBOL() for uf_find() and uf_union()
  lib/union_find: Change uf_union() return type to bool
  lib: Add KUnit tests for Union-Find implementation
  lib/union_find: Optimize uf_find() with enhanced path compression
  cgroup/cpuset: Optimize total domain count using updated uf_union()

 MAINTAINERS                |  1 +
 include/linux/union_find.h |  2 +-
 kernel/cgroup/cpuset.c     | 10 ++----
 lib/Kconfig.debug          | 12 +++++++
 lib/Makefile               |  1 +
 lib/union_find.c           | 20 ++++++++---
 lib/union_find_kunit.c     | 74 ++++++++++++++++++++++++++++++++++++++
 7 files changed, 108 insertions(+), 12 deletions(-)
 create mode 100644 lib/union_find_kunit.c

-- 
2.34.1


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-10-07 13:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-05 21:49 [PATCH 0/5] Enhance Union-Find with KUnit tests and optimization improvements Kuan-Wei Chiu
2024-10-05 21:49 ` [PATCH 1/5] lib/union_find: Add EXPORT_SYMBOL() for uf_find() and uf_union() Kuan-Wei Chiu
2024-10-05 21:49 ` [PATCH 2/5] lib/union_find: Change uf_union() return type to bool Kuan-Wei Chiu
2024-10-05 21:49 ` [PATCH 3/5] lib: Add KUnit tests for Union-Find implementation Kuan-Wei Chiu
2024-10-07 13:14   ` Xavier
2024-10-05 21:49 ` [PATCH 4/5] lib/union_find: Optimize uf_find() with enhanced path compression Kuan-Wei Chiu
2024-10-07 13:18   ` Xavier
2024-10-05 21:49 ` [PATCH 5/5] cgroup/cpuset: Optimize total domain count using updated uf_union() Kuan-Wei Chiu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®