iwlwifi: dbg: remove no filter condition
authorMordechay Goodstein <mordechay.goodstein@intel.com>
Wed, 30 Sep 2020 13:31:19 +0000 (16:31 +0300)
committerLuca Coelho <luciano.coelho@intel.com>
Thu, 1 Oct 2020 19:00:59 +0000 (22:00 +0300)
Currently if group-id and command-id values are zero we
trigger and collect every RX frame,
this is not the right behavior and zero value
should be handled like any other filter.

Signed-off-by: Mordechay Goodstein <mordechay.goodstein@intel.com>
Fixes: 3ed34fbf9d3b ("iwlwifi: dbg_ini: support FW response/notification region type")
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20200930161256.6a0aae2c0507.I7bd72968279d586af420472707d53106b35efc08@changeid
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c

index c44e61a..9b64a12 100644 (file)
@@ -954,9 +954,8 @@ static bool iwl_dbg_tlv_check_fw_pkt(struct iwl_fw_runtime *fwrt,
        struct iwl_rx_packet *pkt = tp_data->fw_pkt;
        struct iwl_cmd_header *wanted_hdr = (void *)&trig_data;
 
-       if (pkt && ((wanted_hdr->cmd == 0 && wanted_hdr->group_id == 0) ||
-                   (pkt->hdr.cmd == wanted_hdr->cmd &&
-                    pkt->hdr.group_id == wanted_hdr->group_id))) {
+       if (pkt && (pkt->hdr.cmd == wanted_hdr->cmd &&
+                   pkt->hdr.group_id == wanted_hdr->group_id)) {
                struct iwl_rx_packet *fw_pkt =
                        kmemdup(pkt,
                                sizeof(*pkt) + iwl_rx_packet_payload_len(pkt),