mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
iwlwifi: dbg: remove no filter condition
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: 3ed34fbf9d
("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>
This commit is contained in:
parent
c7f996eb89
commit
bfdb157127
1 changed files with 2 additions and 3 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Reference in a new issue