All of lore.kernel.org
 help / color / mirror / Atom feed
From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: nagaraj.dr@samsung.com
Cc: "linux-bluetooth@vger.kernel.org"
	<linux-bluetooth@vger.kernel.org>,
	Syam Sidhardhan <s.syam@samsung.com>
Subject: Re: [PATCH] src/device.c : Fix BREDR-ATT MTU issue
Date: Wed, 02 May 2018 11:49:07 +0000	[thread overview]
Message-ID: <CABBYNZ++cdKY256edfNkMU6tsaccRrqg6eN9scdTK5m8t2Okxw@mail.gmail.com> (raw)
In-Reply-To: <1525248985-10990-1-git-send-email-nagaraj.dr@samsung.com>

Hi Nagaraj,
On Wed, May 2, 2018 at 11:40 AM Nagaraj D R <nagaraj.dr@samsung.com> wrote:

> For BREDR-ATT, according to spec, ATT MTU is same has
> L2CAP configured MTU on which ATT is running. So, set the MTU to
> L2CAP configuration and for LE-ATT adjust the ATT MTU based on
> EXCHANGE_MTU request and response.
> ---
>   src/device.c              | 2 +-
>   src/shared/gatt-helpers.c | 1 +
>   2 files changed, 2 insertions(+), 1 deletion(-)

> diff --git a/src/device.c b/src/device.c
> index f693b70..cf4c8df 100644
> --- a/src/device.c
> +++ b/src/device.c
> @@ -4922,7 +4922,7 @@ bool device_attach_att(struct btd_device *dev,
GIOChannel *io)
>          }

>          dev->att_mtu = MIN(mtu, BT_ATT_MAX_LE_MTU);
> -       attrib = g_attrib_new(io, BT_ATT_DEFAULT_LE_MTU, false);
> +       attrib = g_attrib_new(io, dev->att_mtu, false);

This would actually undo the following patch:

     src/device: Use BT_ATT_DEFAULT_LE_MTU as default MTU

     Use the default MTU until an MTU exchange has taken place and
     something else has been negotiated. If either side does not support
     MTU exchange, the connection shall continue to use this default
     value instead of the device maximum which was the previous behavior.

We should probably check if the cid is for LE or not and reset mtu to
BT_ATT_DEFAULT_LE_MTU that way att_mtu should be valid for either LE or
BR/EDR.

>          if (!attrib) {
>                  error("Unable to create new GAttrib instance");
>                  return false;
> diff --git a/src/shared/gatt-helpers.c b/src/shared/gatt-helpers.c
> index 6b39bb1..8ec65be 100644
> --- a/src/shared/gatt-helpers.c
> +++ b/src/shared/gatt-helpers.c
> @@ -517,6 +517,7 @@ static void mtu_cb(uint8_t opcode, const void *pdu,
uint16_t length,
>          if (opcode == BT_ATT_OP_ERROR_RSP) {
>                  success = false;
>                  att_ecode = process_error(pdu, length);
> +               bt_att_set_mtu(op->att, BT_ATT_DEFAULT_LE_MTU);

I not following this one, we only really use bt_att_set_mtu if the command
succeeds so this should not be necessary, or this is due Exchange being
used multiple times? I recall the spec not allowing that to happen, and if
does Im not sure why we would have to return to the default instead of the
value previously set in case the of error response.

>                  goto done;
>          }

> --
> 1.9.1

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



-- 
Luiz Augusto von Dentz

  reply	other threads:[~2018-05-02 11:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20180502081635epcas2p170eb2b4ed9336425921119b66e554fef@epcas2p1.samsung.com>
2018-05-02  8:16 ` [PATCH] src/device.c : Fix BREDR-ATT MTU issue Nagaraj D R
2018-05-02 11:49   ` Luiz Augusto von Dentz [this message]
     [not found]   ` <CGME20180502081635epcas2p170eb2b4ed9336425921119b66e554fef@epcms5p6>
2018-05-02 12:18     ` Nagaraj D R
2018-05-02 12:41       ` Luiz Augusto von Dentz

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=CABBYNZ++cdKY256edfNkMU6tsaccRrqg6eN9scdTK5m8t2Okxw@mail.gmail.com \
    --to=luiz.dentz@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=nagaraj.dr@samsung.com \
    --cc=s.syam@samsung.com \
    /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.