Kernel: Disable DiskCache sync messages
This commit is contained in:
parent
8621d8a155
commit
459afef89e
|
@ -5,6 +5,8 @@
|
|||
#include <kernel/Storage/DiskCache.h>
|
||||
#include <kernel/Storage/StorageDevice.h>
|
||||
|
||||
#define DEBUG_SYNC 0
|
||||
|
||||
namespace Kernel
|
||||
{
|
||||
|
||||
|
@ -146,7 +148,7 @@ namespace Kernel
|
|||
sector_start++;
|
||||
else
|
||||
{
|
||||
dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count);
|
||||
dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count);
|
||||
TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size));
|
||||
sector_start += sector_count + 1;
|
||||
sector_count = 0;
|
||||
|
@ -155,7 +157,7 @@ namespace Kernel
|
|||
|
||||
if (sector_count > 0)
|
||||
{
|
||||
dprintln("syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count);
|
||||
dprintln_if(DEBUG_SYNC, "syncing {}->{}", cache.first_sector + sector_start, cache.first_sector + sector_start + sector_count);
|
||||
TRY(m_device.write_sectors_impl(cache.first_sector + sector_start, sector_count, m_sync_cache.data() + sector_start * m_sector_size));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue