libc: io: remove verbose log messages

This commit is contained in:
2026-05-30 10:06:58 +01:00
parent 07a1d579ca
commit aaea926f4d
2 changed files with 0 additions and 33 deletions
-23
View File
@@ -45,13 +45,6 @@ int __libc_ringbuf_get_read_buffer(
contiguous_capacity = buf->buf_writep - buf->buf_readp;
}
kern_tracef(
"OPEN READ: readp=%zu, writep=%zu, max=%zu -> %p cap=%zu",
buf->buf_readp,
buf->buf_writep,
buf->buf_max,
buf->buf_ptr + buf->buf_readp,
contiguous_capacity);
*out_len = contiguous_capacity;
if (contiguous_capacity == 0) {
@@ -74,8 +67,6 @@ void __libc_ringbuf_put_read_buffer(
buf->buf_readp = buf->buf_writep = 0;
}
kern_tracef("CLOSE READ: %p r=%zu", *bufp, *len);
*bufp = NULL;
*len = 0;
}
@@ -101,14 +92,6 @@ int __libc_ringbuf_get_write_buffer(
contiguous_capacity = buf->buf_readp - buf->buf_writep - 1;
}
kern_tracef(
"OPEN WRITE: readp=%zu, writep=%zu, max=%zu -> %p cap=%zu",
buf->buf_readp,
buf->buf_writep,
buf->buf_max,
buf->buf_ptr + buf->buf_readp,
contiguous_capacity);
*out_len = contiguous_capacity;
if (contiguous_capacity == 0) {
@@ -131,12 +114,6 @@ void __libc_ringbuf_put_write_buffer(
buf->buf_readp = buf->buf_writep = 0;
}
kern_tracef(
"CLOSE WRITE: %p r=%zu (%c)",
*bufp,
*len,
*(char *)(*bufp));
*bufp = NULL;
*len = 0;
}