linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions
@ 2024-11-27 18:07 Karan Sanghavi
  2024-12-23 11:52 ` Karan Sanghavi
  0 siblings, 1 reply; 5+ messages in thread
From: Karan Sanghavi @ 2024-11-27 18:07 UTC (permalink / raw)
  To: Hugh Dickins, Andrew Morton, Gabriel Krisman Bertazi,
	André Almeida, Christian Brauner
  Cc: linux-mm, linux-kernel, Shuah Khan, Karan Sanghavi

Use signed data type for version handling
in shmem_parse_opt_casefold()

Fixes: 58e55efd6c72 ("tmpfs: Add casefold lookup support")
Reviewed-by: André Almeida <andrealmeid@igalia.com>
Reviewed-by: Gabriel Krisman Bertazi <gabriel@krisman.be>
Signed-off-by: Karan Sanghavi <karansanghvi98@gmail.com>
---
Coverity Message:
CID 1601569: (#1 of 1): Unsigned compared against 0 (NO_EFFECT)
unsigned_compare: This less-than-zero comparison of an unsigned 
value is never true. version < 0U

Coverity Link:
https://scan7.scan.coverity.com/#/project-view/10043/11354?selectedIssue=1601569
---
Changes in v2:
- Updated the log summary.
- Link to v1: https://lore.kernel.org/r/20241111-unsignedcompare1601569-v1-1-c4a9c3c75a52@gmail.com
---
 mm/shmem.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/shmem.c b/mm/shmem.c
index 7987deb2be9b..17a1d4fa8870 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -4367,7 +4367,7 @@ static int shmem_parse_opt_casefold(struct fs_context *fc, struct fs_parameter *
 				    bool latest_version)
 {
 	struct shmem_options *ctx = fc->fs_private;
-	unsigned int version = UTF8_LATEST;
+	int version = UTF8_LATEST;
 	struct unicode_map *encoding;
 	char *version_str = param->string + 5;
 

---
base-commit: 6d59cab07b8d74d0f0422b750038123334f6ecc2
change-id: 20241111-unsignedcompare1601569-05b5932145ef

Best regards,
-- 
Karan Sanghavi <karansanghvi98@gmail.com>



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions
  2024-11-27 18:07 [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions Karan Sanghavi
@ 2024-12-23 11:52 ` Karan Sanghavi
  2024-12-23 12:43   ` Markus Elfring
  0 siblings, 1 reply; 5+ messages in thread
From: Karan Sanghavi @ 2024-12-23 11:52 UTC (permalink / raw)
  To: Hugh Dickins, Andrew Morton, Gabriel Krisman Bertazi,
	André Almeida, Christian Brauner, Markus Elfring
  Cc: linux-mm, linux-kernel, Shuah Khan

On Wed, Nov 27, 2024 at 06:07:25PM +0000, Karan Sanghavi wrote:
> Use signed data type for version handling
> in shmem_parse_opt_casefold()
> 
> Fixes: 58e55efd6c72 ("tmpfs: Add casefold lookup support")
> Reviewed-by: André Almeida <andrealmeid@igalia.com>
> Reviewed-by: Gabriel Krisman Bertazi <gabriel@krisman.be>
> Signed-off-by: Karan Sanghavi <karansanghvi98@gmail.com>
> ---
> Coverity Message:
> CID 1601569: (#1 of 1): Unsigned compared against 0 (NO_EFFECT)
> unsigned_compare: This less-than-zero comparison of an unsigned 
> value is never true. version < 0U
> 
> Coverity Link:
> https://scan7.scan.coverity.com/#/project-view/10043/11354?selectedIssue=1601569
> ---
> Changes in v2:
> - Updated the log summary.
> - Link to v1: https://lore.kernel.org/r/20241111-unsignedcompare1601569-v1-1-c4a9c3c75a52@gmail.com
> ---
>  mm/shmem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/mm/shmem.c b/mm/shmem.c
> index 7987deb2be9b..17a1d4fa8870 100644
> --- a/mm/shmem.c
> +++ b/mm/shmem.c
> @@ -4367,7 +4367,7 @@ static int shmem_parse_opt_casefold(struct fs_context *fc, struct fs_parameter *
>  				    bool latest_version)
>  {
>  	struct shmem_options *ctx = fc->fs_private;
> -	unsigned int version = UTF8_LATEST;
> +	int version = UTF8_LATEST;
>  	struct unicode_map *encoding;
>  	char *version_str = param->string + 5;
>  
> 
> ---
> base-commit: 6d59cab07b8d74d0f0422b750038123334f6ecc2
> change-id: 20241111-unsignedcompare1601569-05b5932145ef
> 
> Best regards,
> -- 
> Karan Sanghavi <karansanghvi98@gmail.com>
> 

Hello Markus,
I hope you are doing great,

Can you please let me know by can I expect this patch to be applied since I have changed the log
summary as you have mentioned in the last mail. 
Please do let me know if there anything else to be done for it to get
accepted 

Thank you,
Karan.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions
  2024-12-23 11:52 ` Karan Sanghavi
