All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] bluetooth-next 2025-09-25
@ 2025-09-25 14:51 Luiz Augusto von Dentz
  2025-09-26 21:43 ` Jakub Kicinski
  0 siblings, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2025-09-25 14:51 UTC (permalink / raw)
  To: davem, kuba; +Cc: linux-bluetooth, netdev

The following changes since commit 12de5f0f6c2d7aad7e60aada650fcfb374c28a5e:

  Merge branch 'net-gso-restore-outer-ip-ids-correctly' (2025-09-25 12:42:52 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git tags/for-net-next-2025-09-25

for you to fetch changes up to 8d0a1577fe0db496fa3cc674e5ebff28ebbdebd4:

  Bluetooth: Avoid a couple dozen -Wflex-array-member-not-at-end warnings (2025-09-25 10:08:04 -0400)

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

core:

 - MAINTAINERS: add a sub-entry for the Qualcomm bluetooth driver
 - Avoid a couple dozen -Wflex-array-member-not-at-end warnings
 - bcsp: receive data only if registered
 - HCI: Fix using LE/ACL buffers for ISO packets
 - hci_core: Detect if an ISO link has stalled
 - ISO: Don't initiate CIS connections if there are no buffers
 - ISO: Use sk_sndtimeo as conn_timeout

drivers:

 - btusb: Check for unexpected bytes when defragmenting HCI frames
 - btusb: Add new VID/PID 13d3/3627 for MT7925
 - btusb: Add new VID/PID 13d3/3633 for MT7922
 - btusb: Add USB ID 2001:332a for D-Link AX9U rev. A1
 - btintel: Add support for BlazarIW core
 - btintel_pcie: Add support for _suspend() / _resume()
 - btintel_pcie: Define hdev->wakeup() callback
 - btintel_pcie: Add Bluetooth core/platform as comments
 - btintel_pcie: Add id of Scorpious, Panther Lake-H484
 - btintel_pcie: Refactor Device Coredump

----------------------------------------------------------------
Arkadiusz Bokowy (1):
      Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames

Bartosz Golaszewski (1):
      MAINTAINERS: add a sub-entry for the Qualcomm bluetooth driver

Calvin Owens (2):
      Bluetooth: remove duplicate h4_recv_buf() in header
      Bluetooth: Fix build after header cleanup

Chandrashekar Devegowda (2):
      Bluetooth: btintel_pcie: Add support for _suspend() / _resume()
      Bluetooth: btintel_pcie: Define hdev->wakeup() callback

Chris Lu (2):
      Bluetooth: btusb: Add new VID/PID 13d3/3627 for MT7925
      Bluetooth: btusb: Add new VID/PID 13d3/3633 for MT7922

Gustavo A. R. Silva (1):
      Bluetooth: Avoid a couple dozen -Wflex-array-member-not-at-end warnings

Ivan Pravdin (1):
      Bluetooth: bcsp: receive data only if registered

Kiran K (4):
      Bluetooth: btintel: Add support for BlazarIW core
      Bluetooth: btintel_pcie: Add Bluetooth core/platform as comments
      Bluetooth: btintel_pcie: Add id of Scorpious, Panther Lake-H484
      Bluetooth: btintel_pcie: Refactor Device Coredump

Luiz Augusto von Dentz (16):
      Bluetooth: btintel_pcie: Move model comment before its definition
      Bluetooth: ISO: Don't initiate CIS connections if there are no buffers
      Bluetooth: HCI: Fix using LE/ACL buffers for ISO packets
      Bluetooth: ISO: Use sk_sndtimeo as conn_timeout
      Bluetooth: hci_core: Detect if an ISO link has stalled
      Bluetooth: MGMT: Fix not exposing debug UUID on MGMT_OP_READ_EXP_FEATURES_INFO
      Bluetooth: Add function and line information to bt_dbg
      Bluetooth: hci_core: Print number of packets in conn->data_q
      Bluetooth: hci_core: Print information of hcon on hci_low_sent
      Bluetooth: hci_sync: Fix hci_resume_advertising_sync
      Bluetooth: hci_event: Fix UAF in hci_conn_tx_dequeue
      Bluetooth: hci_event: Fix UAF in hci_acl_create_conn_sync
      Bluetooth: MGMT: Fix possible UAFs
      Bluetooth: SCO: Fix UAF on sco_conn_free
      Bluetooth: ISO: Fix possible UAF on iso_conn_free
      Bluetooth: hci_sync: Fix using random address for BIG/PA advertisements

Pauli Virtanen (2):
      Bluetooth: ISO: free rx_skb if not consumed
      Bluetooth: ISO: don't leak skb in ISO_CONT RX

Thorsten Blum (2):
      Bluetooth: Annotate struct hci_drv_rp_read_info with __counted_by_le()
      Bluetooth: btintel_pcie: Use strscpy() instead of strscpy_pad()

Zenm Chen (1):
      Bluetooth: btusb: Add USB ID 2001:332a for D-Link AX9U rev. A1

 MAINTAINERS                       |   7 +
 drivers/bluetooth/Kconfig         |   6 +
 drivers/bluetooth/bpa10x.c        |   2 +-
 drivers/bluetooth/btintel.c       |   3 +
 drivers/bluetooth/btintel_pcie.c  | 328 +++++++++++++++++++++-----------------
 drivers/bluetooth/btintel_pcie.h  |   2 +
 drivers/bluetooth/btmtksdio.c     |   2 +-
 drivers/bluetooth/btmtkuart.c     |   2 +-
 drivers/bluetooth/btnxpuart.c     |   2 +-
 drivers/bluetooth/btusb.c         |  23 +++
 drivers/bluetooth/h4_recv.h       | 153 ------------------
 drivers/bluetooth/hci_bcsp.c      |   3 +
 drivers/bluetooth/hci_uart.h      |   8 +-
 include/net/bluetooth/bluetooth.h |   3 +-
 include/net/bluetooth/hci.h       |   1 +
 include/net/bluetooth/hci_core.h  |  32 +++-
 include/net/bluetooth/hci_drv.h   |   2 +-
 include/net/bluetooth/mgmt.h      |   9 +-
 net/bluetooth/hci_conn.c          |  27 ++--
 net/bluetooth/hci_core.c          |  52 ++++--
 net/bluetooth/hci_event.c         |  46 ++++--
 net/bluetooth/hci_sync.c          |  17 +-
 net/bluetooth/iso.c               |  34 +++-
 net/bluetooth/mgmt.c              | 254 +++++++++++++++++++----------
 net/bluetooth/mgmt_config.c       |   4 +-
 net/bluetooth/mgmt_util.c         |  24 +++
 net/bluetooth/mgmt_util.h         |   2 +
 net/bluetooth/sco.c               |   7 +
 28 files changed, 604 insertions(+), 451 deletions(-)
 delete mode 100644 drivers/bluetooth/h4_recv.h

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

* Re: [GIT PULL] bluetooth-next 2025-09-25
  2025-09-25 14:51 [GIT PULL] bluetooth-next 2025-09-25 Luiz Augusto von Dentz
@ 2025-09-26 21:43 ` Jakub Kicinski
  2025-09-27 15:34   ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2025-09-26 21:43 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: davem, linux-bluetooth, netdev

