Message ID | 1704798203-20887-1-git-send-email-quic_zijuhu@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 7974b2128489d062c9d21419633eebde07f07032 |
Headers | show |
Series | [v2,1/1] Bluetooth: hci_event: Fix wrongly recorded wakeup BD_ADDR | 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): |
tedd_an/CheckSmatch | warning | CheckSparse WARNING 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 | 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=815358 ---Test result--- Test Summary: CheckPatch PASS 1.10 seconds GitLint PASS 0.61 seconds SubjectPrefix PASS 0.14 seconds BuildKernel PASS 27.62 seconds CheckAllWarning PASS 30.25 seconds CheckSparse WARNING 35.68 seconds CheckSmatch WARNING 98.22 seconds BuildKernel32 PASS 26.63 seconds TestRunnerSetup PASS 426.80 seconds TestRunner_l2cap-tester PASS 22.73 seconds TestRunner_iso-tester PASS 44.83 seconds TestRunner_bnep-tester PASS 6.73 seconds TestRunner_mgmt-tester PASS 160.15 seconds TestRunner_rfcomm-tester PASS 10.78 seconds TestRunner_sco-tester PASS 14.29 seconds TestRunner_ioctl-tester PASS 11.87 seconds TestRunner_mesh-tester PASS 8.68 seconds TestRunner_smp-tester PASS 9.63 seconds TestRunner_userchan-tester PASS 7.19 seconds IncrementalBuild PASS 25.91 seconds Details ############################## 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): ############################## 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): --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 9 Jan 2024 19:03:23 +0800 you wrote: > hci_store_wake_reason() wrongly parses event HCI_Connection_Request > as HCI_Connection_Complete and HCI_Connection_Complete as > HCI_Connection_Request, so causes recording wakeup BD_ADDR error and > potential stability issue, fix it by using the correct field. > > Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com> > > [...] Here is the summary with links: - [v2,1/1] Bluetooth: hci_event: Fix wrongly recorded wakeup BD_ADDR https://git.kernel.org/bluetooth/bluetooth-next/c/7974b2128489 You are awesome, thank you!
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index ef8c3bed7361..22b22c264c2a 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -7420,10 +7420,10 @@ static void hci_store_wake_reason(struct hci_dev *hdev, u8 event, * keep track of the bdaddr of the connection event that woke us up. */ if (event == HCI_EV_CONN_REQUEST) { - bacpy(&hdev->wake_addr, &conn_complete->bdaddr); + bacpy(&hdev->wake_addr, &conn_request->bdaddr); hdev->wake_addr_type = BDADDR_BREDR; } else if (event == HCI_EV_CONN_COMPLETE) { - bacpy(&hdev->wake_addr, &conn_request->bdaddr); + bacpy(&hdev->wake_addr, &conn_complete->bdaddr); hdev->wake_addr_type = BDADDR_BREDR; } else if (event == HCI_EV_LE_META) { struct hci_ev_le_meta *le_ev = (void *)skb->data;
hci_store_wake_reason() wrongly parses event HCI_Connection_Request as HCI_Connection_Complete and HCI_Connection_Complete as HCI_Connection_Request, so causes recording wakeup BD_ADDR error and potential stability issue, fix it by using the correct field. Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com> --- Changes since v1: - Correct tile and commit message based on Paul's suggestions net/bluetooth/hci_event.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)