summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorinna Vinschen <xda@vinschen.de>2018-08-26 21:16:23 +0200
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:57 +0300
commit6102e6812c9437dc7a5fda88554d73ea923702cb (patch)
tree29912dd661f52b8fb628ee45e93172bb4834d3d6
parent662bc2c978dafd4a804e68fa94712565fa121472 (diff)
downloadvendor_qcom_opensource_power-6102e6812c9437dc7a5fda88554d73ea923702cb.tar.gz
vendor_qcom_opensource_power-6102e6812c9437dc7a5fda88554d73ea923702cb.tar.bz2
vendor_qcom_opensource_power-6102e6812c9437dc7a5fda88554d73ea923702cb.zip
power: perform_hint_action: return an error code
So far the caller never knows if setting the hint actually worked. This leads to a potential disconnect between the actual setting and the UI because set_power_profile simply assumes perform_hint_action worked. Return an error code or 0, so the callers can check for success. Change-Id: I180a367e9d8581a63dfa703046b37bc5cae8c6cb Signed-off-by: Corinna Vinschen <xda@vinschen.de>
-rw-r--r--utils.c68
-rw-r--r--utils.h2
2 files changed, 35 insertions, 35 deletions
diff --git a/utils.c b/utils.c
index 295b7dd..ce2f2a9 100644
--- a/utils.c
+++ b/utils.c
@@ -257,43 +257,43 @@ void release_request(int lock_handle) {
if (qcopt_handle && perf_lock_rel) perf_lock_rel(lock_handle);
}
-void perform_hint_action(int hint_id, int resource_values[], int num_resources) {
- if (qcopt_handle) {
- if (perf_lock_acq) {
- /* Acquire an indefinite lock for the requested resources. */
- int lock_handle = perf_lock_acq(0, 0, resource_values, num_resources);
+int perform_hint_action(int hint_id, int resource_values[], int num_resources) {
+ if (qcopt_handle && perf_lock_acq) {
+ /* Acquire an indefinite lock for the requested resources. */
+ int lock_handle = perf_lock_acq(0, 0, resource_values, num_resources);
+
+ if (lock_handle == -1) {
+ ALOGE("Failed to acquire lock.");
+ return -EINVAL;
+ }
- if (lock_handle == -1) {
- ALOGE("Failed to acquire lock.");
- } else {
- /* Add this handle to our internal hint-list. */
- struct hint_data* new_hint = (struct hint_data*)malloc(sizeof(struct hint_data));
-
- if (new_hint) {
- if (!active_hint_list_head.compare) {
- active_hint_list_head.compare = (int (*)(void*, void*))hint_compare;
- active_hint_list_head.dump = (void (*)(void*))hint_dump;
- }
-
- new_hint->hint_id = hint_id;
- new_hint->perflock_handle = lock_handle;
-
- if (add_list_node(&active_hint_list_head, new_hint) == NULL) {
- free(new_hint);
- /* Can't keep track of this lock. Release it. */
- if (perf_lock_rel) perf_lock_rel(lock_handle);
-
- ALOGE("Failed to process hint.");
- }
- } else {
- /* Can't keep track of this lock. Release it. */
- if (perf_lock_rel) perf_lock_rel(lock_handle);
-
- ALOGE("Failed to process hint.");
- }
- }
+ /* Add this handle to our internal hint-list. */
+ struct hint_data* new_hint = (struct hint_data*)malloc(sizeof(struct hint_data));
+
+ if (!new_hint) {
+ /* Can't keep track of this lock. Release it. */
+ if (perf_lock_rel) perf_lock_rel(lock_handle);
+ ALOGE("Failed to process hint.");
+ return -ENOMEM;
+ }
+
+ if (!active_hint_list_head.compare) {
+ active_hint_list_head.compare = (int (*)(void*, void*))hint_compare;
+ active_hint_list_head.dump = (void (*)(void*))hint_dump;
+ }
+
+ new_hint->hint_id = hint_id;
+ new_hint->perflock_handle = lock_handle;
+
+ if (add_list_node(&active_hint_list_head, new_hint) == NULL) {
+ free(new_hint);
+ /* Can't keep track of this lock. Release it. */
+ if (perf_lock_rel) perf_lock_rel(lock_handle);
+ ALOGE("Failed to process hint.");
+ return -ENOMEM;
}
}
+ return 0;
}
void undo_hint_action(int hint_id) {
diff --git a/utils.h b/utils.h
index e5748dc..b4aa2a5 100644
--- a/utils.h
+++ b/utils.h
@@ -36,7 +36,7 @@ int get_scaling_governor_check_cores(char governor[], int size, int core_num);
int is_interactive_governor(char*);
int is_schedutil_governor(char*);
-void perform_hint_action(int hint_id, int resource_values[], int num_resources);
+int perform_hint_action(int hint_id, int resource_values[], int num_resources);
void undo_hint_action(int hint_id);
void undo_initial_hint_action();
void release_request(int lock_handle);