mirror of https://github.com/aria2/aria2
Add debug log for aligned cache write
parent
13975f66a2
commit
85cd65a664
|
@ -105,6 +105,8 @@ void AbstractSingleDiskAdaptor::writeCache(const WrDiskCacheEntry* entry)
|
||||||
}
|
}
|
||||||
if(buflen == 0 && ((*i)->goff & 0xfff) == 0 && ((*i)->len & 0xfff) == 0) {
|
if(buflen == 0 && ((*i)->goff & 0xfff) == 0 && ((*i)->len & 0xfff) == 0) {
|
||||||
// Already aligned. Write it without copy.
|
// Already aligned. Write it without copy.
|
||||||
|
A2_LOG_DEBUG(fmt("Cache flush goff=%"PRId64", len=%lu",
|
||||||
|
start, static_cast<unsigned long>((*i)->len)));
|
||||||
writeData((*i)->data + (*i)->offset, (*i)->len, start);
|
writeData((*i)->data + (*i)->offset, (*i)->len, start);
|
||||||
start += (*i)->len;
|
start += (*i)->len;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue