Merge "storaged: fix divide-by-zero when updating history" into pi-dev

am: 0b637d94d6

Change-Id: If668d3a3a349070a734ebce66e8e4eef0465bdef
This commit is contained in:
David Anderson 2018-04-02 18:16:40 -07:00 committed by android-build-merger
commit d9c510f9c2
3 changed files with 34 additions and 4 deletions

View file

@ -38,6 +38,7 @@ using namespace storaged_proto;
class storage_info_t {
protected:
FRIEND_TEST(storaged_test, storage_info_t);
FRIEND_TEST(storaged_test, storage_info_t_proto);
// emmc lifetime
uint16_t eol; // pre-eol (end of life) information
uint16_t lifetime_a; // device life time estimation (type A)

View file

@ -157,11 +157,14 @@ void storage_info_t::update_perf_history(uint32_t bw,
return;
}
recent_perf.erase(recent_perf.begin() + nr_samples,
recent_perf.end());
if (nr_samples < recent_perf.size()) {
recent_perf.erase(recent_perf.begin() + nr_samples, recent_perf.end());
}
uint32_t daily_avg_bw = accumulate(recent_perf.begin(),
recent_perf.begin() + nr_samples, 0) / nr_samples;
uint32_t daily_avg_bw = 0;
if (!recent_perf.empty()) {
daily_avg_bw = accumulate(recent_perf.begin(), recent_perf.end(), 0) / recent_perf.size();
}
day_start_tp = tp - chrono::seconds(duration_cast<chrono::seconds>(
tp.time_since_epoch()).count() % DAY_TO_SEC);
@ -176,6 +179,7 @@ void storage_info_t::update_perf_history(uint32_t bw,
return;
}
DCHECK(nr_days > 0);
uint32_t week_avg_bw = accumulate(daily_perf.begin(),
daily_perf.begin() + nr_days, 0) / nr_days;

View file

@ -416,6 +416,31 @@ TEST(storaged_test, storage_info_t) {
}
}
TEST(storaged_test, storage_info_t_proto) {
storage_info_t si;
si.day_start_tp = {};
IOPerfHistory proto;
proto.set_nr_samples(10);
proto.set_day_start_sec(0);
si.load_perf_history_proto(proto);
// Skip ahead > 1 day, with no data points in the previous day.
time_point<system_clock> stp;
stp += hours(36);
si.update_perf_history(100, stp);
vector<int> history = si.get_perf_history();
EXPECT_EQ(history.size(), 63UL);
EXPECT_EQ(history[0], 1);
EXPECT_EQ(history[1], 7);
EXPECT_EQ(history[2], 52);
EXPECT_EQ(history[3], 100);
for (size_t i = 4; i < history.size(); i++) {
EXPECT_EQ(history[i], 0);
}
}
TEST(storaged_test, uid_monitor) {
uid_monitor uidm;