2024-06-06 09:24:01

by Chris Lu

[permalink] [raw]
Subject: [PATCH v3 1/4] Bluetooth: net: add hci_iso_hdr function for iso data

Add function hci_iso_hdr to get skb->data when packet type is ISO.

Signed-off-by: Chris Lu <[email protected]>
Signed-off-by: Sean Wang <[email protected]>
---
include/net/bluetooth/hci.h | 5 +++++
1 file changed, 5 insertions(+)

diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index e372a88e8c3f..b9f8f91f6c7f 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -2898,6 +2898,11 @@ static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
return (struct hci_sco_hdr *) skb->data;
}

+static inline struct hci_iso_hdr *hci_iso_hdr(const struct sk_buff *skb)
+{
+ return (struct hci_iso_hdr *) skb->data;
+}
+
/* Command opcode pack/unpack */
#define hci_opcode_pack(ogf, ocf) ((__u16) ((ocf & 0x03ff)|(ogf << 10)))
#define hci_opcode_ogf(op) (op >> 10)
--
2.18.0



2024-06-06 09:57:09

by bluez.test.bot

[permalink] [raw]
Subject: RE: Bluetooth: btusb: MediaTek ISO data transmission

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=859426

---Test result---

Test Summary:
CheckPatch PASS 5.18 seconds
GitLint PASS 1.16 seconds
SubjectPrefix PASS 0.45 seconds
BuildKernel PASS 30.20 seconds
CheckAllWarning PASS 33.84 seconds
CheckSparse WARNING 41.27 seconds
CheckSmatch FAIL 34.71 seconds
BuildKernel32 PASS 29.16 seconds
TestRunnerSetup PASS 526.28 seconds
TestRunner_l2cap-tester PASS 20.49 seconds
TestRunner_iso-tester PASS 28.40 seconds
TestRunner_bnep-tester PASS 4.77 seconds
TestRunner_mgmt-tester PASS 113.01 seconds
TestRunner_rfcomm-tester PASS 8.09 seconds
TestRunner_sco-tester PASS 14.98 seconds
TestRunner_ioctl-tester PASS 7.74 seconds
TestRunner_mesh-tester PASS 5.85 seconds
TestRunner_smp-tester PASS 6.85 seconds
TestRunner_userchan-tester PASS 4.95 seconds
IncrementalBuild PASS 46.45 seconds

Details
##############################
Test: CheckSparse - WARNING
Desc: Run sparse tool with linux kernel
Output:
drivers/bluetooth/btmtk.c:501:45: warning: incorrect type in assignment (different base types)drivers/bluetooth/btmtk.c:501:45: expected unsigned short [usertype] expectdrivers/bluetooth/btmtk.c:501:45: got restricted __le16 [usertype] dlen
##############################
Test: CheckSmatch - FAIL
Desc: Run smatch tool with source
Output:

Segmentation fault (core dumped)
make[4]: *** [scripts/Makefile.build:244: net/bluetooth/hci_core.o] Error 139
make[4]: *** Deleting file 'net/bluetooth/hci_core.o'
make[3]: *** [scripts/Makefile.build:485: net/bluetooth] Error 2
make[2]: *** [scripts/Makefile.build:485: net] Error 2
make[2]: *** Waiting for unfinished jobs....
Segmentation fault (core dumped)
make[4]: *** [scripts/Makefile.build:244: drivers/bluetooth/bcm203x.o] Error 139
make[4]: *** Deleting file 'drivers/bluetooth/bcm203x.o'
make[4]: *** Waiting for unfinished jobs....
make[3]: *** [scripts/Makefile.build:485: drivers/bluetooth] Error 2
make[2]: *** [scripts/Makefile.build:485: drivers] Error 2
make[1]: *** [/github/workspace/src/src/Makefile:1919: .] Error 2
make: *** [Makefile:240: __sub-make] Error 2


---
Regards,
Linux Bluetooth