Message ID | 20230225002052.3866357-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c25cd4779f1b26e58a49e645694682b31edb857c |
Headers | show |
Series | [1/3] Bluetooth: hci_core: Make hci_conn_hash_add append to the list | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | fail | WARNING: Use a single space after To: #98: To: ERROR: Unrecognized email address: '' #98: To: ERROR: Missing Signed-off-by: line by nominal patch author '' total: 2 errors, 1 warnings, 8 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/13151871.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. |
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 | success | TestRunner PASS |
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=724805 ---Test result--- Test Summary: CheckPatch FAIL 1.96 seconds GitLint PASS 0.79 seconds SubjectPrefix PASS 0.26 seconds BuildKernel PASS 31.97 seconds CheckAllWarning PASS 34.63 seconds CheckSparse PASS 39.41 seconds CheckSmatch PASS 109.16 seconds BuildKernel32 PASS 30.46 seconds TestRunnerSetup PASS 439.59 seconds TestRunner_l2cap-tester PASS 15.85 seconds TestRunner_iso-tester PASS 16.80 seconds TestRunner_bnep-tester PASS 5.43 seconds TestRunner_mgmt-tester PASS 108.45 seconds TestRunner_rfcomm-tester PASS 8.63 seconds TestRunner_sco-tester PASS 7.96 seconds TestRunner_ioctl-tester PASS 9.26 seconds TestRunner_mesh-tester PASS 6.87 seconds TestRunner_smp-tester PASS 7.79 seconds TestRunner_userchan-tester PASS 5.65 seconds IncrementalBuild PASS 38.78 seconds Details ############################## Test: CheckPatch - FAIL Desc: Run checkpatch.pl script Output: [1/3] Bluetooth: hci_core: Make hci_conn_hash_add append to the list WARNING: Use a single space after To: #98: To: ERROR: Unrecognized email address: '' #98: To: ERROR: Missing Signed-off-by: line by nominal patch author '' total: 2 errors, 1 warnings, 8 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/13151871.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. --- 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 Fri, 24 Feb 2023 16:20:50 -0800 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This makes hci_conn_hash_add append to the tail of the conn_hash so it > matches the order they are created, this is required if the controller > attempts to match the order of ACL with CIS which uses append logic > when programming the CIS ids on the CIG. > > [...] Here is the summary with links: - [1/3] Bluetooth: hci_core: Make hci_conn_hash_add append to the list https://git.kernel.org/bluetooth/bluetooth-next/c/c25cd4779f1b - [2/3] Bluetooth: hci_core: Detect if an ACL packet is in fact an ISO packet https://git.kernel.org/bluetooth/bluetooth-next/c/8c999e405d6b - [3/3] Bluetooth: btusb: Remove detection of ISO packets over bulk https://git.kernel.org/bluetooth/bluetooth-next/c/e574898ac6ae You are awesome, thank you!
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 7254edfba4c9..9488671c1219 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -978,7 +978,7 @@ static inline bool hci_conn_sc_enabled(struct hci_conn *conn) static inline void hci_conn_hash_add(struct hci_dev *hdev, struct hci_conn *c) { struct hci_conn_hash *h = &hdev->conn_hash; - list_add_rcu(&c->list, &h->list); + list_add_tail_rcu(&c->list, &h->list); switch (c->type) { case ACL_LINK: h->acl_num++;