Context |
Check |
Description |
tedd_an/pre-ci_am |
success
|
Success
|
tedd_an/CheckPatch |
warning
|
WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#88:
> HCI Event: Command Complete (0x0e) plen 34 #14 24.982811
WARNING:PREFER_DEFINED_ATTRIBUTE_MACRO: Prefer __packed over __attribute__((packed))
#116: FILE: monitor/bt.h:2921:
+} __attribute__ ((packed));
WARNING:PREFER_DEFINED_ATTRIBUTE_MACRO: Prefer __packed over __attribute__((packed))
#128: FILE: monitor/bt.h:2933:
+} __attribute__ ((packed));
WARNING:LONG_LINE: line length of 88 exceeds 80 columns
#141: FILE: monitor/packet.c:8949:
+static void le_read_iso_link_quality_cmd(uint16_t index, const void *data, uint8_t size)
WARNING:LONG_LINE: line length of 96 exceeds 80 columns
#148: FILE: monitor/packet.c:8956:
+static void status_le_read_iso_link_quality_rsp(uint16_t index, const void *data, uint8_t size)
/github/workspace/src/src/13332858.patch total: 0 errors, 5 warnings, 74 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/13332858.patch has style problems, please review.
NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO
NOTE: If any of the errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.
|
tedd_an/GitLint |
fail
|
WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search
5: B1 Line exceeds max length (139>80): " > HCI Event: Command Complete (0x0e) plen 34 #14 24.982811"
|
tedd_an/IncrementalBuild |
success
|
Incremental Build PASS
|
@@ -2914,6 +2914,24 @@ struct bt_hci_cmd_le_set_host_feature {
uint8_t bit_value;
} __attribute__ ((packed));
+#define BT_HCI_CMD_LE_READ_ISO_LINK_QUALITY 0x2075
+#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY BT_HCI_CMD_BIT(45, 1)
+struct bt_hci_cmd_le_read_iso_link_quality {
+ uint16_t handle;
+} __attribute__ ((packed));
+
+struct bt_hci_rsp_le_read_iso_link_quality {
+ uint8_t status;
+ uint16_t handle;
+ uint32_t tx_unacked_packets;
+ uint32_t tx_flushed_packets;
+ uint32_t tx_last_subevent_packets;
+ uint32_t retransmitted_packets;
+ uint32_t crc_error_packets;
+ uint32_t rx_unreceived_packets;
+ uint32_t duplicated_packets;
+} __attribute__ ((packed));
+
#define BT_HCI_EVT_INQUIRY_COMPLETE 0x01
struct bt_hci_evt_inquiry_complete {
uint8_t status;
@@ -8946,6 +8946,34 @@ static void le_set_host_feature_cmd(uint16_t index, const void *data,
print_field("Bit Value: %u", cmd->bit_value);
}
+static void le_read_iso_link_quality_cmd(uint16_t index, const void *data, uint8_t size)
+{
+ const struct bt_hci_cmd_le_read_iso_link_quality *cmd = data;
+
+ print_field("Handle: %d", le16_to_cpu(cmd->handle));
+}
+
+static void status_le_read_iso_link_quality_rsp(uint16_t index, const void *data, uint8_t size)
+{
+ const struct bt_hci_rsp_le_read_iso_link_quality *rsp = data;
+
+ print_status(rsp->status);
+
+ if (size == 1)
+ return;
+
+ print_field("Handle: %d", le16_to_cpu(rsp->handle));
+ print_field("TX unacked packets %d", rsp->tx_unacked_packets);
+ print_field("TX flushed packets %d", rsp->tx_flushed_packets);
+ print_field("TX last subevent packets %d",
+ rsp->tx_last_subevent_packets);
+ print_field("TX retransmitted packets %d",
+ rsp->retransmitted_packets);
+ print_field("TX crc error packets %d", rsp->crc_error_packets);
+ print_field("RX unreceived packets %d", rsp->rx_unreceived_packets);
+ print_field("Duplicated packets %d", rsp->duplicated_packets);
+}
+
struct opcode_data {
uint16_t opcode;
int bit;
@@ -9895,6 +9923,16 @@ static const struct opcode_data opcode_table[] = {
"LE Set Host Feature", le_set_host_feature_cmd,
sizeof(struct bt_hci_cmd_le_set_host_feature),
true, status_rsp, 1, true },
+ { BT_HCI_CMD_LE_READ_ISO_LINK_QUALITY,
+ BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY,
+ "LE Read ISO link quality",
+ le_read_iso_link_quality_cmd,
+ sizeof(
+ struct bt_hci_cmd_le_read_iso_link_quality),
+ true, status_le_read_iso_link_quality_rsp,
+ sizeof(
+ struct bt_hci_rsp_le_read_iso_link_quality),
+ true },
{ }
};
btmon: Add parsing LE Read ISO link quality > HCI Event: Command Complete (0x0e) plen 34 #14 24.982811 LE Read ISO link quality (0x08|0x0075) ncmd 1 Status: Success (0x00) Handle: 98 TX unacked packets 0 TX flushed packets 257602 TX last subevent packets 0 TX retrnansmitted packets 0 TX crc error packets 2594 RX unreceived packets 0 Duplicated packets 0 --- monitor/bt.h | 18 ++++++++++++++++++ monitor/packet.c | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+)