Re: [PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-15 Thread Marek Vasut
On 3/10/25 10:49 PM, Tom Rini wrote: On Mon, Mar 10, 2025 at 10:03:37PM +0100, Marek Vasut wrote: On 3/10/25 12:17 PM, Quentin Schulz wrote: Hi Marek, Hi, On 3/8/25 9:12 PM, Marek Vasut wrote: Fix the following conversion overflow errors. The input field is already limited to 3/2/1 bits us

Re: [PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-13 Thread Heinrich Schuchardt
On 11.03.25 00:33, Marek Vasut wrote: On 3/10/25 10:49 PM, Tom Rini wrote: On Mon, Mar 10, 2025 at 10:03:37PM +0100, Marek Vasut wrote: On 3/10/25 12:17 PM, Quentin Schulz wrote: Hi Marek, Hi, On 3/8/25 9:12 PM, Marek Vasut wrote: Fix the following conversion overflow errors. The input fi

Re: [PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-12 Thread Tom Rini
On Mon, Mar 10, 2025 at 10:03:37PM +0100, Marek Vasut wrote: > On 3/10/25 12:17 PM, Quentin Schulz wrote: > > Hi Marek, > > Hi, > > > On 3/8/25 9:12 PM, Marek Vasut wrote: > > > Fix the following conversion overflow errors. The input field is already > > > limited to 3/2/1 bits using the bitwise

Re: [PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-10 Thread Marek Vasut
On 3/10/25 12:17 PM, Quentin Schulz wrote: Hi Marek, Hi, On 3/8/25 9:12 PM, Marek Vasut wrote: Fix the following conversion overflow errors. The input field is already limited to 3/2/1 bits using the bitwise and, move the parenthesis around to avoid the bogus warning: " fs/exfat/utf.c: In f

Re: [PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-10 Thread Quentin Schulz
Hi Marek, On 3/8/25 9:12 PM, Marek Vasut wrote: Fix the following conversion overflow errors. The input field is already limited to 3/2/1 bits using the bitwise and, move the parenthesis around to avoid the bogus warning: " fs/exfat/utf.c: In function ‘utf8_to_wchar’: fs/exfat/utf.c:165:23: war

[PATCH 08/12] fs: exfat: Fix conversion overflow errors

2025-03-08 Thread Marek Vasut
Fix the following conversion overflow errors. The input field is already limited to 3/2/1 bits using the bitwise and, move the parenthesis around to avoid the bogus warning: " fs/exfat/utf.c: In function ‘utf8_to_wchar’: fs/exfat/utf.c:165:23: warning: overflow in conversion from ‘int’ to ‘wchar_t