| Message ID | 1428525652-7845-1-git-send-email-T.E.Baldwin99@members.leeds.ac.uk |
|---|---|
| State | New |
| Headers | show |
On 8 April 2015 at 21:40, Timothy E Baldwin <T.E.Baldwin99@members.leeds.ac.uk> wrote: > Misspelled system call name in macro was causing timerfd_create not > to be supported for the ARM target. > > Signed-off-by: Timothy Edward Baldwin <T.E.Baldwin99@members.leeds.ac.uk> Thanks for the respin. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM
On 8 April 2015 at 22:05, Peter Maydell <peter.maydell@linaro.org> wrote: > On 8 April 2015 at 21:40, Timothy E Baldwin > <T.E.Baldwin99@members.leeds.ac.uk> wrote: >> Misspelled system call name in macro was causing timerfd_create not >> to be supported for the ARM target. >> >> Signed-off-by: Timothy Edward Baldwin <T.E.Baldwin99@members.leeds.ac.uk> > > Thanks for the respin. Now applied to target-arm.next; thanks. -- PMM
diff --git a/linux-user/arm/syscall_nr.h b/linux-user/arm/syscall_nr.h index 7d7be7c..53552be 100644 --- a/linux-user/arm/syscall_nr.h +++ b/linux-user/arm/syscall_nr.h @@ -354,7 +354,7 @@ #define TARGET_NR_kexec_load (347) #define TARGET_NR_utimensat (348) #define TARGET_NR_signalfd (349) -#define TARGET_NR_timerfd (350) +#define TARGET_NR_timerfd_create (350) #define TARGET_NR_eventfd (351) #define TARGET_NR_fallocate (352) #define TARGET_NR_timerfd_settime (353)
Misspelled system call name in macro was causing timerfd_create not to be supported for the ARM target. Signed-off-by: Timothy Edward Baldwin <T.E.Baldwin99@members.leeds.ac.uk> --- linux-user/arm/syscall_nr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)