mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Kernel: Stop debug spam when using read on /dev/mem device
This is not really useful and quite annoying so let's disable it by default.
This commit is contained in:
parent
d0abae8907
commit
db8942178a
Notes:
sideshowbarker
2024-07-17 22:55:25 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/db8942178a Pull-request: https://github.com/SerenityOS/serenity/pull/13411
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ UNMAP_AFTER_INIT MemoryDevice::~MemoryDevice() = default;
|
|||
ErrorOr<size_t> MemoryDevice::read(OpenFileDescription&, u64 offset, UserOrKernelBuffer& buffer, size_t length)
|
||||
{
|
||||
if (!MM.is_allowed_to_read_physical_memory_for_userspace(PhysicalAddress(offset), length)) {
|
||||
dbgln("MemoryDevice: Trying to read physical memory at {} for range of {} bytes failed due to violation of access", PhysicalAddress(offset), length);
|
||||
dbgln_if(MEMORY_DEVICE_DEBUG, "MemoryDevice: Trying to read physical memory at {} for range of {} bytes failed due to violation of access", PhysicalAddress(offset), length);
|
||||
return EINVAL;
|
||||
}
|
||||
auto mapping = TRY(Memory::map_typed<u8>(PhysicalAddress(offset), length));
|
||||
|
|
Loading…
Reference in a new issue