Revert "qcacmn: Enable EAPOL/DHCP message tracing in Wifi driver"

This reverts commit I010c9295fd6ca42a950f84f0d7a19b00d8b0c0da due to
crash caused by excessive logging.

Change-Id: I38701eb5be9a25f38e4cb5738824b635a2b0442c
CRs-Fixed: 2535471
This commit is contained in:
Saket Jha
2019-09-30 17:27:51 -07:00
committed by nshrivas
parent b38cb7a8f0
commit d8d9d99f94
2 changed files with 6 additions and 43 deletions

View File

@@ -685,8 +685,7 @@ void qdf_dp_display_ptr_record(struct qdf_dp_trace_record_s *record,
uint8_t info); uint8_t info);
/** /**
* qdf_dp_display_proto_pkt_debug() - display proto packet only * qdf_dp_display_proto_pkt() - display proto packet
* for debug.
* @record: dptrace record * @record: dptrace record
* @index: index * @index: index
* @pdev_id: pdev id for the mgmt pkt * @pdev_id: pdev id for the mgmt pkt
@@ -694,24 +693,9 @@ void qdf_dp_display_ptr_record(struct qdf_dp_trace_record_s *record,
* *
* Return: none * Return: none
*/ */
void qdf_dp_display_proto_pkt_debug(struct qdf_dp_trace_record_s *record, void qdf_dp_display_proto_pkt(struct qdf_dp_trace_record_s *record,
uint16_t index, uint8_t pdev_id, uint16_t index, uint8_t pdev_id,
uint8_t info); uint8_t info);
/**
* qdf_dp_display_proto_pkt_always() - display proto packets all
* the time.
* @record: dptrace record
* @index: index
* @pdev_id: pdev id for the mgmt pkt
* @info: info used to display pkt (live mode, throttling)
*
* Return: none
*/
void qdf_dp_display_proto_pkt_always(struct qdf_dp_trace_record_s *record,
uint16_t index, uint8_t pdev_id,
uint8_t info);
/** /**
* qdf_dp_display_data_pkt_record() - Displays a data packet in DP trace * qdf_dp_display_data_pkt_record() - Displays a data packet in DP trace
* @record: pointer to a record in DP trace * @record: pointer to a record in DP trace

View File

@@ -733,11 +733,10 @@ void qdf_dp_trace_init(bool live_mode_config, uint8_t thresh,
qdf_dp_display_ptr_record; qdf_dp_display_ptr_record;
qdf_dp_trace_cb_table[QDF_DP_TRACE_EAPOL_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_EAPOL_PACKET_RECORD] =
qdf_dp_trace_cb_table[QDF_DP_TRACE_DHCP_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_DHCP_PACKET_RECORD] =
qdf_dp_display_proto_pkt_always;
qdf_dp_trace_cb_table[QDF_DP_TRACE_ARP_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_ARP_PACKET_RECORD] =
qdf_dp_trace_cb_table[QDF_DP_TRACE_ICMP_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_ICMP_PACKET_RECORD] =
qdf_dp_trace_cb_table[QDF_DP_TRACE_ICMPv6_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_ICMPv6_PACKET_RECORD] =
qdf_dp_display_proto_pkt_debug; qdf_dp_display_proto_pkt;
qdf_dp_trace_cb_table[QDF_DP_TRACE_MGMT_PACKET_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_MGMT_PACKET_RECORD] =
qdf_dp_display_mgmt_pkt; qdf_dp_display_mgmt_pkt;
qdf_dp_trace_cb_table[QDF_DP_TRACE_EVENT_RECORD] = qdf_dp_trace_cb_table[QDF_DP_TRACE_EVENT_RECORD] =
@@ -1748,8 +1747,8 @@ void qdf_dp_trace_record_event(enum QDF_DP_TRACE_ID code, uint8_t vdev_id,
qdf_export_symbol(qdf_dp_trace_record_event); qdf_export_symbol(qdf_dp_trace_record_event);
void qdf_dp_display_proto_pkt_debug(struct qdf_dp_trace_record_s *record, void qdf_dp_display_proto_pkt(struct qdf_dp_trace_record_s *record,
uint16_t index, uint8_t pdev_id, uint8_t info) uint16_t index, uint8_t pdev_id, uint8_t info)
{ {
int loc; int loc;
char prepend_str[QDF_DP_TRACE_PREPEND_STR_SIZE]; char prepend_str[QDF_DP_TRACE_PREPEND_STR_SIZE];
@@ -1769,27 +1768,7 @@ void qdf_dp_display_proto_pkt_debug(struct qdf_dp_trace_record_s *record,
qdf_dp_dir_to_str(buf->dir), qdf_dp_dir_to_str(buf->dir),
QDF_MAC_ADDR_ARRAY(buf->da.bytes)); QDF_MAC_ADDR_ARRAY(buf->da.bytes));
} }
qdf_export_symbol(qdf_dp_display_proto_pkt_debug); qdf_export_symbol(qdf_dp_display_proto_pkt);
void qdf_dp_display_proto_pkt_always(struct qdf_dp_trace_record_s *record,
uint16_t index, uint8_t pdev_id, uint8_t info)
{
int loc;
char prepend_str[QDF_DP_TRACE_PREPEND_STR_SIZE];
struct qdf_dp_trace_proto_buf *buf =
(struct qdf_dp_trace_proto_buf *)record->data;
qdf_mem_zero(prepend_str, sizeof(prepend_str));
loc = qdf_dp_trace_fill_meta_str(prepend_str, sizeof(prepend_str),
index, info, record);
qdf_info("%s [%d] [%s] SA: "QDF_MAC_ADDR_STR " %s DA: "
QDF_MAC_ADDR_STR, prepend_str,
buf->vdev_id, qdf_dp_subtype_to_str(buf->subtype),
QDF_MAC_ADDR_ARRAY(buf->sa.bytes),
qdf_dp_dir_to_str(buf->dir),
QDF_MAC_ADDR_ARRAY(buf->da.bytes));
}
qdf_export_symbol(qdf_dp_display_proto_pkt_always);
void qdf_dp_trace_proto_pkt(enum QDF_DP_TRACE_ID code, uint8_t vdev_id, void qdf_dp_trace_proto_pkt(enum QDF_DP_TRACE_ID code, uint8_t vdev_id,
uint8_t *sa, uint8_t *da, enum qdf_proto_type type, uint8_t *sa, uint8_t *da, enum qdf_proto_type type,