2012-08-31 12:21:17

by Marco Stornelli

[permalink] [raw]
Subject: 3.6rc-3 doesn't compile um arch

Hi,

I'm trying to compile the latest kernel for arch um, using the latest
Linus's tree, but it doesn't compile due to the commit:

um: pass siginfo to the guest process.

I think the fix is trivial. At line 117 of os-Linux/time.c you find
this line:

alarm_handler(SIGVTALRM, NULL);

but it should be:

alarm_handler(SIGVTALRM, NULL, NULL);

Is it already fixed?

Marco


2012-08-31 12:27:11

by Richard Weinberger

[permalink] [raw]
Subject: Re: 3.6rc-3 doesn't compile um arch

On Fri, Aug 31, 2012 at 2:14 PM, Marco Stornelli
<[email protected]> wrote:
> Hi,
>
> I'm trying to compile the latest kernel for arch um, using the latest
> Linus's tree, but it doesn't compile due to the commit:
>
> um: pass siginfo to the guest process.
>
> I think the fix is trivial. At line 117 of os-Linux/time.c you find
> this line:
>
> alarm_handler(SIGVTALRM, NULL);
>
> but it should be:
>
> alarm_handler(SIGVTALRM, NULL, NULL);
>
> Is it already fixed?

It's known but nobody cared to send a fix for that.
Who wants the credit?

Otherwise I'll fix it in -rc4 or 5.
(Currently I'm on holiday...)

--
Thanks,
//richard