All of lore.kernel.org
 help / color / mirror / Atom feed
* patch request for 5.18-stable to fix gcc-12 build (hopefully last)
@ 2022-06-21 10:13 Sudip Mukherjee
  2022-06-21 10:39 ` Jiri Slaby
  2022-06-23 16:07 ` Greg Kroah-Hartman
  0 siblings, 2 replies; 6+ messages in thread
From: Sudip Mukherjee @ 2022-06-21 10:13 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: stable

Hi Greg,

The following will be needed for the gcc-12 builds:

ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
32329216ca1d ("eth: sun: cassini: remove dead code")
dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")


With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
and mips passes. (not checked other arch yet)

Will request you to add these to 5.18-stable queue please.

--
Regards
Sudip

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

* Re: patch request for 5.18-stable to fix gcc-12 build (hopefully last)
  2022-06-21 10:13 patch request for 5.18-stable to fix gcc-12 build (hopefully last) Sudip Mukherjee
@ 2022-06-21 10:39 ` Jiri Slaby
  2022-06-21 11:14   ` Sudip Mukherjee
  2022-06-23 16:08   ` Greg Kroah-Hartman
  2022-06-23 16:07 ` Greg Kroah-Hartman
  1 sibling, 2 replies; 6+ messages in thread
From: Jiri Slaby @ 2022-06-21 10:39 UTC (permalink / raw)
  To: Sudip Mukherjee, Greg Kroah-Hartman; +Cc: stable

On 21. 06. 22, 12:13, Sudip Mukherjee wrote:
> Hi Greg,
> 
> The following will be needed for the gcc-12 builds:
> 
> ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
> 32329216ca1d ("eth: sun: cassini: remove dead code")
> dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")
> 
> 
> With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
> and mips passes. (not checked other arch yet)
> 
> Will request you to add these to 5.18-stable queue please.

On the top of that, I had to apply this too:
aeb84412037b x86/boot: Wrap literal addresses in absolute_pointer()

thanks for the list,
-- 
js
suse labs

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

* Re: patch request for 5.18-stable to fix gcc-12 build (hopefully last)
  2022-06-21 10:39 ` Jiri Slaby
@ 2022-06-21 11:14   ` Sudip Mukherjee
  2022-06-21 11:19     ` Jiri Slaby
  2022-06-23 16:08   ` Greg Kroah-Hartman
  1 sibling, 1 reply; 6+ messages in thread
From: Sudip Mukherjee @ 2022-06-21 11:14 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: Greg Kroah-Hartman, Stable

On Tue, Jun 21, 2022 at 11:39 AM Jiri Slaby <jirislaby@kernel.org> wrote:
>
> On 21. 06. 22, 12:13, Sudip Mukherjee wrote:
> > Hi Greg,
> >
> > The following will be needed for the gcc-12 builds:
> >
> > ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
> > 32329216ca1d ("eth: sun: cassini: remove dead code")
> > dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")
> >
> >
> > With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
> > and mips passes. (not checked other arch yet)
> >
> > Will request you to add these to 5.18-stable queue please.
>
> On the top of that, I had to apply this too:
> aeb84412037b x86/boot: Wrap literal addresses in absolute_pointer()

uhhh... I thought -Warray-bounds has been disabled by:
f0be87c42cbd ("gcc-12: disable '-Warray-bounds' universally for now")
which is in v5.18.6-rc1 now.

Are you sure you still need that ?


--
Regards
Sudip

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

* Re: patch request for 5.18-stable to fix gcc-12 build (hopefully last)
  2022-06-21 11:14   ` Sudip Mukherjee
@ 2022-06-21 11:19     ` Jiri Slaby
  0 siblings, 0 replies; 6+ messages in thread
From: Jiri Slaby @ 2022-06-21 11:19 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: Greg Kroah-Hartman, Stable

On 21. 06. 22, 13:14, Sudip Mukherjee wrote:
> On Tue, Jun 21, 2022 at 11:39 AM Jiri Slaby <jirislaby@kernel.org> wrote:
>>
>> On 21. 06. 22, 12:13, Sudip Mukherjee wrote:
>>> Hi Greg,
>>>
>>> The following will be needed for the gcc-12 builds:
>>>
>>> ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
>>> 32329216ca1d ("eth: sun: cassini: remove dead code")
>>> dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")
>>>
>>>
>>> With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
>>> and mips passes. (not checked other arch yet)
>>>
>>> Will request you to add these to 5.18-stable queue please.
>>
>> On the top of that, I had to apply this too:
>> aeb84412037b x86/boot: Wrap literal addresses in absolute_pointer()
> 
> uhhh... I thought -Warray-bounds has been disabled by:
> f0be87c42cbd ("gcc-12: disable '-Warray-bounds' universally for now")
> which is in v5.18.6-rc1 now.
> 
> Are you sure you still need that ?

Yes -- I'd say realmode doesn't copy KBUILD_CFLAGS.

-- 
js
suse labs

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

* Re: patch request for 5.18-stable to fix gcc-12 build (hopefully last)
  2022-06-21 10:13 patch request for 5.18-stable to fix gcc-12 build (hopefully last) Sudip Mukherjee
  2022-06-21 10:39 ` Jiri Slaby
@ 2022-06-23 16:07 ` Greg Kroah-Hartman
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2022-06-23 16:07 UTC (permalink / raw)
  To: Sudip Mukherjee; +Cc: stable

On Tue, Jun 21, 2022 at 11:13:24AM +0100, Sudip Mukherjee wrote:
> Hi Greg,
> 
> The following will be needed for the gcc-12 builds:
> 
> ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
> 32329216ca1d ("eth: sun: cassini: remove dead code")
> dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")
> 
> 
> With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
> and mips passes. (not checked other arch yet)
> 
> Will request you to add these to 5.18-stable queue please.

All now queued up, thanks.

greg k-h

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

* Re: patch request for 5.18-stable to fix gcc-12 build (hopefully last)
  2022-06-21 10:39 ` Jiri Slaby
  2022-06-21 11:14   ` Sudip Mukherjee
@ 2022-06-23 16:08   ` Greg Kroah-Hartman
  1 sibling, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2022-06-23 16:08 UTC (permalink / raw)
  To: Jiri Slaby; +Cc: Sudip Mukherjee, stable

On Tue, Jun 21, 2022 at 12:39:08PM +0200, Jiri Slaby wrote:
> On 21. 06. 22, 12:13, Sudip Mukherjee wrote:
> > Hi Greg,
> > 
> > The following will be needed for the gcc-12 builds:
> > 
> > ee3db469dd31 ("wifi: rtlwifi: remove always-true condition pointed out by GCC 12")
> > 32329216ca1d ("eth: sun: cassini: remove dead code")
> > dbbc7d04c549 ("net: wwan: iosm: remove pointless null check")
> > 
> > 
> > With this 3 applied on top of v5.18.6-rc1 allmodconfig for x86_64, riscv
> > and mips passes. (not checked other arch yet)
> > 
> > Will request you to add these to 5.18-stable queue please.
> 
> On the top of that, I had to apply this too:
> aeb84412037b x86/boot: Wrap literal addresses in absolute_pointer()

Now queued up, thanks.

greg k-h

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

end of thread, other threads:[~2022-06-23 16:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21 10:13 patch request for 5.18-stable to fix gcc-12 build (hopefully last) Sudip Mukherjee
2022-06-21 10:39 ` Jiri Slaby
2022-06-21 11:14   ` Sudip Mukherjee
2022-06-21 11:19     ` Jiri Slaby
2022-06-23 16:08   ` Greg Kroah-Hartman
2022-06-23 16:07 ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.