linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Larry Finger <Larry.Finger@lwfinger.net>
To: Li Zhijian <lizhijian@fujitsu.com>, linux-kernel@vger.kernel.org
Cc: Kalle Valo <kvalo@kernel.org>,
	linux-wireless@vger.kernel.org, b43-dev@lists.infradead.org
Subject: Re: [PATCH 2/3] net: b43: Convert sprintf/snprintf to sysfs_emit
Date: Thu, 14 Mar 2024 13:08:53 -0500	[thread overview]
Message-ID: <fd321855-0ee6-41ce-9cdf-364aa971f5f3@lwfinger.net> (raw)
In-Reply-To: <20240314094823.1324898-2-lizhijian@fujitsu.com>

On 3/14/24 04:48, Li Zhijian wrote:
> Per filesystems/sysfs.rst, show() should only use sysfs_emit()
> or sysfs_emit_at() when formatting the value to be returned to user space.
> 
> coccinelle complains that there are still a couple of functions that use
> snprintf(). Convert them to sysfs_emit().
> 
> sprintf() will be converted as weel if they have.
> 
> Generally, this patch is generated by
> make coccicheck M=<path/to/file> MODE=patch \
> COCCI=scripts/coccinelle/api/device_attr_show.cocci
> 
> No functional change intended
> 
> CC: Larry Finger <Larry.Finger@lwfinger.net>
> CC: Kalle Valo <kvalo@kernel.org>
> CC: linux-wireless@vger.kernel.org
> CC: b43-dev@lists.infradead.org
> Signed-off-by: Li Zhijian <lizhijian@fujitsu.com>
> ---
> This is a part of the work "Fix coccicheck device_attr_show warnings"[1]
> Split them per subsystem so that the maintainer can review it easily
> [1] https://lore.kernel.org/lkml/20240116041129.3937800-1-lizhijian@fujitsu.com/
> ---
>   drivers/net/wireless/broadcom/b43/sysfs.c       | 13 ++++---------
>   drivers/net/wireless/broadcom/b43legacy/sysfs.c | 17 +++++++----------
>   2 files changed, 11 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/net/wireless/broadcom/b43/sysfs.c b/drivers/net/wireless/broadcom/b43/sysfs.c
> index 0679d132968f..261b2b746a9c 100644
> --- a/drivers/net/wireless/broadcom/b43/sysfs.c
> +++ b/drivers/net/wireless/broadcom/b43/sysfs.c
> @@ -53,19 +53,14 @@ static ssize_t b43_attr_interfmode_show(struct device *dev,
>   
>   	switch (wldev->phy.g->interfmode) {
>   	case B43_INTERFMODE_NONE:
> -		count =
> -		    snprintf(buf, PAGE_SIZE,
> -			     "0 (No Interference Mitigation)\n");
> +		count = sysfs_emit(buf, "0 (No Interference Mitigation)\n");
>   		break;
>   	case B43_INTERFMODE_NONWLAN:
> -		count =
> -		    snprintf(buf, PAGE_SIZE,
> -			     "1 (Non-WLAN Interference Mitigation)\n");
> +		count = sysfs_emit(buf,
> +				   "1 (Non-WLAN Interference Mitigation)\n");
>   		break;
>   	case B43_INTERFMODE_MANUALWLAN:
> -		count =
> -		    snprintf(buf, PAGE_SIZE,
> -			     "2 (WLAN Interference Mitigation)\n");
> +		count = sysfs_emit(buf, "2 (WLAN Interference Mitigation)\n");
>   		break;
>   	default:
>   		B43_WARN_ON(1);
> diff --git a/drivers/net/wireless/broadcom/b43legacy/sysfs.c b/drivers/net/wireless/broadcom/b43legacy/sysfs.c
> index eec087ca30e6..b1c5ea4750fa 100644
> --- a/drivers/net/wireless/broadcom/b43legacy/sysfs.c
> +++ b/drivers/net/wireless/broadcom/b43legacy/sysfs.c
> @@ -75,16 +75,15 @@ static ssize_t b43legacy_attr_interfmode_show(struct device *dev,
>   
>   	switch (wldev->phy.interfmode) {
>   	case B43legacy_INTERFMODE_NONE:
> -		count = snprintf(buf, PAGE_SIZE, "0 (No Interference"
> -				 " Mitigation)\n");
> +		count = sysfs_emit(buf, "0 (No Interference" " Mitigation)\n");
>   		break;
>   	case B43legacy_INTERFMODE_NONWLAN:
> -		count = snprintf(buf, PAGE_SIZE, "1 (Non-WLAN Interference"
> -				 " Mitigation)\n");
> +		count = sysfs_emit(buf, "1 (Non-WLAN Interference"
> +				   " Mitigation)\n");
>   		break;
>   	case B43legacy_INTERFMODE_MANUALWLAN:
> -		count = snprintf(buf, PAGE_SIZE, "2 (WLAN Interference"
> -				 " Mitigation)\n");
> +		count = sysfs_emit(buf, "2 (WLAN Interference"
> +				   " Mitigation)\n");
>   		break;
>   	default:
>   		B43legacy_WARN_ON(1);
> @@ -155,11 +154,9 @@ static ssize_t b43legacy_attr_preamble_show(struct device *dev,
>   	mutex_lock(&wldev->wl->mutex);
>   
>   	if (wldev->short_preamble)
> -		count = snprintf(buf, PAGE_SIZE, "1 (Short Preamble"
> -				 " enabled)\n");
> +		count = sysfs_emit(buf, "1 (Short Preamble" " enabled)\n");
>   	else
> -		count = snprintf(buf, PAGE_SIZE, "0 (Short Preamble"
> -				 " disabled)\n");
> +		count = sysfs_emit(buf, "0 (Short Preamble" " disabled)\n");
>   
>   	mutex_unlock(&wldev->wl->mutex);
>   

The code changes are OK, but the subject should be "wifi: b43:", not "net: 
b43:". Kalle may be able to correct this when he applies the patch.

Acked-by: Larry Finger <Larry.Finger@lwfinger.net>

Thanks,

Larry


  reply	other threads:[~2024-03-14 18:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-14  9:48 [PATCH 1/3] net: ath: Convert sprintf/snprintf to sysfs_emit Li Zhijian
2024-03-14  9:48 ` [PATCH 2/3] net: b43: " Li Zhijian
2024-03-14 18:08   ` Larry Finger [this message]
2024-03-14 18:32   ` Michael Büsch
2024-03-15  1:16     ` Zhijian Li (Fujitsu)
2024-03-14  9:48 ` [PATCH 3/3] net: ti: " Li Zhijian

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=fd321855-0ee6-41ce-9cdf-364aa971f5f3@lwfinger.net \
    --to=larry.finger@lwfinger.net \
    --cc=b43-dev@lists.infradead.org \
    --cc=kvalo@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=lizhijian@fujitsu.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).