All of lore.kernel.org
 help / color / mirror / Atom feed
From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: davem@davemloft.net, kuba@kernel.org
Cc: linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org
Subject: [GIT PULL] bluetooth-next 2025-09-25
Date: Thu, 25 Sep 2025 10:51:24 -0400	[thread overview]
Message-ID: <20250925145124.500357-1-luiz.dentz@gmail.com> (raw)

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

             reply	other threads:[~2025-09-25 14:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-25 14:51 Luiz Augusto von Dentz [this message]
2025-09-26 21:43 ` [GIT PULL] bluetooth-next 2025-09-25 Jakub Kicinski
2025-09-27 15:34   ` Luiz Augusto von Dentz
2025-09-27 15: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=20250925145124.500357-1-luiz.dentz@gmail.com \
    --to=luiz.dentz@gmail.com \
    --cc=davem@davemloft.net \
    --cc=kuba@kernel.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=netdev@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 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.