Skip to content

Commit 7c349b1

Browse files
jsharkeyAndroid Git Automerger
authored andcommitted
am 88b18eb: Merge "Upload correct txPackets count." into ics-factoryrom
* commit '88b18eb8c2034e9de35482cc737ef8d608d55867': Upload correct txPackets count.
2 parents 3907c79 + 88b18eb commit 7c349b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/java/com/android/server/net/NetworkStatsService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -888,15 +888,15 @@ private void performSample() {
888888
uidTotal = getSummaryForAllUid(template, start, end, false).getTotal(uidTotal);
889889
EventLogTags.writeNetstatsMobileSample(ifaceTotal.rxBytes, ifaceTotal.rxPackets,
890890
ifaceTotal.txBytes, ifaceTotal.txPackets, uidTotal.rxBytes, uidTotal.rxPackets,
891-
uidTotal.txBytes, uidTotal.rxPackets);
891+
uidTotal.txBytes, uidTotal.txPackets);
892892

893893
// collect wifi sample
894894
template = buildTemplateWifi();
895895
ifaceTotal = getSummaryForNetwork(template, start, end).getTotal(ifaceTotal);
896896
uidTotal = getSummaryForAllUid(template, start, end, false).getTotal(uidTotal);
897897
EventLogTags.writeNetstatsWifiSample(ifaceTotal.rxBytes, ifaceTotal.rxPackets,
898898
ifaceTotal.txBytes, ifaceTotal.txPackets, uidTotal.rxBytes, uidTotal.rxPackets,
899-
uidTotal.txBytes, uidTotal.rxPackets);
899+
uidTotal.txBytes, uidTotal.txPackets);
900900
}
901901

902902
/**

0 commit comments

Comments
 (0)