Merge lp:~albaguirre/powerd/avoid-suspend-during-call into lp:powerd

Proposed by Alberto Aguirre
Status: Rejected
Rejected by: Ricardo Salveti
Proposed branch: lp:~albaguirre/powerd/avoid-suspend-during-call
Merge into: lp:powerd
Diff against target: 28 lines (+6/-0)
1 file modified
src/powerd.cpp (+6/-0)
To merge this branch: bzr merge lp:~albaguirre/powerd/avoid-suspend-during-call
Reviewer Review Type Date Requested Status
Ricardo Salveti (community) Disapprove
PS Jenkins bot continuous-integration Approve
Review via email: mp+232290@code.launchpad.net

Commit message

Issue internal suspend block suspend during calls

Description of the change

Issue internal suspend block suspend during calls (LP: #1359530)

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Ricardo Salveti (rsalveti) wrote :

I think it's fine for us to hold a suspend blocker during a voicecall, but we still need to solve the general issue when using the proximity sensor.

Think about what would happen when we get an app trying to use the same proximity sensor logic. I believe currently it'll also try to suspend the device.

review: Approve
Revision history for this message
Ricardo Salveti (rsalveti) wrote :

Checking in more details, suspending is actually an expected behavior, and we should instead try to identify the issues that are currently happening on krillin when suspending instead.

Thanks for the MR though, sorry for the confusion.

review: Disapprove
Revision history for this message
Alberto Aguirre (albaguirre) wrote :

No prob, what issues are you seeing on suspend?

Unmerged revisions

141. By Alberto Aguirre

Issue internal suspend block suspend during calls

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/powerd.cpp'
2--- src/powerd.cpp 2014-08-19 20:22:10 +0000
3+++ src/powerd.cpp 2014-08-26 18:58:45 +0000
4@@ -355,11 +355,15 @@
5 gpointer user_data)
6 {
7 GVariant *tmp;
8+ static uuid_t sys_state_cookie;
9
10 if (!strcmp(signal_name, "CallAdded")) {
11 struct call_data *call;
12
13 turn_display_on(TRUE, UNITY_SCREEN_REASON_NORMAL);
14+ request_sys_state_internal("ofono-request",
15+ POWERD_SYS_STATE_ACTIVE,
16+ &sys_state_cookie, NULL);
17
18 call = (struct call_data *) calloc(1, sizeof(*call));
19 tmp = g_variant_get_child_value(parameters, 0);
20@@ -397,6 +401,8 @@
21 if (g_calls == NULL)
22 deactivate_proximity_sensor();
23
24+ clear_sys_state_internal(sys_state_cookie);
25+
26 g_variant_unref(tmp);
27 }
28 }

Subscribers

People subscribed via source and target branches