From: Szymon Janc <szymon.janc@tieto.com>
To: Andrei Emeltchenko <Andrei.Emeltchenko.news@gmail.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 6/7] android/ipc: Use error printing error messages
Date: Thu, 17 Apr 2014 15:23:15 +0200 [thread overview]
Message-ID: <1461258.GDJBJBXkUa@uw000953> (raw)
In-Reply-To: <1397737431-6101-6-git-send-email-Andrei.Emeltchenko.news@gmail.com>
Hi Andrei,
On Thursday 17 of April 2014 15:23:50 Andrei Emeltchenko wrote:
> From: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
>
> This helps to identify problem since DBG is not printed by default.
> ---
> android/ipc.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/android/ipc.c b/android/ipc.c
> index 8cd34ea..89fff8d 100644
> --- a/android/ipc.c
> +++ b/android/ipc.c
> @@ -96,31 +96,31 @@ static int ipc_handle_msg(struct service_handler *handlers, size_t max_index,
> const struct ipc_handler *handler;
>
> if (len < (ssize_t) sizeof(*msg)) {
> - DBG("message too small (%zd bytes)", len);
> + error("message too small (%zd bytes)", len);
> return -EBADMSG;
> }
>
> if (len != (ssize_t) (sizeof(*msg) + msg->len)) {
> - DBG("message malformed (%zd bytes)", len);
> + error("message malformed (%zd bytes)", len);
> return -EBADMSG;
> }
>
> /* if service is valid */
> if (msg->service_id > max_index) {
> - DBG("unknown service (0x%x)", msg->service_id);
> + error("unknown service (0x%x)", msg->service_id);
> return -EOPNOTSUPP;
> }
>
> /* if service is registered */
> if (!handlers[msg->service_id].handler) {
> - DBG("service not registered (0x%x)", msg->service_id);
> + error("service not registered (0x%x)", msg->service_id);
> return -EOPNOTSUPP;
> }
>
> /* if opcode is valid */
> if (msg->opcode == IPC_OP_STATUS ||
> msg->opcode > handlers[msg->service_id].size) {
> - DBG("invalid opcode 0x%x for service 0x%x", msg->opcode,
> + error("invalid opcode 0x%x for service 0x%x", msg->opcode,
> msg->service_id);
> return -EOPNOTSUPP;
> }
> @@ -131,7 +131,7 @@ static int ipc_handle_msg(struct service_handler *handlers, size_t max_index,
> /* if payload size is valid */
> if ((handler->var_len && handler->data_len > msg->len) ||
> (!handler->var_len && handler->data_len != msg->len)) {
> - DBG("invalid size for opcode 0x%x service 0x%x",
> + error("invalid size for opcode 0x%x service 0x%x",
> msg->opcode, msg->service_id);
> return -EMSGSIZE;
> }
>
I'm fine this change (although we already print error later on based on returned code),
but please prefix those with "IPC: " for clarity.
--
Best regards,
Szymon Janc
next prev parent reply other threads:[~2014-04-17 13:23 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-17 12:23 [PATCH 1/7] android/handsfree: Check service class is not zero Andrei Emeltchenko
2014-04-17 12:23 ` [PATCH 2/7] android/hal-audio-hsp: Add audio HAL for HSP handling Andrei Emeltchenko
2014-04-17 13:00 ` Szymon Janc
2014-04-17 12:23 ` [PATCH 3/7] android/hal-audio: Make code readable Andrei Emeltchenko
2014-04-17 13:02 ` Szymon Janc
2014-04-17 12:23 ` [PATCH 4/7] android/hal-audio-hsp: Add open_output_stream() Andrei Emeltchenko
2014-04-17 12:23 ` [PATCH 5/7] android/hal-audio: Add SCO audio API Andrei Emeltchenko
2014-04-17 13:20 ` Szymon Janc
2014-04-22 15:36 ` Luiz Augusto von Dentz
2014-04-23 14:06 ` Jesse Koegler
2014-04-23 18:41 ` Luiz Augusto von Dentz
2014-04-23 18:59 ` Jesse Koegler
2014-04-17 12:23 ` [PATCH 6/7] android/ipc: Use error printing error messages Andrei Emeltchenko
2014-04-17 13:23 ` Szymon Janc [this message]
2014-04-17 12:23 ` [PATCH 7/7] android/handsfree: trivial: Correct comment style Andrei Emeltchenko
2014-04-17 13:26 ` Szymon Janc
2014-04-17 12:54 ` [PATCH 1/7] android/handsfree: Check service class is not zero Szymon Janc
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=1461258.GDJBJBXkUa@uw000953 \
--to=szymon.janc@tieto.com \
--cc=Andrei.Emeltchenko.news@gmail.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox