Message ID | 20240109174928.488595-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | a7ee39bea31519849985453b9acbab06894ee0d9 |
Headers | show |
Series | [v4,1/4] Bluetooth: Remove superfluous call to hci_conn_check_pending() | 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 | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
tedd_an/CheckSmatch | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
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: 497, Passed: 494 (99.4%), Failed: 1, Not Run: 2 |
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=815485 ---Test result--- Test Summary: CheckPatch FAIL 3.12 seconds GitLint PASS 0.87 seconds SubjectPrefix PASS 0.28 seconds BuildKernel PASS 28.61 seconds CheckAllWarning PASS 31.31 seconds CheckSparse WARNING 37.01 seconds CheckSmatch WARNING 100.36 seconds BuildKernel32 PASS 27.23 seconds TestRunnerSetup PASS 446.17 seconds TestRunner_l2cap-tester PASS 23.56 seconds TestRunner_iso-tester PASS 47.72 seconds TestRunner_bnep-tester PASS 7.47 seconds TestRunner_mgmt-tester FAIL 230.72 seconds TestRunner_rfcomm-tester PASS 10.97 seconds TestRunner_sco-tester PASS 18.05 seconds TestRunner_ioctl-tester PASS 11.99 seconds TestRunner_mesh-tester PASS 8.73 seconds TestRunner_smp-tester PASS 9.70 seconds TestRunner_userchan-tester PASS 7.22 seconds IncrementalBuild PASS 96.93 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: [v4,3/4] Bluetooth: hci_conn: Only do ACL connections sequentially WARNING: 'firware' may be misspelled - perhaps 'firmware'? #84: requests in the firware. ^^^^^^^ total: 0 errors, 1 warnings, 0 checks, 181 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. /github/workspace/src/src/13515173.patch has style problems, please review. NOTE: Ignored message types: UNKNOWN_COMMIT_ID NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. ############################## Test: CheckSparse - WARNING Desc: Run sparse tool with linux kernel Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): ############################## Test: CheckSmatch - WARNING Desc: Run smatch tool with source Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h):net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 497, Passed: 494 (99.4%), Failed: 1, Not Run: 2 Failed Test Cases LL Privacy - Add Device 5 (2 Devices to RL) Failed 0.195 seconds --- Regards, Linux Bluetooth
Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 9 Jan 2024 12:49:25 -0500 you wrote: > From: Jonas Dreßler <verdre@v0yd.nl> > > The "pending connections" feature was originally introduced with commit > 4c67bc74f016 ("[Bluetooth] Support concurrent connect requests") and > 6bd57416127e ("[Bluetooth] Handling pending connect attempts after > inquiry") to handle controllers supporting only a single connection request > at a time. Later things were extended to also cancel ongoing inquiries on > connect() with commit 89e65975fea5 ("Bluetooth: Cancel Inquiry before > Create Connection"). > > [...] Here is the summary with links: - [v4,1/4] Bluetooth: Remove superfluous call to hci_conn_check_pending() https://git.kernel.org/bluetooth/bluetooth-next/c/a7ee39bea315 - [v4,2/4] Bluetooth: hci_event: Use HCI error defines instead of magic values https://git.kernel.org/bluetooth/bluetooth-next/c/f8c47ee39e6d - [v4,3/4] Bluetooth: hci_conn: Only do ACL connections sequentially (no matching commit) - [v4,4/4] Bluetooth: Remove pending ACL connection attempts (no matching commit) You are awesome, thank you!
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 22b22c264c2a..23e0e63ac312 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -3556,8 +3556,6 @@ static void hci_remote_name_evt(struct hci_dev *hdev, void *data, bt_dev_dbg(hdev, "status 0x%2.2x", ev->status); - hci_conn_check_pending(hdev); - hci_dev_lock(hdev); conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &ev->bdaddr);