logd: worst uid record watermark part deux
Only record watermark if not known, or represents the worst UID currently under focus. This has resulted in a halving of the average prune time in the face of heavy spam because we get less processing spikes. Bug: 23327476 Change-Id: I19f297042b9fc2c98d902695c1c36df1bf5cd6f6
This commit is contained in:
parent
186f1dee2a
commit
49afe0d00f
1 changed files with 5 additions and 1 deletions
|
@ -467,7 +467,11 @@ void LogBuffer::prune(log_id_t id, unsigned long pruneRows, uid_t caller_uid) {
|
|||
// unmerged drop message
|
||||
if (dropped) {
|
||||
last.add(e);
|
||||
mLastWorstUid[id][e->getUid()] = it;
|
||||
if ((e->getUid() == worst)
|
||||
|| (mLastWorstUid[id].find(e->getUid())
|
||||
== mLastWorstUid[id].end())) {
|
||||
mLastWorstUid[id][e->getUid()] = it;
|
||||
}
|
||||
++it;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue