Message ID | 20230816190500.2732009-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Bluetooth: hci_sync: Ignore errors from HCI_OP_REMOTE_NAME_REQ_CANCEL | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
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/CheckSmatch | 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 | fail | TestRunner_iso-tester: Total: 95, Passed: 93 (97.9%), Failed: 2, Not Run: 0 |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
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 | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build 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=776737 ---Test result--- Test Summary: CheckPatch PASS 0.70 seconds GitLint PASS 0.32 seconds SubjectPrefix PASS 0.11 seconds BuildKernel PASS 39.19 seconds CheckAllWarning PASS 42.49 seconds CheckSparse PASS 47.48 seconds CheckSmatch PASS 131.14 seconds BuildKernel32 PASS 37.30 seconds TestRunnerSetup PASS 569.82 seconds TestRunner_l2cap-tester PASS 28.80 seconds TestRunner_iso-tester FAIL 84.10 seconds TestRunner_bnep-tester PASS 13.31 seconds TestRunner_mgmt-tester PASS 251.00 seconds TestRunner_rfcomm-tester PASS 19.10 seconds TestRunner_sco-tester PASS 22.35 seconds TestRunner_ioctl-tester PASS 22.16 seconds TestRunner_mesh-tester PASS 16.91 seconds TestRunner_smp-tester PASS 18.24 seconds TestRunner_userchan-tester PASS 14.51 seconds IncrementalBuild PASS 35.71 seconds Details ############################## Test: TestRunner_iso-tester - FAIL Desc: Run iso-tester with test-runner Output: Total: 95, Passed: 93 (97.9%), Failed: 2, Not Run: 0 Failed Test Cases ISO Connect Suspend - Success Failed 4.458 seconds ISO Connect2 Suspend - Success Failed 14.591 seconds --- Regards, Linux Bluetooth
diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c index d10a0f36b947..f6d1dc1716e3 100644 --- a/net/bluetooth/hci_sync.c +++ b/net/bluetooth/hci_sync.c @@ -5206,7 +5206,10 @@ int hci_stop_discovery_sync(struct hci_dev *hdev) if (!e) return 0; - return hci_remote_name_cancel_sync(hdev, &e->data.bdaddr); + /* Ignore cancel errors since it should interfere with stopping + * of the discovery. + */ + hci_remote_name_cancel_sync(hdev, &e->data.bdaddr); } return 0;