kernel: Remove debug message in readlink
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7f990b161b
commit
b88da4811f
@ -81,8 +81,6 @@ Result<u64> sys_readlinkat(Registers*, SyscallArgs args)
|
|||||||
usize nread = linkpath.length();
|
usize nread = linkpath.length();
|
||||||
if (nread > bufsiz) nread = bufsiz;
|
if (nread > bufsiz) nread = bufsiz;
|
||||||
|
|
||||||
kdbgln("readlink: reading %zu bytes from symlink (%s)", nread, linkpath.chars());
|
|
||||||
|
|
||||||
if (!MemoryManager::copy_to_user(buf, linkpath.chars(), nread)) return err(EFAULT);
|
if (!MemoryManager::copy_to_user(buf, linkpath.chars(), nread)) return err(EFAULT);
|
||||||
|
|
||||||
return nread;
|
return nread;
|
||||||
|
Loading…
Reference in New Issue
Block a user