linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures)
@ 2016-10-16  6:32 Guenter Roeck
  2016-10-16 12:30 ` Stafford Horne
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2016-10-16  6:32 UTC (permalink / raw)
  To: linux-kernel
  Cc: Linus Torvalds, arnd, Kees Cook, Stafford Horne, Tony Lindgren,
	Marcin Niestroj, Lee Jones, Paul Burton, Ralf Baechle

Here are some build and qemu test results for v4.9-rc1.
Details are available at http://kerneltests.org/builders/.

Build results:
	total: 149 pass: 146 fail: 3
Failed builds:
	arm:allmodconfig
	arm64:allmodconfig
	powerpc:allmodconfig

Qemu test results:
	total: 110 pass: 101 fail: 9
Failed tests:
	mips:malta_defconfig:nosmp
	mips:malta_defconfig:smp
	mips64:malta_defconfig:nosmp
	mips64:malta_defconfig:smp
	mipsel:malta_defconfig:nosmp
	mipsel:malta_defconfig:smp
	mipsel64:malta_defconfig:nosmp
	mipsel64:malta_defconfig:smp
	openrisc:or1ksim_defconfig

The build errors are all due to
	ERROR: "irq_set_parent" [drivers/mfd/tps65217.ko] undefined!
Proposed fixes: [1] [2]

The qemu/mips failures are fixed with [3], [4].
The openrisc qemu failure is fixed with [5].

Guenter

-------------
[1] https://patchwork.kernel.org/patch/9377491/
[2] https://patchwork.kernel.org/patch/9330925/
[3] https://patchwork.linux-mips.org/patch/14395/
[4] https://patchwork.linux-mips.org/patch/14396/
[5] https://patchwork.kernel.org/patch/9349191/

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

* Re: v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures)
  2016-10-16  6:32 v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures) Guenter Roeck
@ 2016-10-16 12:30 ` Stafford Horne
  2016-10-16 15:44   ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: Stafford Horne @ 2016-10-16 12:30 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: linux-kernel, Linus Torvalds, arnd, Kees Cook, Stafford Horne,
	Tony Lindgren, Marcin Niestroj, Lee Jones, Paul Burton,
	Ralf Baechle



On Sat, 15 Oct 2016, Guenter Roeck wrote:

> Here are some build and qemu test results for v4.9-rc1.
> Details are available at http://kerneltests.org/builders/.
>
> Build results:
> 	total: 149 pass: 146 fail: 3
> Failed builds:
> 	 arm:allmodconfig
> 	 arm64:allmodconfig
> 	 powerpc:allmodconfig
>
> Qemu test results:
> 	total: 110 pass: 101 fail: 9
> Failed tests:
> 	mips: malta_defconfig:nosmp
> 	mips: malta_defconfig:smp
> 	mips64: malta_defconfig:nosmp
> 	mips64: malta_defconfig:smp
> 	mipsel: malta_defconfig:nosmp
> 	mipsel: malta_defconfig:smp
> 	mipsel64: malta_defconfig:nosmp
> 	mipsel64: malta_defconfig:smp
> 	 openrisc:or1ksim_defconfig

For openrisc,

