netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] bluetooth 2025-07-16
@ 2025-07-16 19:51 Luiz Augusto von Dentz
  2025-07-17 10:17 ` Paolo Abeni
  0 siblings, 1 reply; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-07-16 19:51 UTC (permalink / raw)
  To: davem, kuba; +Cc: linux-bluetooth, netdev

The following changes since commit dae7f9cbd1909de2b0bccc30afef95c23f93e477:

  Merge branch 'mptcp-fix-fallback-related-races' (2025-07-15 17:31:30 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2025-07-16

for you to fetch changes up to c76d958c3a42de72b3ec1813b5a5fd4206f9f350:

  Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU (2025-07-16 15:38:31 -0400)

----------------------------------------------------------------
bluetooth pull request for net:

 - hci_sync: fix connectable extended advertising when using static random address
 - hci_core: fix typos in macros
 - hci_core: add missing braces when using macro parameters
 - hci_core: replace 'quirks' integer by 'quirk_flags' bitmap
 - SMP: If an unallowed command is received consider it a failure
 - SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
 - L2CAP: Fix null-ptr-deref in l2cap_sock_resume_cb()
 - L2CAP: Fix attempting to adjust outgoing MTU
 - btintel: Check if controller is ISO capable on btintel_classify_pkt_type
 - btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant without board ID

----------------------------------------------------------------
Alessandro Gasbarroni (1):
      Bluetooth: hci_sync: fix connectable extended advertising when using static random address

Christian Eggers (3):
      Bluetooth: hci_core: fix typos in macros
      Bluetooth: hci_core: add missing braces when using macro parameters
      Bluetooth: hci_dev: replace 'quirks' integer by 'quirk_flags' bitmap

Kuniyuki Iwashima (1):
      Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb()

Luiz Augusto von Dentz (4):
      Bluetooth: btintel: Check if controller is ISO capable on btintel_classify_pkt_type
      Bluetooth: SMP: If an unallowed command is received consider it a failure
      Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
      Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU

Zijun Hu (1):
      Bluetooth: btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant without board ID

 drivers/bluetooth/bfusb.c        |   2 +-
 drivers/bluetooth/bpa10x.c       |   2 +-
 drivers/bluetooth/btbcm.c        |   8 +--
 drivers/bluetooth/btintel.c      |  30 ++++----
 drivers/bluetooth/btintel_pcie.c |   8 +--
 drivers/bluetooth/btmtksdio.c    |   4 +-
 drivers/bluetooth/btmtkuart.c    |   2 +-
 drivers/bluetooth/btnxpuart.c    |   2 +-
 drivers/bluetooth/btqca.c        |   2 +-
 drivers/bluetooth/btqcomsmd.c    |   2 +-
 drivers/bluetooth/btrtl.c        |  10 +--
 drivers/bluetooth/btsdio.c       |   2 +-
 drivers/bluetooth/btusb.c        | 148 +++++++++++++++++++++------------------
 drivers/bluetooth/hci_aml.c      |   2 +-
 drivers/bluetooth/hci_bcm.c      |   4 +-
 drivers/bluetooth/hci_bcm4377.c  |  10 +--
 drivers/bluetooth/hci_intel.c    |   2 +-
 drivers/bluetooth/hci_ldisc.c    |   6 +-
 drivers/bluetooth/hci_ll.c       |   4 +-
 drivers/bluetooth/hci_nokia.c    |   2 +-
 drivers/bluetooth/hci_qca.c      |  14 ++--
 drivers/bluetooth/hci_serdev.c   |   8 +--
 drivers/bluetooth/hci_vhci.c     |   8 +--
 drivers/bluetooth/virtio_bt.c    |  10 +--
 include/net/bluetooth/hci.h      |   2 +
 include/net/bluetooth/hci_core.h |  50 +++++++------
 net/bluetooth/hci_core.c         |   4 +-
 net/bluetooth/hci_debugfs.c      |   8 +--
 net/bluetooth/hci_event.c        |  19 +++--
 net/bluetooth/hci_sync.c         |  63 ++++++++---------
 net/bluetooth/l2cap_core.c       |  26 +++++--
 net/bluetooth/l2cap_sock.c       |   3 +
 net/bluetooth/mgmt.c             |  38 +++++-----
 net/bluetooth/msft.c             |   2 +-
 net/bluetooth/smp.c              |  21 +++++-
 net/bluetooth/smp.h              |   1 +
 36 files changed, 289 insertions(+), 240 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] bluetooth 2025-07-16
  2025-07-16 19:51 [GIT PULL] bluetooth 2025-07-16 Luiz Augusto von Dentz
@ 2025-07-17 10:17 ` Paolo Abeni
  2025-07-17 14:19   ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 3+ messages in thread
From: Paolo Abeni @ 2025-07-17 10:17 UTC (permalink / raw)
  To: Luiz Augusto von Dentz, davem, kuba; +Cc: linux-bluetooth, netdev



On 7/16/25 9:51 PM, Luiz Augusto von Dentz wrote:
> The following changes since commit dae7f9cbd1909de2b0bccc30afef95c23f93e477:
> 
>   Merge branch 'mptcp-fix-fallback-related-races' (2025-07-15 17:31:30 -0700)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2025-07-16
> 
> for you to fetch changes up to c76d958c3a42de72b3ec1813b5a5fd4206f9f350:
> 
>   Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU (2025-07-16 15:38:31 -0400)
> 
> ----------------------------------------------------------------
> bluetooth pull request for net:
> 
>  - hci_sync: fix connectable extended advertising when using static random address
>  - hci_core: fix typos in macros
>  - hci_core: add missing braces when using macro parameters
>  - hci_core: replace 'quirks' integer by 'quirk_flags' bitmap
>  - SMP: If an unallowed command is received consider it a failure
>  - SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
>  - L2CAP: Fix null-ptr-deref in l2cap_sock_resume_cb()
>  - L2CAP: Fix attempting to adjust outgoing MTU

This has issue with fixes tag, the hash looks wrong:

Fixes tag: Fixes: d5c2d5e0f1d3 ("Bluetooth: L2CAP: Fix L2CAP MTU
negotiation")
	Has these problem(s):
		- Target SHA1 does not exist

Could you please adjust that and send a pull v2?

Thanks,

Paolo


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] bluetooth 2025-07-16
  2025-07-17 10:17 ` Paolo Abeni
@ 2025-07-17 14:19   ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2025-07-17 14:19 UTC (permalink / raw)
  To: Paolo Abeni; +Cc: davem, kuba, linux-bluetooth, netdev

Hi Paolo,

On Thu, Jul 17, 2025 at 6:17 AM Paolo Abeni <pabeni@redhat.com> wrote:
>
>
>
> On 7/16/25 9:51 PM, Luiz Augusto von Dentz wrote:
> > The following changes since commit dae7f9cbd1909de2b0bccc30afef95c23f93e477:
> >
> >   Merge branch 'mptcp-fix-fallback-related-races' (2025-07-15 17:31:30 -0700)
> >
> > are available in the Git repository at:
> >
> >   git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2025-07-16
> >
> > for you to fetch changes up to c76d958c3a42de72b3ec1813b5a5fd4206f9f350:
> >
> >   Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU (2025-07-16 15:38:31 -0400)
> >
> > ----------------------------------------------------------------
> > bluetooth pull request for net:
> >
> >  - hci_sync: fix connectable extended advertising when using static random address
> >  - hci_core: fix typos in macros
> >  - hci_core: add missing braces when using macro parameters
> >  - hci_core: replace 'quirks' integer by 'quirk_flags' bitmap
> >  - SMP: If an unallowed command is received consider it a failure
> >  - SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
> >  - L2CAP: Fix null-ptr-deref in l2cap_sock_resume_cb()
> >  - L2CAP: Fix attempting to adjust outgoing MTU
>
> This has issue with fixes tag, the hash looks wrong:
>
> Fixes tag: Fixes: d5c2d5e0f1d3 ("Bluetooth: L2CAP: Fix L2CAP MTU
> negotiation")
>         Has these problem(s):
>                 - Target SHA1 does not exist
>
> Could you please adjust that and send a pull v2?

Sure, I will send it asap.

> Thanks,
>
> Paolo
>


-- 
Luiz Augusto von Dentz

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-07-17 14:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-16 19:51 [GIT PULL] bluetooth 2025-07-16 Luiz Augusto von Dentz
2025-07-17 10:17 ` Paolo Abeni
2025-07-17 14:19   ` Luiz Augusto von Dentz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).