[PATCH] drivers: firmware: stratix10-rsu: Fix max_retry counter value

kah.jing.lee@intel.com posted 1 patch 2 years, 1 month ago
There is a newer version of this series
drivers/firmware/stratix10-rsu.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
[PATCH] drivers: firmware: stratix10-rsu: Fix max_retry counter value
Posted by kah.jing.lee@intel.com 2 years, 1 month ago
From: Kah Jing Lee <kah.jing.lee@intel.com>

Fix the max_retry value because the value is truncated at scnprintf format
specifier, with added hex symbol and newline.

Signed-off-by: Kah Jing Lee <kah.jing.lee@intel.com>
---
 drivers/firmware/stratix10-rsu.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/firmware/stratix10-rsu.c b/drivers/firmware/stratix10-rsu.c
index e51c95f8d445..98ec39f6dae8 100644
--- a/drivers/firmware/stratix10-rsu.c
+++ b/drivers/firmware/stratix10-rsu.c
@@ -405,8 +405,7 @@ static ssize_t max_retry_show(struct device *dev,
 	if (!priv)
 		return -ENODEV;
 
-	return scnprintf(buf, sizeof(priv->max_retry),
-			 "0x%08x\n", priv->max_retry);
+	return scnprintf(buf, PAGE_SIZE, "0x%08x\n", priv->max_retry);
 }
 
 static ssize_t dcmf0_show(struct device *dev,

base-commit: c1a515d3c0270628df8ae5f5118ba859b85464a2
-- 
2.25.1
Re: [PATCH] drivers: firmware: stratix10-rsu: Fix max_retry counter value
Posted by Dinh Nguyen 2 years, 1 month ago

On 8/3/23 20:35, kah.jing.lee@intel.com wrote:
> From: Kah Jing Lee <kah.jing.lee@intel.com>
> 
> Fix the max_retry value because the value is truncated at scnprintf format
> specifier, with added hex symbol and newline.
> 
> Signed-off-by: Kah Jing Lee <kah.jing.lee@intel.com>
> ---
>   drivers/firmware/stratix10-rsu.c | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/firmware/stratix10-rsu.c b/drivers/firmware/stratix10-rsu.c
> index e51c95f8d445..98ec39f6dae8 100644
> --- a/drivers/firmware/stratix10-rsu.c
> +++ b/drivers/firmware/stratix10-rsu.c
> @@ -405,8 +405,7 @@ static ssize_t max_retry_show(struct device *dev,
>   	if (!priv)
>   		return -ENODEV;
>   
> -	return scnprintf(buf, sizeof(priv->max_retry),
> -			 "0x%08x\n", priv->max_retry);
> +	return scnprintf(buf, PAGE_SIZE, "0x%08x\n", priv->max_retry);
>   }
>   

This would be a good time to switch over to use sysfs_emit()

Dinh