From: Andrei Emeltchenko <andrei.emeltchenko.news@gmail.com>
To: Marcel Holtmann <marcel@holtmann.org>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH] android/hal-health: Clear NONBLOCK flag from fd
Date: Thu, 3 Jul 2014 13:46:06 +0300 [thread overview]
Message-ID: <20140703104603.GA7283@aemeltch-MOBL1> (raw)
In-Reply-To: <700D9D34-C873-4A39-858C-68265704A8EB@holtmann.org>
Hi Marcel,
On Thu, Jul 03, 2014 at 12:38:29PM +0200, Marcel Holtmann wrote:
> Hi Andrei,
>
> > Java expects file descriptor passed with channel_state_cb() to be
> > blocking.
> > ---
> > android/hal-health.c | 9 +++++++++
> > 1 file changed, 9 insertions(+)
> >
> > diff --git a/android/hal-health.c b/android/hal-health.c
> > index 858d499..2ff19ab 100644
> > --- a/android/hal-health.c
> > +++ b/android/hal-health.c
> > @@ -19,6 +19,8 @@
> > #include <stddef.h>
> > #include <string.h>
> > #include <stdlib.h>
> > +#include <fcntl.h>
> > +#include <unistd.h>
> >
> > #include "hal-log.h"
> > #include "hal.h"
> > @@ -44,6 +46,13 @@ static void handle_app_registration_state(void *buf, uint16_t len, int fd)
> > static void handle_channel_state(void *buf, uint16_t len, int fd)
> > {
> > struct hal_ev_health_channel_state *ev = buf;
> > + int flags;
> > +
> > + if ((flags = fcntl(fd, F_GETFL, 0)) < 0)
> > + flags = 0;
>
> I do not like the if ((x = x) < x) syntax. Don't use that.
>
> Also what is the point of setting it to 0 here. Just skip the F_SETFL. I rather print a proper error here then trying to outsmart ourselves.
>
> > +
> > + fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
> > +
>
> Same here. Might check the return error and print an error if it fails. At least then someone can debug it.
>
OK, I will send updated version ASAP.
Best regards
Andrei Emeltchenko
> >
> > if (cbacks->channel_state_cb)
> > cbacks->channel_state_cb(ev->app_id, (bt_bdaddr_t *) ev->bdaddr,
>
> Regards
>
> Marcel
>
next prev parent reply other threads:[~2014-07-03 10:46 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-03 10:31 [PATCH] android/hal-health: Clear NONBLOCK flag from fd Andrei Emeltchenko
2014-07-03 10:38 ` Marcel Holtmann
2014-07-03 10:46 ` Andrei Emeltchenko [this message]
2014-07-03 14:08 ` Andrei Emeltchenko
2014-07-03 14:12 ` [PATCH] avctp: Fix unchecked return value Andrei Emeltchenko
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=20140703104603.GA7283@aemeltch-MOBL1 \
--to=andrei.emeltchenko.news@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=marcel@holtmann.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox