summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-01 04:00:19 -0400
committerIan Moffett <ian@osmora.org>2025-07-01 04:00:19 -0400
commitba76ec6d4eb0bac8af9a3a6c0e9f53e53eb8d3f3 (patch)
tree601015679a7abeff68a8dc44520ffb2ed82e905a
parentb42954b734b26382cb2a764de1feb661add47b1f (diff)
kernel: tmpfs: Remove debugging kprintf()
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r--sys/fs/tmpfs.c1
1 files changed, 0 insertions, 1 deletions
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;
}