From 08c78bd6e77ff231163c93a226004da14d67feed Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 21 Feb 2026 11:30:44 +0000 Subject: [PATCH] vm: object: add vm_object_copy syscall trace output --- syscall/vm-object.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/syscall/vm-object.c b/syscall/vm-object.c index fc33383..5b5baeb 100644 --- a/syscall/vm-object.c +++ b/syscall/vm-object.c @@ -111,6 +111,13 @@ kern_status_t sys_vm_object_copy( size_t count, size_t *nr_copied) { + tracek("vm_object_copy(%x, %zx, %x, %zx, %zx, %p)", + dst, + dst_offset, + src, + src_offset, + count, + nr_copied); struct task *self = current_task(); if (nr_copied