From: Denis Kenzior <denkenz@gmail.com>
To: ofono@ofono.org
Subject: Re: [PATCH] Connecting a phone with mpty call does not trigger CLCC polling
Date: Wed, 27 May 2015 09:19:42 -0500 [thread overview]
Message-ID: <5565D27E.30806@gmail.com> (raw)
In-Reply-To: <1431945524-6781-1-git-send-email-kubax.t.pawlak@intel.com>
[-- Attachment #1: Type: text/plain, Size: 2088 bytes --]
Hi Kuba,
On 05/18/2015 05:38 AM, Kuba Pawlak wrote:
> If there is more then one active or held call, we are in mpty calls.
> We won't get indicator update if any of them is released by CHLD=1x.
> So we have to poll it.
> ---
> drivers/hfpmodem/voicecall.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
I took another look at this one, a few minor issues:
> diff --git a/drivers/hfpmodem/voicecall.c b/drivers/hfpmodem/voicecall.c
> index afeb35f..5d044a9 100644
> --- a/drivers/hfpmodem/voicecall.c
> +++ b/drivers/hfpmodem/voicecall.c
> @@ -1134,6 +1134,10 @@ static void hfp_clcc_cb(gboolean ok, GAtResult *result, gpointer user_data)
> struct ofono_voicecall *vc = user_data;
> struct voicecall_data *vd = ofono_voicecall_get_data(vc);
> unsigned int mpty_ids;
> + GSList *n;
> + struct ofono_call *nc;
> + unsigned int num_active = 0;
> + unsigned int num_held = 0;
>
> if (!ok)
> return;
> @@ -1142,6 +1146,22 @@ static void hfp_clcc_cb(gboolean ok, GAtResult *result, gpointer user_data)
>
> g_slist_foreach(vd->calls, voicecall_notify, vc);
> ofono_voicecall_mpty_hint(vc, mpty_ids);
> +
> + n = vd->calls;
> +
> + while (n) {
> + nc = n ? n->data : NULL;
Why are you checking for n ? here. Isn't while (n) above enough?
> + if (nc && (nc->status == CALL_STATUS_ACTIVE))
> + num_active++;
parentheses around nc->status == ... are not necessary.
Also, n->data should never be NULL. If it is, I rather crash early.
So just checking for nc->status is sufficient.
e.g.
while (n) {
nc = n->data;
switch (nc->status) {
case CALL_STATUS_ACTIVE:
...
case CALL_STATUS_HELD:
...
default:
break;
}
}
> +
> + if (nc && (nc->status == CALL_STATUS_HELD))
> + num_held++;
> +
> + n = n->next;
> + }
> +
> + if ((num_active > 1 || num_held > 1) && !vd->clcc_source)
> + vd->clcc_source = g_timeout_add(POLL_CLCC_INTERVAL, poll_clcc, vc);
> }
>
> static void hfp_voicecall_initialized(gboolean ok, GAtResult *result,
>
Regards,
-Denis
prev parent reply other threads:[~2015-05-27 14:19 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-18 10:38 [PATCH] Connecting a phone with mpty call does not trigger CLCC polling Kuba Pawlak
2015-05-27 14:19 ` Denis Kenzior [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5565D27E.30806@gmail.com \
--to=denkenz@gmail.com \
--cc=ofono@ofono.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.