Re: [PATCH BlueZ 1/3] audio/avdtp: Only set disconnect timer if connected

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

On Wed, Mar 23, 2016 at 2:55 PM, Luiz Augusto von Dentz
<luiz.dentz@xxxxxxxxx> wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx>
>
> If the session is not connected it makes no sense to enable the
> disconnect timer.
> ---
>  profiles/audio/avdtp.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/profiles/audio/avdtp.c b/profiles/audio/avdtp.c
> index 52ee767..78e7b4d 100644
> --- a/profiles/audio/avdtp.c
> +++ b/profiles/audio/avdtp.c
> @@ -1171,7 +1171,12 @@ void avdtp_unref(struct avdtp *session)
>         if (session->ref > 0)
>                 return;
>
> -       set_disconnect_timer(session);
> +       if (session->state == AVDTP_SESSION_STATE_CONNECTED) {
> +               set_disconnect_timer(session);
> +               return;
> +       }
> +
> +       connection_lost(session, ECONNABORTED);
>  }
>
>  struct avdtp *avdtp_ref(struct avdtp *session)
> --
> 2.5.0

Applied.


-- 
Luiz Augusto von Dentz
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux