summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-10-17 03:15:18 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-10-17 03:15:18 +0000
commit9ec7ba8443caa905c2ebdf6eadd5e6148a348d37 (patch)
tree4e6f8daf58332069fde6f7fb36204ecbc2d862ed
parent1ea2b2bb423ee2b16e5f02117ead086f3e00a193 (diff)
parent23fa94128f73282f62a410a37bdcd415265a62f7 (diff)
downloadextras-pie-qpr2-release.tar.gz
Snap for 5073521 from 23fa94128f73282f62a410a37bdcd415265a62f7 to pi-qpr2-releaseandroid-9.0.0_r35android-9.0.0_r34android-9.0.0_r33android-9.0.0_r32android-9.0.0_r31pie-qpr2-release
Change-Id: Ifd25050c008de078a60bfd28a6654ef9d5d658d7
-rw-r--r--libperfmgr/Node.cc8
-rw-r--r--libperfmgr/NodeLooperThread.cc10
-rw-r--r--libperfmgr/include/perfmgr/Node.h2
3 files changed, 14 insertions, 6 deletions
diff --git a/libperfmgr/Node.cc b/libperfmgr/Node.cc
index 63cf8aaa..c35c3ca1 100644
--- a/libperfmgr/Node.cc
+++ b/libperfmgr/Node.cc
@@ -66,7 +66,7 @@ bool Node::RemoveRequest(const std::string& hint_type) {
return ret;
}
-std::chrono::milliseconds Node::Update() {
+std::chrono::milliseconds Node::Update(bool log_error) {
std::size_t value_index = default_val_index_;
std::chrono::milliseconds expire_time = std::chrono::milliseconds::max();
@@ -86,8 +86,10 @@ std::chrono::milliseconds Node::Update() {
open(node_path_.c_str(), O_WRONLY | O_CLOEXEC | O_TRUNC)));
if (fd_ == -1 || !android::base::WriteStringToFd(req_value, fd_)) {
- LOG(ERROR) << "Failed to write to node: " << node_path_
- << " with value: " << req_value << ", fd: " << fd_;
+ if (log_error) {
+ LOG(WARNING) << "Failed to write to node: " << node_path_
+ << " with value: " << req_value << ", fd: " << fd_;
+ }
// Retry in 500ms or sooner
expire_time = std::min(expire_time, std::chrono::milliseconds(500));
} else {
diff --git a/libperfmgr/NodeLooperThread.cc b/libperfmgr/NodeLooperThread.cc
index e7a63cc5..b4a27a96 100644
--- a/libperfmgr/NodeLooperThread.cc
+++ b/libperfmgr/NodeLooperThread.cc
@@ -98,9 +98,15 @@ void NodeLooperThread::DumpToFd(int fd) {
bool NodeLooperThread::threadLoop() {
::android::AutoMutex _l(lock_);
std::chrono::milliseconds timeout_ms = kMaxUpdatePeriod;
+
+ // Update 2 passes: some node may have dependency in other node
+ // e.g. update cpufreq min to VAL while cpufreq max still set to
+ // a value lower than VAL, is expected to fail in first pass
+ for (auto& n : nodes_) {
+ n->Update(false);
+ }
for (auto& n : nodes_) {
- auto t = n->Update();
- timeout_ms = std::min(t, timeout_ms);
+ timeout_ms = std::min(n->Update(), timeout_ms);
}
nsecs_t sleep_timeout_ns = std::numeric_limits<nsecs_t>::max();
diff --git a/libperfmgr/include/perfmgr/Node.h b/libperfmgr/include/perfmgr/Node.h
index ea4c3e34..560979b0 100644
--- a/libperfmgr/include/perfmgr/Node.h
+++ b/libperfmgr/include/perfmgr/Node.h
@@ -61,7 +61,7 @@ class Node {
// std::chrono::milliseconds::max() if no active request on Node; update
// node's controlled file node value and the current value index based on
// active request.
- std::chrono::milliseconds Update();
+ std::chrono::milliseconds Update(bool log_error = true);
std::string GetName() const;
std::string GetPath() const;