* Re: [PATCH 5.4 000/313] 5.4.251-rc1 review
[not found] <20230725104521.167250627@linuxfoundation.org>
@ 2023-07-25 14:46 ` Naresh Kamboju
2023-07-25 15:18 ` Harshit Mogalapalli
0 siblings, 1 reply; 3+ messages in thread
From: Naresh Kamboju @ 2023-07-25 14:46 UTC (permalink / raw)
To: Greg Kroah-Hartman, linux-ext4, clang-built-linux
Cc: stable, patches, linux-kernel, torvalds, akpm, linux, shuah,
patches, lkft-triage, pavel, jonathanh, f.fainelli,
sudipm.mukherjee, srw, rwarsow, conor, Theodore Ts'o, Chao Yu
On Tue, 25 Jul 2023 at 17:06, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> This is the start of the stable review cycle for the 5.4.251 release.
> There are 313 patches in this series, all will be posted as a response
> to this one. If anyone has any issues with these being applied, please
> let me know.
>
> Responses should be made by Thu, 27 Jul 2023 10:44:26 +0000.
> Anything received after that time might be too late.
>
> The whole patch series can be found in one patch at:
> https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.4.251-rc1.gz
> or in the git tree and branch at:
> git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.4.y
> and the diffstat can be found below.
>
> thanks,
>
> greg k-h
Following commit caused build failures on stable-rc 5.4 and 5.10.
ext4: fix to check return value of freeze_bdev() in ext4_shutdown()
commit c4d13222afd8a64bf11bc7ec68645496ee8b54b9 upstream.
fs/ext4/ioctl.c:595:7: error: incompatible pointer to integer
conversion assigning to 'int' from 'struct super_block *'
[-Wint-conversion]
ret = freeze_bdev(sb->s_bdev);
^ ~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
--
Linaro LKFT
https://lkft.linaro.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 5.4 000/313] 5.4.251-rc1 review
2023-07-25 14:46 ` [PATCH 5.4 000/313] 5.4.251-rc1 review Naresh Kamboju
@ 2023-07-25 15:18 ` Harshit Mogalapalli
2023-07-26 4:48 ` Greg Kroah-Hartman
0 siblings, 1 reply; 3+ messages in thread
From: Harshit Mogalapalli @ 2023-07-25 15:18 UTC (permalink / raw)
To: Naresh Kamboju, Greg Kroah-Hartman, linux-ext4, clang-built-linux
Cc: stable, patches, linux-kernel, torvalds, akpm, linux, shuah,
patches, lkft-triage, pavel, jonathanh, f.fainelli,
sudipm.mukherjee, srw, rwarsow, conor, Theodore Ts'o, Chao Yu,
Darren Kenny, Vegard Nossum
Hi Greg,
On 25/07/23 8:16 pm, Naresh Kamboju wrote:
> On Tue, 25 Jul 2023 at 17:06, Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
>>
>> This is the start of the stable review cycle for the 5.4.251 release.
>> There are 313 patches in this series, all will be posted as a response
>> to this one. If anyone has any issues with these being applied, please
>> let me know.
>>
>> Responses should be made by Thu, 27 Jul 2023 10:44:26 +0000.
>> Anything received after that time might be too late.
>>
>> The whole patch series can be found in one patch at:
>> https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.4.251-rc1.gz
>> or in the git tree and branch at:
>> git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.4.y
>> and the diffstat can be found below.
>>
>> thanks,
>>
>> greg k-h
>
> Following commit caused build failures on stable-rc 5.4 and 5.10.
>
> ext4: fix to check return value of freeze_bdev() in ext4_shutdown()
> commit c4d13222afd8a64bf11bc7ec68645496ee8b54b9 upstream.
>
> fs/ext4/ioctl.c:595:7: error: incompatible pointer to integer
> conversion assigning to 'int' from 'struct super_block *'
> [-Wint-conversion]
> ret = freeze_bdev(sb->s_bdev);
> ^ ~~~~~~~~~~~~~~~~~~~~~~~
> 1 error generated.
>
I have seen this error too in 5.4.y build.
Just more information about this.
In 5.4.y:
struct super_block *freeze_bdev(struct block_device *bdev)
{
...
}
In 5.15.y
int freeze_bdev(struct block_device *bdev)
{
...
}
This changed in this commit which is in 5.11-rc1,(not in 5.4.y and 5.10.y)
Commit info:
commit-id : 040f04bd2e825f1d80b14a0e0ac3d830339eb779
subject : fs: simplify freeze_bdev/thaw_bdev
Thanks,
Harshit
> Reported-by: Linux Kernel Functional Testing <lkft@linaro.org>
>
> --
> Linaro LKFT
> https://lkft.linaro.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 5.4 000/313] 5.4.251-rc1 review
2023-07-25 15:18 ` Harshit Mogalapalli
@ 2023-07-26 4:48 ` Greg Kroah-Hartman
0 siblings, 0 replies; 3+ messages in thread
From: Greg Kroah-Hartman @ 2023-07-26 4:48 UTC (permalink / raw)
To: Harshit Mogalapalli
Cc: Naresh Kamboju, linux-ext4, clang-built-linux, stable, patches,
linux-kernel, torvalds, akpm, linux, shuah, patches, lkft-triage,
pavel, jonathanh, f.fainelli, sudipm.mukherjee, srw, rwarsow,
conor, Theodore Ts'o, Chao Yu, Darren Kenny, Vegard Nossum
On Tue, Jul 25, 2023 at 08:48:03PM +0530, Harshit Mogalapalli wrote:
> Hi Greg,
>
> On 25/07/23 8:16 pm, Naresh Kamboju wrote:
> > On Tue, 25 Jul 2023 at 17:06, Greg Kroah-Hartman
> > <gregkh@linuxfoundation.org> wrote:
> > >
> > > This is the start of the stable review cycle for the 5.4.251 release.
> > > There are 313 patches in this series, all will be posted as a response
> > > to this one. If anyone has any issues with these being applied, please
> > > let me know.
> > >
> > > Responses should be made by Thu, 27 Jul 2023 10:44:26 +0000.
> > > Anything received after that time might be too late.
> > >
> > > The whole patch series can be found in one patch at:
> > > https://www.kernel.org/pub/linux/kernel/v5.x/stable-review/patch-5.4.251-rc1.gz
> > > or in the git tree and branch at:
> > > git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-5.4.y
> > > and the diffstat can be found below.
> > >
> > > thanks,
> > >
> > > greg k-h
> >
> > Following commit caused build failures on stable-rc 5.4 and 5.10.
> >
> > ext4: fix to check return value of freeze_bdev() in ext4_shutdown()
> > commit c4d13222afd8a64bf11bc7ec68645496ee8b54b9 upstream.
> >
> > fs/ext4/ioctl.c:595:7: error: incompatible pointer to integer
> > conversion assigning to 'int' from 'struct super_block *'
> > [-Wint-conversion]
> > ret = freeze_bdev(sb->s_bdev);
> > ^ ~~~~~~~~~~~~~~~~~~~~~~~
> > 1 error generated.
> >
>
> I have seen this error too in 5.4.y build.
>
> Just more information about this.
>
> In 5.4.y:
> struct super_block *freeze_bdev(struct block_device *bdev)
> {
> ...
> }
>
> In 5.15.y
> int freeze_bdev(struct block_device *bdev)
> {
> ...
> }
>
> This changed in this commit which is in 5.11-rc1,(not in 5.4.y and 5.10.y)
> Commit info:
> commit-id : 040f04bd2e825f1d80b14a0e0ac3d830339eb779
> subject : fs: simplify freeze_bdev/thaw_bdev
>
>
> Thanks,
> Harshit
Thanks, will go drop this as well.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-26 4:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20230725104521.167250627@linuxfoundation.org>
2023-07-25 14:46 ` [PATCH 5.4 000/313] 5.4.251-rc1 review Naresh Kamboju
2023-07-25 15:18 ` Harshit Mogalapalli
2023-07-26 4:48 ` Greg Kroah-Hartman
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).