All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kalle Valo <kvalo@kernel.org>
To: Karthikeyan Periyasamy <quic_periyasa@quicinc.com>
Cc: <ath12k@lists.infradead.org>,  <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH] wifi: ath12k: fix peer metadata parsing
Date: Tue, 25 Jun 2024 18:53:58 +0300	[thread overview]
Message-ID: <87frt1hvc9.fsf@kernel.org> (raw)
In-Reply-To: <20240624145418.2043461-1-quic_periyasa@quicinc.com> (Karthikeyan Periyasamy's message of "Mon, 24 Jun 2024 20:24:18 +0530")

Karthikeyan Periyasamy <quic_periyasa@quicinc.com> writes:

> Currently, the Rx data path only supports parsing peer metadata of version
> zero. However, the QCN9274 platform configures the peer metadata version
> as V1B. When V1B peer metadata is parsed using the version zero logic,
> invalid data is populated, causing valid packets to be dropped. To address
> this issue, refactor the peer metadata version and add the version based
> parsing to populate the data from peer metadata correctly.
>
> Tested-on: QCN9274 hw2.0 PCI WLAN.WBE.1.0.1-00029-QCAHKSWPL_SILICONZ-1
>
> Fixes: 287033810990 ("wifi: ath12k: add support for peer meta data version")
> Signed-off-by: Karthikeyan Periyasamy <quic_periyasa@quicinc.com>

[...]

> +static u16 ath12k_dp_rx_get_peer_id(enum ath12k_peer_metadata_version ver,
> +				    __le32 peer_metadata)
> +{
> +	switch (ver) {
> +	default:
> +		WARN_ON(1);
> +		fallthrough;

I'm a bit wary of using WARN_ON() in data path, so in the pending branch
I changed this to ath12k_warn():

	default:
		ath12k_warn(ab, "Unknown peer metadata version: %d", ver);
		fallthrough;

The benefit is also that now we print the unknown value. Would this
work?

Please check:

https://git.kernel.org/pub/scm/linux/kernel/git/ath/ath.git/commit/?h=pending&id=0228ca402186a123e5c90187f952121de50bf64f

-- 
https://patchwork.kernel.org/project/linux-wireless/list/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


  parent reply	other threads:[~2024-06-25 15:54 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-24 14:54 [PATCH] wifi: ath12k: fix peer metadata parsing Karthikeyan Periyasamy
2024-06-24 18:21 ` Jeff Johnson
2024-06-25 15:53 ` Kalle Valo [this message]
2024-06-25 17:38   ` Jeff Johnson
2024-06-26  0:36   ` Karthikeyan Periyasamy
2024-06-26 15:42 ` Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87frt1hvc9.fsf@kernel.org \
    --to=kvalo@kernel.org \
    --cc=ath12k@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=quic_periyasa@quicinc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.