All of lore.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@codecoup.pl>
To: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] gatt: Fix AcquireWrite and AcquireNotify server support
Date: Tue, 07 Apr 2020 09:14:13 +0200	[thread overview]
Message-ID: <2834426.nXdnVRqWta@ix> (raw)
In-Reply-To: <20200407012906.166736-1-szymon.janc@codecoup.pl>

On Tuesday, 7 April 2020 03:29:06 CEST Szymon Janc wrote:
> Register read handler only for notify IO and handle socket
> disconnection in sock_io_read.
> ---
>  src/gatt-database.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/src/gatt-database.c b/src/gatt-database.c
> index 483c84341..92e24e5f7 100644
> --- a/src/gatt-database.c
> +++ b/src/gatt-database.c
> @@ -2358,7 +2358,7 @@ static bool sock_io_read(struct io *io, void
> *user_data) ssize_t bytes_read;
> 
>  	bytes_read = read(fd, buf, sizeof(buf));
> -	if (bytes_read < 0)
> +	if (bytes_read <= 0)
>  		return false;
> 
>  	send_notification_to_devices(chrc->service->app->database,
> @@ -2379,8 +2379,6 @@ static struct io *sock_io_new(int fd, void *user_data)
> 
>  	io_set_close_on_destroy(io, true);
> 
> -	io_set_read_handler(io, sock_io_read, user_data, NULL);
> -
>  	io_set_disconnect_handler(io, sock_hup, user_data, NULL);
> 
>  	return io;
> @@ -2537,6 +2535,7 @@ static void acquire_notify_reply(DBusMessage *message,
> void *user_data) DBG("AcquireNotify success: fd %d MTU %u\n", fd, mtu);
> 
>  	chrc->notify_io = sock_io_new(fd, chrc);
> +	io_set_read_handler(chrc->notify_io, sock_io_read, chrc, NULL);
> 
>  	__sync_fetch_and_add(&chrc->ntfy_cnt, 1);

Applied.

-- 
pozdrawiam
Szymon Janc



      reply	other threads:[~2020-04-07  7:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-07  1:29 [PATCH] gatt: Fix AcquireWrite and AcquireNotify server support Szymon Janc
2020-04-07  7:14 ` Szymon Janc [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=2834426.nXdnVRqWta@ix \
    --to=szymon.janc@codecoup.pl \
    --cc=linux-bluetooth@vger.kernel.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.