Message ID | 20220502214517.2363950-1-luiz.dentz@gmail.com |
---|---|
State | New |
Headers | show |
Series | [BlueZ] monitor: Fix parsing of LE Terminate BIG Complete event | expand |
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=637729 ---Test result--- Test Summary: CheckPatch PASS 1.60 seconds GitLint PASS 1.05 seconds Prep - Setup ELL PASS 43.23 seconds Build - Prep PASS 0.69 seconds Build - Configure PASS 8.64 seconds Build - Make PASS 1279.00 seconds Make Check PASS 11.38 seconds Make Check w/Valgrind PASS 440.61 seconds Make Distcheck PASS 236.49 seconds Build w/ext ELL - Configure PASS 9.00 seconds Build w/ext ELL - Make PASS 1282.30 seconds Incremental Build with patchesPASS 0.00 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 2 May 2022 14:45:17 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > LE Terminate BIG Complete event format Subevent_Code, BIG_Handle and > Reason but the last two were swapped. > --- > monitor/bt.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ] monitor: Fix parsing of LE Terminate BIG Complete event https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=b7ca43eedfd5 You are awesome, thank you!
diff --git a/monitor/bt.h b/monitor/bt.h index 644c97c98..7aa016a0e 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -3649,8 +3649,8 @@ struct bt_hci_evt_le_big_complete { #define BT_HCI_EVT_LE_BIG_TERMINATE 0x1c struct bt_hci_evt_le_big_terminate { - uint8_t reason; uint8_t handle; + uint8_t reason; } __attribute__ ((packed)); #define BT_HCI_EVT_LE_BIG_SYNC_ESTABILISHED 0x1d
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> LE Terminate BIG Complete event format Subevent_Code, BIG_Handle and Reason but the last two were swapped. --- monitor/bt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)