* pull request: bluetooth 2024-12-11
@ 2024-12-11 17:21 Luiz Augusto von Dentz
2024-12-12 11:55 ` Paolo Abeni
0 siblings, 1 reply; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2024-12-11 17:21 UTC (permalink / raw)
To: davem, kuba; +Cc: linux-bluetooth, netdev
The following changes since commit 3dd002f20098b9569f8fd7f8703f364571e2e975:
net: renesas: rswitch: handle stop vs interrupt race (2024-12-10 19:08:00 -0800)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2024-12-11
for you to fetch changes up to 69e8a8410d7bcd3636091b5915a939b9972f99f1:
Bluetooth: btmtk: avoid UAF in btmtk_process_coredump (2024-12-11 12:01:13 -0500)
----------------------------------------------------------------
bluetooth pull request for net:
- SCO: Fix transparent voice setting
- ISO: Locking fixes
- hci_core: Fix sleeping function called from invalid context
- hci_event: Fix using rcu_read_(un)lock while iterating
- btmtk: avoid UAF in btmtk_process_coredump
----------------------------------------------------------------
Frédéric Danis (1):
Bluetooth: SCO: Add support for 16 bits transparent voice setting
Iulia Tanasescu (4):
Bluetooth: iso: Always release hdev at the end of iso_listen_bis
Bluetooth: iso: Fix recursive locking warning
Bluetooth: iso: Fix circular lock in iso_listen_bis
Bluetooth: iso: Fix circular lock in iso_conn_big_sync
Luiz Augusto von Dentz (2):
Bluetooth: hci_core: Fix sleeping function called from invalid context
Bluetooth: hci_event: Fix using rcu_read_(un)lock while iterating
Michal Luczaj (1):
Bluetooth: Improve setsockopt() handling of malformed user input
Thadeu Lima de Souza Cascardo (1):
Bluetooth: btmtk: avoid UAF in btmtk_process_coredump
drivers/bluetooth/btmtk.c | 20 ++++---
include/net/bluetooth/bluetooth.h | 10 +---
include/net/bluetooth/hci_core.h | 108 ++++++++++++++++++++++++--------------
net/bluetooth/hci_core.c | 9 ++--
net/bluetooth/hci_event.c | 33 ++++--------
net/bluetooth/hci_sock.c | 14 ++---
net/bluetooth/iso.c | 75 +++++++++++++++++++-------
net/bluetooth/l2cap_core.c | 12 ++---
net/bluetooth/l2cap_sock.c | 20 +++----
net/bluetooth/rfcomm/core.c | 6 +++
net/bluetooth/rfcomm/sock.c | 9 ++--
net/bluetooth/sco.c | 52 +++++++++---------
12 files changed, 215 insertions(+), 153 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: pull request: bluetooth 2024-12-11
2024-12-11 17:21 pull request: bluetooth 2024-12-11 Luiz Augusto von Dentz
@ 2024-12-12 11:55 ` Paolo Abeni
2024-12-12 12:20 ` Paolo Abeni
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Abeni @ 2024-12-12 11:55 UTC (permalink / raw)
To: Luiz Augusto von Dentz, davem, kuba; +Cc: linux-bluetooth, netdev
On 12/11/24 18:21, Luiz Augusto von Dentz wrote:
> The following changes since commit 3dd002f20098b9569f8fd7f8703f364571e2e975:
>
> net: renesas: rswitch: handle stop vs interrupt race (2024-12-10 19:08:00 -0800)
>
> are available in the Git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2024-12-11
>
> for you to fetch changes up to 69e8a8410d7bcd3636091b5915a939b9972f99f1:
>
> Bluetooth: btmtk: avoid UAF in btmtk_process_coredump (2024-12-11 12:01:13 -0500)
On top of this I see a new build warning:
net/bluetooth/hci_core.c:60:1: warning: symbol 'hci_cb_list_lock' was
not declared. Should it be static?
Would you mind fixing that and re-sending? We are still on time for
tomorrow 'net' PR.
Thanks,
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: bluetooth 2024-12-11
2024-12-12 11:55 ` Paolo Abeni
@ 2024-12-12 12:20 ` Paolo Abeni
2024-12-12 14:22 ` Luiz Augusto von Dentz
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Abeni @ 2024-12-12 12:20 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth, netdev, davem, kuba
On 12/12/24 12:55, Paolo Abeni wrote:
> On 12/11/24 18:21, Luiz Augusto von Dentz wrote:
>> The following changes since commit 3dd002f20098b9569f8fd7f8703f364571e2e975:
>>
>> net: renesas: rswitch: handle stop vs interrupt race (2024-12-10 19:08:00 -0800)
>>
>> are available in the Git repository at:
>>
>> git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2024-12-11
>>
>> for you to fetch changes up to 69e8a8410d7bcd3636091b5915a939b9972f99f1:
>>
>> Bluetooth: btmtk: avoid UAF in btmtk_process_coredump (2024-12-11 12:01:13 -0500)
>
> On top of this I see a new build warning:
>
> net/bluetooth/hci_core.c:60:1: warning: symbol 'hci_cb_list_lock' was
> not declared. Should it be static?
>
> Would you mind fixing that and re-sending? We are still on time for
> tomorrow 'net' PR.
Whoops, I lost track of current time, the net PR will be later today
(sorry for the confusion!), but there is stills some time for the update.
/P
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: pull request: bluetooth 2024-12-11
2024-12-12 12:20 ` Paolo Abeni
@ 2024-12-12 14:22 ` Luiz Augusto von Dentz
0 siblings, 0 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2024-12-12 14:22 UTC (permalink / raw)
To: Paolo Abeni; +Cc: linux-bluetooth, netdev, davem, kuba
Hi Paolo,
On Thu, Dec 12, 2024 at 7:20 AM Paolo Abeni <pabeni@redhat.com> wrote:
>
>
>
> On 12/12/24 12:55, Paolo Abeni wrote:
> > On 12/11/24 18:21, Luiz Augusto von Dentz wrote:
> >> The following changes since commit 3dd002f20098b9569f8fd7f8703f364571e2e975:
> >>
> >> net: renesas: rswitch: handle stop vs interrupt race (2024-12-10 19:08:00 -0800)
> >>
> >> are available in the Git repository at:
> >>
> >> git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git tags/for-net-2024-12-11
> >>
> >> for you to fetch changes up to 69e8a8410d7bcd3636091b5915a939b9972f99f1:
> >>
> >> Bluetooth: btmtk: avoid UAF in btmtk_process_coredump (2024-12-11 12:01:13 -0500)
> >
> > On top of this I see a new build warning:
> >
> > net/bluetooth/hci_core.c:60:1: warning: symbol 'hci_cb_list_lock' was
> > not declared. Should it be static?
> >
> > Would you mind fixing that and re-sending? We are still on time for
> > tomorrow 'net' PR.
>
> Whoops, I lost track of current time, the net PR will be later today
> (sorry for the confusion!), but there is stills some time for the update.
Will resend it asap.
> /P
>
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-12 14:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-11 17:21 pull request: bluetooth 2024-12-11 Luiz Augusto von Dentz
2024-12-12 11:55 ` Paolo Abeni
2024-12-12 12:20 ` Paolo Abeni
2024-12-12 14:22 ` 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