From: Marcel Holtmann <marcel@holtmann.org>
To: Emeltchenko Andrei <Andrei.Emeltchenko.news@gmail.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCHv2 5/8] Bluetooth: Add HCI Read Data Block Size function
Date: Fri, 02 Dec 2011 16:28:21 +0100 [thread overview]
Message-ID: <1322839701.26198.37.camel@aeonflux> (raw)
In-Reply-To: <20111202122555.GD12339@aemeltch-MOBL1>
Hi Andrei,
> > > > diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
> > > > index a7fd63a..869ab72 100644
> > > > --- a/include/net/bluetooth/hci_core.h
> > > > +++ b/include/net/bluetooth/hci_core.h
> > > > @@ -172,6 +172,8 @@ struct hci_dev {
> > > >
> > > > __u8 flow_ctl_mode;
> > > >
> > > > + __u16 block_len;
> > > > +
>
> What do you think about following:
>
> <------8<----------------------------------------
> | diff --git a/include/net/bluetooth/hci_core.h
> | b/include/net/bluetooth/hci_core.h
> | index 44f130f..5a4e85c 100644
> | @@ -188,6 +188,11 @@ struct hci_dev {
> | unsigned int sco_pkts;
> | unsigned int le_pkts;
> |
> | + __u16 block_len;
> | + __u16 block_mtu;
> | + __u16 num_blocks;
> | + __u16 block_cnt;
> | +
> | unsigned long acl_last_tx;
> | unsigned long sco_last_tx;
> | unsigned long le_last_tx;
> |
> <------8<----------------------------------------
lets see how this works out.
> > > > unsigned int auto_accept_delay;
> > > >
> > > > unsigned long quirks;
> > > > diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
> > > > index efad012..a646310 100644
> > > > --- a/net/bluetooth/hci_event.c
> > > > +++ b/net/bluetooth/hci_event.c
> > > > @@ -774,6 +774,33 @@ static void hci_cc_read_bd_addr(struct hci_dev *hdev, struct sk_buff *skb)
> > > > hci_req_complete(hdev, HCI_OP_READ_BD_ADDR, rp->status);
> > > > }
> > > >
> > > > +static void hci_cc_read_data_block_size(struct hci_dev *hdev,
> > > > + struct sk_buff *skb)
> > > > +{
> > > > + struct hci_rp_read_data_block_size *rp = (void *) skb->data;
> > > > +
> > > > + BT_DBG("%s status 0x%x", hdev->name, rp->status);
> > > > +
> > > > + if (rp->status)
> > > > + return;
> > > > +
> > > > + if (hdev->flow_ctl_mode == HCI_FLOW_CTL_MODE_BLOCK_BASED) {
> > > > + hdev->acl_mtu = __le16_to_cpu(rp->max_acl_len);
> > > > + hdev->sco_mtu = 0;
> > > > + hdev->block_len = __le16_to_cpu(rp->block_len);
> > > > + /* acl_pkts indicates the number of blocks */
> > > > + hdev->acl_pkts = __le16_to_cpu(rp->num_blocks);
> > > > + hdev->sco_pkts = 0;
> > > > + hdev->acl_cnt = hdev->acl_pkts;
> > > > + hdev->sco_cnt = 0;
> > > > + }
> > >
> > > I am still not convinced that overloading the variables is a good idea.
> > > And so far nobody has me convinced that this is the best way.
> >
> > I think that we can use different variables like block_cnt and acl_blocks,
> > then function split as you mentioned in other comment does make sense.
>
> then here comes:
>
> <------8<--------------------------------------------------------------
> | + if (hdev->flow_ctl_mode == HCI_FLOW_CTL_MODE_BLOCK_BASED) {
> | + hdev->block_mtu = __le16_to_cpu(rp->max_acl_len);
> | + hdev->block_len = __le16_to_cpu(rp->block_len);
> | + hdev->num_blocks = __le16_to_cpu(rp->num_blocks);
> | +
> | + hdev->block_cnt = hdev->num_blocks;
> | + }
> <------8<--------------------------------------------------------------
Except that you do not need the if flow_ctl_mode check. Just set the
variables. They are not overlapping anymore.
Regards
Marcel
next prev parent reply other threads:[~2011-12-02 15:28 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-01 12:42 [PATCHv2 0/8] AMP/BREDR initialization patches Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 1/8] Bluetooth: remove old code Emeltchenko Andrei
2011-12-02 12:27 ` Gustavo Padovan
2011-12-01 12:42 ` [PATCHv2 2/8] Bluetooth: Split ctrl init to BREDR and AMP parts Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 3/8] Bluetooth: Add HCI Read Flow Control Mode function Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 4/8] Bluetooth: Initialize default flow control mode Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 5/8] Bluetooth: Add HCI Read Data Block Size function Emeltchenko Andrei
2011-12-01 13:13 ` Marcel Holtmann
2011-12-01 13:37 ` Emeltchenko Andrei
2011-12-02 12:25 ` Emeltchenko Andrei
2011-12-02 15:28 ` Marcel Holtmann [this message]
2011-12-01 12:42 ` [PATCHv2 6/8] Bluetooth: Recalculate sched for HCI block flow ctrl Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 7/8] Bluetooth: Use SNIFF mode only for BREDR controller Emeltchenko Andrei
2011-12-01 13:11 ` Marcel Holtmann
2011-12-01 13:32 ` Emeltchenko Andrei
2011-12-01 12:42 ` [PATCHv2 8/8] Bluetooth: Complete Read Local Version HCI cmd Emeltchenko Andrei
2011-12-01 13:12 ` Marcel Holtmann
2011-12-01 13:23 ` Emeltchenko Andrei
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=1322839701.26198.37.camel@aeonflux \
--to=marcel@holtmann.org \
--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