On Thu, 25 Sep 2025 10:51:24 -0400 Luiz Augusto von Dentz wrote:
> bluetooth-next pull request for net-next:

I'm getting a conflict when pulling this. Looks like it's based on 
the v1 of the recent net PR rather than the reworked version?

Sorry for the delay

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

* Re: [GIT PULL] bluetooth-next 2025-09-25
  2025-09-26 21:43 ` Jakub Kicinski
@ 2025-09-27 15:34   ` Luiz Augusto von Dentz
  2025-09-27 15:41     ` Luiz Augusto von Dentz
  0 siblings, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2025-09-27 15:34 UTC (permalink / raw)
  To: Jakub Kicinski; +Cc: davem, linux-bluetooth, netdev

Hi Jakub,

On Fri, Sep 26, 2025 at 5:43 PM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Thu, 25 Sep 2025 10:51:24 -0400 Luiz Augusto von Dentz wrote:
> > bluetooth-next pull request for net-next:
>
> I'm getting a conflict when pulling this. Looks like it's based on
> the v1 of the recent net PR rather than the reworked version?
>
> Sorry for the delay

Should I rebase it again?


-- 
Luiz Augusto von Dentz

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

* Re: [GIT PULL] bluetooth-next 2025-09-25
  2025-09-27 15:34   ` Luiz Augusto von Dentz
@ 2025-09-27 15:41     ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2025-09-27 15:41 UTC (permalink / raw)
  To: Jakub Kicinski; +Cc: davem, linux-bluetooth, netdev

Hi Jakub,

On Sat, Sep 27, 2025 at 11:34 AM Luiz Augusto von Dentz
<luiz.dentz@gmail.com> wrote:
>
> Hi Jakub,
>
> On Fri, Sep 26, 2025 at 5:43 PM Jakub Kicinski <kuba@kernel.org> wrote:
> >
> > On Thu, 25 Sep 2025 10:51:24 -0400 Luiz Augusto von Dentz wrote:
> > > bluetooth-next pull request for net-next:
> >
> > I'm getting a conflict when pulling this. Looks like it's based on
> > the v1 of the recent net PR rather than the reworked version?
> >
> > Sorry for the delay
>
> Should I rebase it again?

Oh, looks like it is 302a1f674c00 ("Bluetooth: MGMT: Fix possible
UAFs") that we reworked during the last pull request, we can just skip
the changes in bluetooth-next, I will send a new pull-request without
it.

>
> --
> Luiz Augusto von Dentz



-- 
Luiz Augusto von Dentz

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

end of thread, other threads:[~2025-09-27 15:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-25 14:51 [GIT PULL] bluetooth-next 2025-09-25 Luiz Augusto von Dentz
2025-09-26 21:43 ` Jakub Kicinski
2025-09-27 15:34   ` Luiz Augusto von Dentz
2025-09-27 15:41     ` Luiz Augusto von Dentz

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.