* bluetooth-next 2025-05-21
@ 2025-05-21 14:47 Luiz Augusto von Dentz
2025-05-22 16:53 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2025-05-21 14:47 UTC (permalink / raw)
To: davem, kuba; +Cc: linux-bluetooth, netdev
The following changes since commit e6b3527c3b0a676c710e91798c2709cc0538d312:
Merge branch 'net-airoha-add-per-flow-stats-support-to-hw-flowtable-offloading' (2025-05-20 20:00:55 -0700)
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-05-21
for you to fetch changes up to 623029dcc53837d409deb70b65eb7c7b83ab9b9a:
Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() (2025-05-21 10:31:01 -0400)
----------------------------------------------------------------
bluetooth-next pull request for net-next:
core:
- Add support for SIOCETHTOOL ETHTOOL_GET_TS_INFO
- Separate CIS_LINK and BIS_LINK link types
- Introduce HCI Driver protocol
drivers:
- btintel_pcie: Do not generate coredump for diagnostic events
- btusb: Add HCI Drv commands for configuring altsetting
- btusb: Add RTL8851BE device 0x0bda:0xb850
- btusb: Add new VID/PID 13d3/3584 for MT7922
- btusb: Add new VID/PID 13d3/3630 and 13d3/3613 for MT7925
- btnxpuart: Implement host-wakeup feature
----------------------------------------------------------------
Chandrashekar Devegowda (1):
Bluetooth: btintel_pcie: Dump debug registers on error
Chen Ni (1):
Bluetooth: hci_uart: Remove unnecessary NULL check before release_firmware()
Dmitry Antipov (1):
Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach()
En-Wei Wu (1):
Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling
Hsin-chen Chuang (4):
Bluetooth: Introduce HCI Driver protocol
Bluetooth: btusb: Add HCI Drv commands for configuring altsetting
Revert "Bluetooth: btusb: Configure altsetting for HCI_USER_CHANNEL"
Revert "Bluetooth: btusb: add sysfs attribute to control USB alt setting"
Jiande Lu (1):
Bluetooth: btusb: Add new VID/PID 13d3/3630 for MT7925
Kiran K (1):
Bluetooth: btintel_pcie: Do not generate coredump for diagnostic events
Krzysztof Kozlowski (2):
Bluetooth: btmrvl_sdio: Fix wakeup source leaks on device unbind
Bluetooth: btmtksdio: Fix wakeup source leaks on device unbind
Liwei Sun (1):
Bluetooth: btusb: Add new VID/PID 13d3/3584 for MT7922
Luiz Augusto von Dentz (3):
Bluetooth: ISO: Fix not using SID from adv report
Bluetooth: ISO: Fix getpeername not returning sockaddr_iso_bc fields
Bluetooth: L2CAP: Fix not checking l2cap_chan security level
Neeraj Sanjay Kale (2):
dt-bindings: net: bluetooth: nxp: Add support for host-wakeup
Bluetooth: btnxpuart: Implement host-wakeup feature
Pauli Virtanen (2):
Bluetooth: add support for SIOCETHTOOL ETHTOOL_GET_TS_INFO
Bluetooth: separate CIS_LINK and BIS_LINK link types
WangYuli (1):
Bluetooth: btusb: Add RTL8851BE device 0x0bda:0xb850
Youn MÉLOIS (1):
Bluetooth: btusb: Add new VID/PID 13d3/3613 for MT7925
.../bindings/net/bluetooth/nxp,88w8987-bt.yaml | 17 ++
drivers/bluetooth/Kconfig | 12 -
drivers/bluetooth/btintel.c | 3 +-
drivers/bluetooth/btintel.h | 6 -
drivers/bluetooth/btintel_pcie.c | 141 +++++++++-
drivers/bluetooth/btintel_pcie.h | 19 ++
drivers/bluetooth/btmrvl_sdio.c | 4 +-
drivers/bluetooth/btmtksdio.c | 2 +-
drivers/bluetooth/btnxpuart.c | 58 +++-
drivers/bluetooth/btusb.c | 302 ++++++++++++---------
drivers/bluetooth/hci_aml.c | 3 +-
include/net/bluetooth/bluetooth.h | 4 +
include/net/bluetooth/hci.h | 4 +-
include/net/bluetooth/hci_core.h | 51 ++--
include/net/bluetooth/hci_drv.h | 76 ++++++
include/net/bluetooth/hci_mon.h | 2 +
net/bluetooth/Makefile | 3 +-
net/bluetooth/af_bluetooth.c | 87 ++++++
net/bluetooth/hci_conn.c | 79 ++++--
net/bluetooth/hci_core.c | 45 ++-
net/bluetooth/hci_drv.c | 105 +++++++
net/bluetooth/hci_event.c | 40 ++-
net/bluetooth/hci_sock.c | 12 +-
net/bluetooth/hci_sync.c | 63 ++++-
net/bluetooth/iso.c | 30 +-
net/bluetooth/l2cap_core.c | 15 +-
net/bluetooth/mgmt.c | 3 +-
net/bluetooth/mgmt_util.c | 2 +-
28 files changed, 918 insertions(+), 270 deletions(-)
create mode 100644 include/net/bluetooth/hci_drv.h
create mode 100644 net/bluetooth/hci_drv.c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bluetooth-next 2025-05-21
2025-05-21 14:47 bluetooth-next 2025-05-21 Luiz Augusto von Dentz
@ 2025-05-22 16:53 ` Jakub Kicinski
2025-05-22 17:02 ` Luiz Augusto von Dentz
0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2025-05-22 16:53 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: davem, linux-bluetooth, netdev
On Wed, 21 May 2025 10:47:55 -0400 Luiz Augusto von Dentz wrote:
> The following changes since commit e6b3527c3b0a676c710e91798c2709cc0538d312:
>
> Merge branch 'net-airoha-add-per-flow-stats-support-to-hw-flowtable-offloading' (2025-05-20 20:00:55 -0700)
>
> 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-05-21
>
> for you to fetch changes up to 623029dcc53837d409deb70b65eb7c7b83ab9b9a:
>
> Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() (2025-05-21 10:31:01 -0400)
Another bad fixes tag :( Time to automate this on your side?
Commit: ee1d8d65dffd ("Bluetooth: L2CAP: Fix not checking l2cap_chan security level")
Fixes tag: Fixes: 50c1241e6a8a ("Bluetooth: l2cap: Check encryption key size on incoming connection")
Has these problem(s):
- Target SHA1 does not exist
--
pw-bot: cr
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bluetooth-next 2025-05-21
2025-05-22 16:53 ` Jakub Kicinski
@ 2025-05-22 17:02 ` Luiz Augusto von Dentz
2025-05-22 17:05 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2025-05-22 17:02 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: davem, linux-bluetooth, netdev
Hi Jakub,
On Thu, May 22, 2025 at 12:53 PM Jakub Kicinski <kuba@kernel.org> wrote:
>
> On Wed, 21 May 2025 10:47:55 -0400 Luiz Augusto von Dentz wrote:
> > The following changes since commit e6b3527c3b0a676c710e91798c2709cc0538d312:
> >
> > Merge branch 'net-airoha-add-per-flow-stats-support-to-hw-flowtable-offloading' (2025-05-20 20:00:55 -0700)
> >
> > 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-05-21
> >
> > for you to fetch changes up to 623029dcc53837d409deb70b65eb7c7b83ab9b9a:
> >
> > Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() (2025-05-21 10:31:01 -0400)
>
> Another bad fixes tag :( Time to automate this on your side?
>
> Commit: ee1d8d65dffd ("Bluetooth: L2CAP: Fix not checking l2cap_chan security level")
> Fixes tag: Fixes: 50c1241e6a8a ("Bluetooth: l2cap: Check encryption key size on incoming connection")
> Has these problem(s):
> - Target SHA1 does not exist
> --
> pw-bot: cr
Will fix it, didn't we apply it to net already though? Seems like
net-next doesn't have it yet.
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bluetooth-next 2025-05-21
2025-05-22 17:02 ` Luiz Augusto von Dentz
@ 2025-05-22 17:05 ` Jakub Kicinski
0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2025-05-22 17:05 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: davem, linux-bluetooth, netdev
On Thu, 22 May 2025 13:02:43 -0400 Luiz Augusto von Dentz wrote:
> > On Wed, 21 May 2025 10:47:55 -0400 Luiz Augusto von Dentz wrote:
> > > The following changes since commit e6b3527c3b0a676c710e91798c2709cc0538d312:
> > >
> > > Merge branch 'net-airoha-add-per-flow-stats-support-to-hw-flowtable-offloading' (2025-05-20 20:00:55 -0700)
> > >
> > > 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-05-21
> > >
> > > for you to fetch changes up to 623029dcc53837d409deb70b65eb7c7b83ab9b9a:
> > >
> > > Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach() (2025-05-21 10:31:01 -0400)
> >
> > Another bad fixes tag :( Time to automate this on your side?
> >
> > Commit: ee1d8d65dffd ("Bluetooth: L2CAP: Fix not checking l2cap_chan security level")
> > Fixes tag: Fixes: 50c1241e6a8a ("Bluetooth: l2cap: Check encryption key size on incoming connection")
> > Has these problem(s):
> > - Target SHA1 does not exist
> > --
> > pw-bot: cr
>
> Will fix it, didn't we apply it to net already though? Seems like
> net-next doesn't have it yet.
I see, that's an extra complication, indeed.
I have net merged in locally, just waiting for builds to finish
before pushing. The commit in downstream trees has a different hash:
522e9ed157e3 ("Bluetooth: l2cap: Check encryption key size on incoming connection")
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-22 17:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-21 14:47 bluetooth-next 2025-05-21 Luiz Augusto von Dentz
2025-05-22 16:53 ` Jakub Kicinski
2025-05-22 17:02 ` Luiz Augusto von Dentz
2025-05-22 17:05 ` Jakub Kicinski
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).