I reproduced this.  It seems the fix is a patch you have already posted
for doing `#define __ro_after_init __read_mostly`. Bisected to commit 
d2ec3f77de8e ("pty: make ptmx file ops read-only
after init").

That patch has not made into into the 4.9 tree it seems.  Do you have
a place you can get it in?

> The build errors are all due to
> 	ERROR: "irq_set_parent" [drivers/mfd/tps65217.ko] undefined!
> Proposed fixes: [1] [2]
>
> The qemu/mips failures are fixed with [3], [4].
> The openrisc qemu failure is fixed with [5].
>
> Guenter
>
> -------------
> [1] https://patchwork.kernel.org/patch/9377491/
> [2] https://patchwork.kernel.org/patch/9330925/
> [3] https://patchwork.linux-mips.org/patch/14395/
> [4] https://patchwork.linux-mips.org/patch/14396/
> [5] https://patchwork.kernel.org/patch/9349191/
>
>

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

* Re: v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures)
  2016-10-16 12:30 ` Stafford Horne
@ 2016-10-16 15:44   ` Guenter Roeck
  2016-10-24 10:19     ` Lee Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2016-10-16 15:44 UTC (permalink / raw)
  To: Stafford Horne
  Cc: linux-kernel, Linus Torvalds, arnd, Kees Cook, Tony Lindgren,
	Marcin Niestroj, Lee Jones, Paul Burton, Ralf Baechle,
	Andrew Morton

On 10/16/2016 05:30 AM, Stafford Horne wrote:
>
>
> On Sat, 15 Oct 2016, Guenter Roeck wrote:
>
>> Here are some build and qemu test results for v4.9-rc1.
>> Details are available at http://kerneltests.org/builders/.
>>
>> Build results:
>>     total: 149 pass: 146 fail: 3
>> Failed builds:
>>      arm:allmodconfig
>>      arm64:allmodconfig
>>      powerpc:allmodconfig
>>
>> Qemu test results:
>>     total: 110 pass: 101 fail: 9
>> Failed tests:
>>     mips: malta_defconfig:nosmp
>>     mips: malta_defconfig:smp
>>     mips64: malta_defconfig:nosmp
>>     mips64: malta_defconfig:smp
>>     mipsel: malta_defconfig:nosmp
>>     mipsel: malta_defconfig:smp
>>     mipsel64: malta_defconfig:nosmp
>>     mipsel64: malta_defconfig:smp
>>      openrisc:or1ksim_defconfig
>
> For openrisc,
>
> I reproduced this.  It seems the fix is a patch you have already posted
> for doing `#define __ro_after_init __read_mostly`. Bisected to commit d2ec3f77de8e ("pty: make ptmx file ops read-only
> after init").
>
> That patch has not made into into the 4.9 tree it seems.  Do you have
> a place you can get it in?
>

If Andrew doesn't pick it up, I'll send it to Linus myself
later in the release cycle.

Guenter

>> The build errors are all due to
>>     ERROR: "irq_set_parent" [drivers/mfd/tps65217.ko] undefined!
>> Proposed fixes: [1] [2]
>>
>> The qemu/mips failures are fixed with [3], [4].
>> The openrisc qemu failure is fixed with [5].
>>
>> Guenter
>>
>> -------------
>> [1] https://patchwork.kernel.org/patch/9377491/
>> [2] https://patchwork.kernel.org/patch/9330925/
>> [3] https://patchwork.linux-mips.org/patch/14395/
>> [4] https://patchwork.linux-mips.org/patch/14396/
>> [5] https://patchwork.kernel.org/patch/9349191/
>>
>>
>

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

* Re: v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures)
  2016-10-16 15:44   ` Guenter Roeck
@ 2016-10-24 10:19     ` Lee Jones
  2016-10-24 13:03       ` Guenter Roeck
  0 siblings, 1 reply; 5+ messages in thread
From: Lee Jones @ 2016-10-24 10:19 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Stafford Horne, linux-kernel, Linus Torvalds, arnd, Kees Cook,
	Tony Lindgren, Marcin Niestroj, Paul Burton, Ralf Baechle,
	Andrew Morton

On Sun, 16 Oct 2016, Guenter Roeck wrote:

> On 10/16/2016 05:30 AM, Stafford Horne wrote:
> > 
> > 
> > On Sat, 15 Oct 2016, Guenter Roeck wrote:
> > 
> > > Here are some build and qemu test results for v4.9-rc1.
> > > Details are available at http://kerneltests.org/builders/.
> > > 
> > > Build results:
> > >     total: 149 pass: 146 fail: 3
> > > Failed builds:
> > >      arm:allmodconfig
> > >      arm64:allmodconfig
> > >      powerpc:allmodconfig
> > > 
> > > Qemu test results:
> > >     total: 110 pass: 101 fail: 9
> > > Failed tests:
> > >     mips: malta_defconfig:nosmp
> > >     mips: malta_defconfig:smp
> > >     mips64: malta_defconfig:nosmp
> > >     mips64: malta_defconfig:smp
> > >     mipsel: malta_defconfig:nosmp
> > >     mipsel: malta_defconfig:smp
> > >     mipsel64: malta_defconfig:nosmp
> > >     mipsel64: malta_defconfig:smp
> > >      openrisc:or1ksim_defconfig
> > 
> > For openrisc,
> > 
> > I reproduced this.  It seems the fix is a patch you have already posted
> > for doing `#define __ro_after_init __read_mostly`. Bisected to commit d2ec3f77de8e ("pty: make ptmx file ops read-only
> > after init").
> > 
> > That patch has not made into into the 4.9 tree it seems.  Do you have
> > a place you can get it in?
> > 
> 
> If Andrew doesn't pick it up, I'll send it to Linus myself
> later in the release cycle.

