2012-08-31 13:18:22

by Marco Stornelli

[permalink] [raw]
Subject: [PATCH] um: fix compilation error

Fix a compilation error due to a regression of commit
d3c1cfcdb43e023ab1b1c7a555cd9e929026500a
"um: pass siginfo to guest process".

Signed-off-by: Marco Stornelli <[email protected]>
---
arch/um/os-Linux/time.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/um/os-Linux/time.c b/arch/um/os-Linux/time.c
index f602385..0748fe0 100644
--- a/arch/um/os-Linux/time.c
+++ b/arch/um/os-Linux/time.c
@@ -114,7 +114,7 @@ static void deliver_alarm(void)
skew += this_tick - last_tick;

while (skew >= one_tick) {
- alarm_handler(SIGVTALRM, NULL);
+ alarm_handler(SIGVTALRM, NULL, NULL);
skew -= one_tick;
}

--
1.7.3.4


2012-08-31 13:26:16

by Richard Weinberger

[permalink] [raw]
Subject: Re: [PATCH] um: fix compilation error

On Fri, Aug 31, 2012 at 3:11 PM, Marco Stornelli
<[email protected]> wrote:
> Fix a compilation error due to a regression of commit
> d3c1cfcdb43e023ab1b1c7a555cd9e929026500a
> "um: pass siginfo to guest process".
>
> Signed-off-by: Marco Stornelli <[email protected]>

Thanks, patch will be submitted to Linus ASAP with other UML fixes.

--
Thanks,
//richard