Message ID | 20250108170111.16824-1-tcrawford@system76.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Bluetooth: btusb: Add RTL8851BE device 13d3:3600 | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/SubjectPrefix | success | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | fail | TestRunner_mgmt-tester: Total: 490, Passed: 485 (99.0%), Failed: 1, Not Run: 4 |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | fail | TestRunner_mesh-tester: WARNING: CPU: 0 PID: 63 at kernel/workqueue.c:2257 __queue_work+0x687/0xb40 |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=923470 ---Test result--- Test Summary: CheckPatch PENDING 0.35 seconds GitLint PENDING 0.37 seconds SubjectPrefix PASS 0.06 seconds BuildKernel PASS 25.31 seconds CheckAllWarning PASS 27.94 seconds CheckSparse PASS 31.63 seconds BuildKernel32 PASS 25.22 seconds TestRunnerSetup PASS 442.69 seconds TestRunner_l2cap-tester PASS 20.59 seconds TestRunner_iso-tester PASS 36.21 seconds TestRunner_bnep-tester PASS 4.81 seconds TestRunner_mgmt-tester FAIL 123.81 seconds TestRunner_rfcomm-tester PASS 7.55 seconds TestRunner_sco-tester PASS 9.34 seconds TestRunner_ioctl-tester PASS 8.11 seconds TestRunner_mesh-tester FAIL 6.11 seconds TestRunner_smp-tester PASS 6.91 seconds TestRunner_userchan-tester PASS 4.97 seconds IncrementalBuild PENDING 0.80 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 490, Passed: 485 (99.0%), Failed: 1, Not Run: 4 Failed Test Cases LL Privacy - Set Flags 1 (Add to RL) Failed 0.162 seconds ############################## Test: TestRunner_mesh-tester - FAIL Desc: Run mesh-tester with test-runner Output: BUG: KASAN: slab-use-after-free in run_timer_softirq+0x76c/0x7d0 WARNING: CPU: 0 PID: 63 at kernel/workqueue.c:2257 __queue_work+0x687/0xb40 Total: 10, Passed: 9 (90.0%), Failed: 1, Not Run: 0 Failed Test Cases Mesh - Send cancel - 1 Failed 0.108 seconds ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hi Tim, Garrett, On Wed, Jan 8, 2025 at 12:01 PM Tim Crawford <tcrawford@system76.com> wrote: > > From: Garrett Wilke <garrett@system76.com> Please add the information of the device found in /sys/kernel/debug/usb/devices: https://github.com/bluez/bluetooth-next/commit/f597b8982d51f7b2cb499849b8c3131d545efe63 > Signed-off-by: Garrett Wilke <garrett@system76.com> > Signed-off-by: Tim Crawford <tcrawford@system76.com> > --- > drivers/bluetooth/btusb.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c > index ab0506148e84..71caf297aa70 100644 > --- a/drivers/bluetooth/btusb.c > +++ b/drivers/bluetooth/btusb.c > @@ -483,6 +483,9 @@ static const struct usb_device_id quirks_table[] = { > { USB_DEVICE(0x13d3, 0x3549), .driver_info = BTUSB_REALTEK | > BTUSB_WIDEBAND_SPEECH }, > > + /* Realtek 8851BE Bluetooth devices */ > + { USB_DEVICE(0x13d3, 0x3600), .driver_info = BTUSB_REALTEK }, > + > /* Realtek 8852AE Bluetooth devices */ > { USB_DEVICE(0x0bda, 0x2852), .driver_info = BTUSB_REALTEK | > BTUSB_WIDEBAND_SPEECH }, > -- > 2.47.1 > >
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index ab0506148e84..71caf297aa70 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -483,6 +483,9 @@ static const struct usb_device_id quirks_table[] = { { USB_DEVICE(0x13d3, 0x3549), .driver_info = BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH }, + /* Realtek 8851BE Bluetooth devices */ + { USB_DEVICE(0x13d3, 0x3600), .driver_info = BTUSB_REALTEK }, + /* Realtek 8852AE Bluetooth devices */ { USB_DEVICE(0x0bda, 0x2852), .driver_info = BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH },