From ba76ec6d4eb0bac8af9a3a6c0e9f53e53eb8d3f3 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 1 Jul 2025 04:00:19 -0400 Subject: kernel: tmpfs: Remove debugging kprintf() Signed-off-by: Ian Moffett --- sys/fs/tmpfs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/fs/tmpfs.c b/sys/fs/tmpfs.c index 9dce89a..50f2d74 100644 --- a/sys/fs/tmpfs.c +++ b/sys/fs/tmpfs.c @@ -287,7 +287,6 @@ tmpfs_write(struct vnode *vp, struct sio_txn *sio) buf = np->data; memcpy(&buf[sio->offset], sio->buf, sio->len); spinlock_release(&np->lock); - kprintf("%d\n", sio->len); return sio->len; } -- cgit v1.2.3