Stop passing in statsFile fds as they will be leaked when returned to the caller.
This is safe, as getCommittedStatsMerged() supports null-able values for the List<ParcelFileDescriptor>.
Test: local compile and test; atom still pulls successfully.
Change-Id: I083ea1150f54c5970fbf60ae320809d27c4f3207
Merged-In: I083ea1150f54c5970fbf60ae320809d27c4f3207
Bug: 179008261
(cherry picked from commit e451771a8f)
This commit is contained in:
@@ -2621,7 +2621,6 @@ public class StatsPullAtomService extends SystemService {
|
||||
try {
|
||||
// force procstats to flush & combine old files into one store
|
||||
long lastHighWaterMark = readProcStatsHighWaterMark(section);
|
||||
List<ParcelFileDescriptor> statsFiles = new ArrayList<>();
|
||||
|
||||
ProtoOutputStream[] protoStreams = new ProtoOutputStream[MAX_PROCSTATS_SHARDS];
|
||||
for (int i = 0; i < protoStreams.length; i++) {
|
||||
@@ -2631,7 +2630,7 @@ public class StatsPullAtomService extends SystemService {
|
||||
ProcessStats procStats = new ProcessStats(false);
|
||||
// Force processStatsService to aggregate all in-storage and in-memory data.
|
||||
long highWaterMark = processStatsService.getCommittedStatsMerged(
|
||||
lastHighWaterMark, section, true, statsFiles, procStats);
|
||||
lastHighWaterMark, section, true, null, procStats);
|
||||
procStats.dumpAggregatedProtoForStatsd(protoStreams, MAX_PROCSTATS_RAW_SHARD_SIZE);
|
||||
|
||||
for (int i = 0; i < protoStreams.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user