@ 2024-12-23 12:43   ` Markus Elfring
  2024-12-27 10:01     ` Karan Sanghavi
  0 siblings, 1 reply; 5+ messages in thread
From: Markus Elfring @ 2024-12-23 12:43 UTC (permalink / raw)
  To: Karan Sanghavi, linux-mm, André Almeida, Andrew Morton,
	Christian Brauner, Gabriel Krisman Bertazi, Hugh Dickins
  Cc: LKML, Shuah Khan

>> Use signed data type for version handling
>> in shmem_parse_opt_casefold()

How do you think about to move this information into the summary phrase?


…
>> ---
>> Coverity Message:
>> CID 1601569: (#1 of 1): Unsigned compared against 0 (NO_EFFECT)
>> unsigned_compare: This less-than-zero comparison of an unsigned
>> value is never true. version < 0U
…

May such information become a part for the final change description?

Regards,
Markus


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions
  2024-12-23 12:43   ` Markus Elfring
@ 2024-12-27 10:01     ` Karan Sanghavi
  2024-12-27 11:08       ` [v2] " Markus Elfring
  0 siblings, 1 reply; 5+ messages in thread
From: Karan Sanghavi @ 2024-12-27 10:01 UTC (permalink / raw)
  To: Markus Elfring
  Cc: linux-mm, André Almeida, Andrew Morton, Christian Brauner,
	Gabriel Krisman Bertazi, Hugh Dickins, LKML, Shuah Khan

On Mon, Dec 23, 2024 at 01:43:09PM +0100, Markus Elfring wrote:
> >> Use signed data type for version handling
> >> in shmem_parse_opt_casefold()
> 
> How do you think about to move this information into the summary phrase?
> 
>
should i add more info to this? as i am still not able to understand
what i need to do here. Can you please suggest what changes are you
suggesting here. 

> …
> >> ---
> >> Coverity Message:
> >> CID 1601569: (#1 of 1): Unsigned compared against 0 (NO_EFFECT)
> >> unsigned_compare: This less-than-zero comparison of an unsigned
> >> value is never true. version < 0U
> …
> 
> May such information become a part for the final change description?
>
ofcoure not, as per my understanding, text after '---' are not included
in the change descriptions. (Do correct me if i am wrong here) Thus no
need to worry for them getting added in the change log.

Thank you,
Karan.
> Regards,
> Markus


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [v2] mm: shmem: Fix variable type to int to evaluate negative conditions
  2024-12-27 10:01     ` Karan Sanghavi
@ 2024-12-27 11:08       ` Markus Elfring
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Elfring @ 2024-12-27 11:08 UTC (permalink / raw)
  To: Karan Sanghavi, linux-mm
  Cc: André Almeida, Andrew Morton, Christian Brauner,
	Gabriel Krisman Bertazi, Hugh Dickins, LKML, Shuah Khan

>>>> Use signed data type for version handling
>>>> in shmem_parse_opt_casefold()
>>
>> How do you think about to move this information into the summary phrase?
>>
> should i add more info to this? as i am still not able to understand
> what i need to do here. Can you please suggest what changes are you
> suggesting here.

I propose to refine the distribution of information between the patch subject
and the changelog.

Regards,
Markus


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-12-27 11:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-27 18:07 [PATCH v2] mm: shmem: Fix variable type to int to evaluate negative conditions Karan Sanghavi
2024-12-23 11:52 ` Karan Sanghavi
2024-12-23 12:43   ` Markus Elfring
2024-12-27 10:01     ` Karan Sanghavi
2024-12-27 11:08       ` [v2] " Markus Elfring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox