* linux-next: build failure after merge of the tip tree
@ 2019-08-01 3:38 Stephen Rothwell
2019-08-01 7:40 ` [tip:timers/core] staging/android/vsoc:: Fix typo in hrtimer_init_sleeper_on_stack() conversion tip-bot for Stephen Rothwell
0 siblings, 1 reply; 2+ messages in thread
From: Stephen Rothwell @ 2019-08-01 3:38 UTC (permalink / raw)
To: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, Peter Zijlstra
Cc: Linux Next Mailing List, Linux Kernel Mailing List,
Sebastian Andrzej Siewior, Anna-Maria Gleixner
[-- Attachment #1: Type: text/plain, Size: 2069 bytes --]
Hi all,
After merging the tip tree, today's linux-next build (x86_64 allmodconfig)
failed like this:
drivers/staging/android/vsoc.c: In function 'handle_vsoc_cond_wait':
drivers/staging/android/vsoc.c:440:33: error: passing argument 1 of 'hrtimer_init_sleeper_on_stack' from incompatible pointer type [-Werror=incompatible-pointer-types]
hrtimer_init_sleeper_on_stack(&to, CLOCK_MONOTONIC,
^~~
In file included from include/linux/pm.h:16,
from include/linux/device.h:23,
from include/linux/dma-mapping.h:7,
from drivers/staging/android/vsoc.c:19:
include/linux/hrtimer.h:381:67: note: expected 'struct hrtimer_sleeper *' but argument is of type 'struct hrtimer_sleeper **'
extern void hrtimer_init_sleeper_on_stack(struct hrtimer_sleeper *sl,
~~~~~~~~~~~~~~~~~~~~~~~~^~
Caused by commit
82e18bace3dd ("hrtimer: Consolidate hrtimer_init() + hrtimer_init_sleeper() calls")
I have added the following patch for today:
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Thu, 1 Aug 2019 13:33:44 +1000
Subject: [PATCH] hrtimer: fix typo in hrtimer_init_sleeper_on_stack() conversion
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
drivers/staging/android/vsoc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/android/vsoc.c b/drivers/staging/android/vsoc.c
index 4f7e6c1dce42..1240bb0317d9 100644
--- a/drivers/staging/android/vsoc.c
+++ b/drivers/staging/android/vsoc.c
@@ -437,7 +437,7 @@ static int handle_vsoc_cond_wait(struct file *filp, struct vsoc_cond_wait *arg)
return -EINVAL;
wake_time = ktime_set(arg->wake_time_sec, arg->wake_time_nsec);
- hrtimer_init_sleeper_on_stack(&to, CLOCK_MONOTONIC,
+ hrtimer_init_sleeper_on_stack(to, CLOCK_MONOTONIC,
HRTIMER_MODE_ABS);
hrtimer_set_expires_range_ns(&to->timer, wake_time,
current->timer_slack_ns);
--
2.20.1
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread* [tip:timers/core] staging/android/vsoc:: Fix typo in hrtimer_init_sleeper_on_stack() conversion
2019-08-01 3:38 linux-next: build failure after merge of the tip tree Stephen Rothwell
@ 2019-08-01 7:40 ` tip-bot for Stephen Rothwell
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Stephen Rothwell @ 2019-08-01 7:40 UTC (permalink / raw)
To: linux-tip-commits; +Cc: mingo, sfr, linux-kernel, tglx, hpa
Commit-ID: a688d2a57b78eed3ff38cc9bbb111603bf22a1f4
Gitweb: https://git.kernel.org/tip/a688d2a57b78eed3ff38cc9bbb111603bf22a1f4
Author: Stephen Rothwell <sfr@canb.auug.org.au>
AuthorDate: Thu, 1 Aug 2019 13:38:41 +1000
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 1 Aug 2019 09:00:40 +0200
staging/android/vsoc:: Fix typo in hrtimer_init_sleeper_on_stack() conversion
After merging the tip tree, today's linux-next build (x86_64 allmodconfig)
failed like this:
drivers/staging/android/vsoc.c: In function 'handle_vsoc_cond_wait':
drivers/staging/android/vsoc.c:440:33: error: passing argument 1 of 'hrtimer_init_sleeper_on_stack'
from incompatible pointer type [-Werror=incompatible-pointer-types]
hrtimer_init_sleeper_on_stack(&to, CLOCK_MONOTONIC,
^~~
In file included from include/linux/pm.h:16,
from include/linux/device.h:23,
from include/linux/dma-mapping.h:7,
from drivers/staging/android/vsoc.c:19:
include/linux/hrtimer.h:381:67: note: expected 'struct hrtimer_sleeper *
' but argument is of type 'struct hrtimer_sleeper **'
extern void hrtimer_init_sleeper_on_stack(struct hrtimer_sleeper *sl,
~~~~~~~~~~~~~~~~~~~~~~~~^~
Fixes: 82e18bace3dd ("hrtimer: Consolidate hrtimer_init() + hrtimer_init_sleeper() calls")
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190801133841.64e69541@canb.auug.org.au
---
drivers/staging/android/vsoc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/android/vsoc.c b/drivers/staging/android/vsoc.c
index 4f7e6c1dce42..1240bb0317d9 100644
--- a/drivers/staging/android/vsoc.c
+++ b/drivers/staging/android/vsoc.c
@@ -437,7 +437,7 @@ static int handle_vsoc_cond_wait(struct file *filp, struct vsoc_cond_wait *arg)
return -EINVAL;
wake_time = ktime_set(arg->wake_time_sec, arg->wake_time_nsec);
- hrtimer_init_sleeper_on_stack(&to, CLOCK_MONOTONIC,
+ hrtimer_init_sleeper_on_stack(to, CLOCK_MONOTONIC,
HRTIMER_MODE_ABS);
hrtimer_set_expires_range_ns(&to->timer, wake_time,
current->timer_slack_ns);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-08-01 7:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-01 3:38 linux-next: build failure after merge of the tip tree Stephen Rothwell
2019-08-01 7:40 ` [tip:timers/core] staging/android/vsoc:: Fix typo in hrtimer_init_sleeper_on_stack() conversion tip-bot for Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome