linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers")
@ 2023-08-31 18:48 Sudip Mukherjee (Codethink)
  2023-08-31 19:03 ` Linus Torvalds
  2023-09-03  6:25 ` Linux regression tracking #update (Thorsten Leemhuis)
  0 siblings, 2 replies; 4+ messages in thread
From: Sudip Mukherjee (Codethink) @ 2023-08-31 18:48 UTC (permalink / raw)
  To: Thomas Zimmermann, Helge Deller
  Cc: linux-fbdev, dri-devel, linux-kernel, Linus Torvalds, regressions

Hi All,

The latest mainline kernel branch fails to build mips jazz_defconfig with
the error:

drivers/video/fbdev/g364fb.c:115:9: error: 'FB_DEFAULT_IOMEM_HELPERS' undeclared here (not in a function); did you mean 'FB_DEFAULT_IOMEM_OPS'?
  115 |         FB_DEFAULT_IOMEM_HELPERS,
      |         ^~~~~~~~~~~~~~~~~~~~~~~~
      |         FB_DEFAULT_IOMEM_OPS


git bisect pointed to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers").

Reverting the commit has fixed the build failure.

I will be happy to test any patch or provide any extra log if needed.

#regzbot introduced: 5011260838551cefbf23d60b48c3243b6d5530a2

-- 
Regards
Sudip

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

* Re: mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers")
  2023-08-31 18:48 mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers") Sudip Mukherjee (Codethink)
@ 2023-08-31 19:03 ` Linus Torvalds
  2023-09-02 11:09   ` Sudip Mukherjee
  2023-09-03  6:25 ` Linux regression tracking #update (Thorsten Leemhuis)
  1 sibling, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2023-08-31 19:03 UTC (permalink / raw)
  To: Sudip Mukherjee (Codethink)
  Cc: Thomas Zimmermann, Helge Deller, linux-fbdev, dri-devel,
	linux-kernel, regressions

On Thu, 31 Aug 2023 at 11:48, Sudip Mukherjee (Codethink)
<sudipm.mukherjee@gmail.com> wrote:
> The latest mainline kernel branch fails to build mips jazz_defconfig with
> the error:
>
> drivers/video/fbdev/g364fb.c:115:9: error: 'FB_DEFAULT_IOMEM_HELPERS' undeclared here (not in a function); did you mean 'FB_DEFAULT_IOMEM_OPS'?
>   115 |         FB_DEFAULT_IOMEM_HELPERS,
>       |         ^~~~~~~~~~~~~~~~~~~~~~~~
>       |         FB_DEFAULT_IOMEM_OPS
>
>
> git bisect pointed to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers").
>
> Reverting the commit has fixed the build failure.
>
> I will be happy to test any patch or provide any extra log if needed.

Would you mind testing the exact thing that the compiler suggested?

So instead of the revert, just replace FB_DEFAULT_IOMEM_HELPERS with
FB_DEFAULT_IOMEM_OPS.

I think it's just a typo / confusion with the config variable (which
is called FB_IOMEM_HELPERS).

               Linus

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

* Re: mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers")
  2023-08-31 19:03 ` Linus Torvalds
@ 2023-09-02 11:09   ` Sudip Mukherjee
  0 siblings, 0 replies; 4+ messages in thread
From: Sudip Mukherjee @ 2023-09-02 11:09 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Thomas Zimmermann, Helge Deller, linux-fbdev, dri-devel,
	linux-kernel, regressions

On Thu, 31 Aug 2023 at 20:04, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
>
> On Thu, 31 Aug 2023 at 11:48, Sudip Mukherjee (Codethink)
> <sudipm.mukherjee@gmail.com> wrote:
> > The latest mainline kernel branch fails to build mips jazz_defconfig with
> > the error:
> >
> > drivers/video/fbdev/g364fb.c:115:9: error: 'FB_DEFAULT_IOMEM_HELPERS' undeclared here (not in a function); did you mean 'FB_DEFAULT_IOMEM_OPS'?
> >   115 |         FB_DEFAULT_IOMEM_HELPERS,
> >       |         ^~~~~~~~~~~~~~~~~~~~~~~~
> >       |         FB_DEFAULT_IOMEM_OPS
> >
> >
> > git bisect pointed to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers").
> >
> > Reverting the commit has fixed the build failure.
> >
> > I will be happy to test any patch or provide any extra log if needed.
>
> Would you mind testing the exact thing that the compiler suggested?
>
> So instead of the revert, just replace FB_DEFAULT_IOMEM_HELPERS with
> FB_DEFAULT_IOMEM_OPS.
>
> I think it's just a typo / confusion with the config variable (which
> is called FB_IOMEM_HELPERS).

Yeah, you were right.
Patch sent - https://lore.kernel.org/lkml/20230902095102.5908-1-sudip.mukherjee@codethink.co.uk/


-- 
Regards
Sudip

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

* Re: mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers")
  2023-08-31 18:48 mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers") Sudip Mukherjee (Codethink)
  2023-08-31 19:03 ` Linus Torvalds
@ 2023-09-03  6:25 ` Linux regression tracking #update (Thorsten Leemhuis)
  1 sibling, 0 replies; 4+ messages in thread
From: Linux regression tracking #update (Thorsten Leemhuis) @ 2023-09-03  6:25 UTC (permalink / raw)
  To: Sudip Mukherjee (Codethink)
  Cc: linux-fbdev, dri-devel, linux-kernel, regressions

[TLDR: This mail in primarily relevant for Linux kernel regression
tracking. See link in footer if these mails annoy you.]

On 31.08.23 20:48, Sudip Mukherjee (Codethink) wrote:
> Hi All,
> 
> The latest mainline kernel branch fails to build mips jazz_defconfig with
> the error:
> 
> drivers/video/fbdev/g364fb.c:115:9: error: 'FB_DEFAULT_IOMEM_HELPERS' undeclared here (not in a function); did you mean 'FB_DEFAULT_IOMEM_OPS'?
>   115 |         FB_DEFAULT_IOMEM_HELPERS,
>       |         ^~~~~~~~~~~~~~~~~~~~~~~~
>       |         FB_DEFAULT_IOMEM_OPS
> 
> 
> git bisect pointed to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers").
> 
> Reverting the commit has fixed the build failure.
> 
> I will be happy to test any patch or provide any extra log if needed.
> 
> #regzbot introduced: 5011260838551cefbf23d60b48c3243b6d5530a2
> 

#regzbot fix: 8df0f84c3bb921f5aa1036223dd932bbc7df6d
#regzbot ignore-activity

Ciao, Thorsten (wearing his 'the Linux kernel's regression tracker' hat)
--
Everything you wanna know about Linux kernel regression tracking:
https://linux-regtracking.leemhuis.info/about/#tldr
That page also explains what to do if mails like this annoy you.


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

end of thread, other threads:[~2023-09-03  6:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-31 18:48 mainline build failure due to 501126083855 ("fbdev/g364fb: Use fbdev I/O helpers") Sudip Mukherjee (Codethink)
2023-08-31 19:03 ` Linus Torvalds
2023-09-02 11:09   ` Sudip Mukherjee
2023-09-03  6:25 ` Linux regression tracking #update (Thorsten Leemhuis)

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).