I believe Thomas has fixed this by exporting irq_set_parent().

> > > The build errors are all due to
> > >     ERROR: "irq_set_parent" [drivers/mfd/tps65217.ko] undefined!
> > > Proposed fixes: [1] [2]
> > > 
> > > The qemu/mips failures are fixed with [3], [4].
> > > The openrisc qemu failure is fixed with [5].
> > > 
> > > Guenter
> > > 
> > > -------------
> > > [1] https://patchwork.kernel.org/patch/9377491/
> > > [2] https://patchwork.kernel.org/patch/9330925/
> > > [3] https://patchwork.linux-mips.org/patch/14395/
> > > [4] https://patchwork.linux-mips.org/patch/14396/
> > > [5] https://patchwork.kernel.org/patch/9349191/
> > > 
> > > 
> > 
> 

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures)
  2016-10-24 10:19     ` Lee Jones
@ 2016-10-24 13:03       ` Guenter Roeck
  0 siblings, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2016-10-24 13:03 UTC (permalink / raw)
  To: Lee Jones
  Cc: Stafford Horne, linux-kernel, Linus Torvalds, arnd, Kees Cook,
	Tony Lindgren, Marcin Niestroj, Paul Burton, Ralf Baechle,
	Andrew Morton

On 10/24/2016 03:19 AM, Lee Jones wrote:
> On Sun, 16 Oct 2016, Guenter Roeck wrote:
>
>> On 10/16/2016 05:30 AM, Stafford Horne wrote:
>>>
>>>
>>> On Sat, 15 Oct 2016, Guenter Roeck wrote:
>>>
>>>> Here are some build and qemu test results for v4.9-rc1.
>>>> Details are available at http://kerneltests.org/builders/.
>>>>
>>>> Build results:
>>>>     total: 149 pass: 146 fail: 3
>>>> Failed builds:
>>>>      arm:allmodconfig
>>>>      arm64:allmodconfig
>>>>      powerpc:allmodconfig
>>>>
>>>> Qemu test results:
>>>>     total: 110 pass: 101 fail: 9
>>>> Failed tests:
>>>>     mips: malta_defconfig:nosmp
>>>>     mips: malta_defconfig:smp
>>>>     mips64: malta_defconfig:nosmp
>>>>     mips64: malta_defconfig:smp
>>>>     mipsel: malta_defconfig:nosmp
>>>>     mipsel: malta_defconfig:smp
>>>>     mipsel64: malta_defconfig:nosmp
>>>>     mipsel64: malta_defconfig:smp
>>>>      openrisc:or1ksim_defconfig
>>>
>>> For openrisc,
>>>
>>> I reproduced this.  It seems the fix is a patch you have already posted
>>> for doing `#define __ro_after_init __read_mostly`. Bisected to commit d2ec3f77de8e ("pty: make ptmx file ops read-only
>>> after init").
>>>
>>> That patch has not made into into the 4.9 tree it seems.  Do you have
>>> a place you can get it in?
>>>
>>
>> If Andrew doesn't pick it up, I'll send it to Linus myself
>> later in the release cycle.
>
> I believe Thomas has fixed this by exporting irq_set_parent().
>

Referring to the error below, correct, that has been fixed. openrisc and mips
are still broken, at least as of v4.9-rc1-244-g0c2b6dc.

Guenter

>>>> The build errors are all due to
>>>>     ERROR: "irq_set_parent" [drivers/mfd/tps65217.ko] undefined!
>>>> Proposed fixes: [1] [2]
>>>>
>>>> The qemu/mips failures are fixed with [3], [4].
>>>> The openrisc qemu failure is fixed with [5].
>>>>
>>>> Guenter
>>>>
>>>> -------------
>>>> [1] https://patchwork.kernel.org/patch/9377491/
>>>> [2] https://patchwork.kernel.org/patch/9330925/
>>>> [3] https://patchwork.linux-mips.org/patch/14395/
>>>> [4] https://patchwork.linux-mips.org/patch/14396/
>>>> [5] https://patchwork.kernel.org/patch/9349191/
>>>>
>>>>
>>>
>>
>

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

end of thread, other threads:[~2016-10-24 13:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-16  6:32 v4.9-rc1: Build and qemu test results (3 build failures, 9 qemu test failures) Guenter Roeck
2016-10-16 12:30 ` Stafford Horne
2016-10-16 15:44   ` Guenter Roeck
2016-10-24 10:19     ` Lee Jones
2016-10-24 13:03       ` Guenter Roeck

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