From patchwork Wed Apr 8 20:26:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timothy Baldwin X-Patchwork-Id: 459485 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 04FFD14016A for ; Thu, 9 Apr 2015 06:26:47 +1000 (AEST) Received: from localhost ([::1]:54728 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfwYe-0004ZI-JC for incoming@patchwork.ozlabs.org; Wed, 08 Apr 2015 16:26:44 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36564) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfwYP-00046W-1M for qemu-devel@nongnu.org; Wed, 08 Apr 2015 16:26:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YfwYM-0004py-AA for qemu-devel@nongnu.org; Wed, 08 Apr 2015 16:26:28 -0400 Received: from avasout02.plus.net ([212.159.14.17]:37694) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YfwYM-0004pV-3s for qemu-devel@nongnu.org; Wed, 08 Apr 2015 16:26:26 -0400 Received: from bfg ([87.112.47.191]) by avasout02 with smtp id DYSG1q00247Vo6n01YSHp8; Wed, 08 Apr 2015 21:26:17 +0100 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=DofY+QP+ c=1 sm=1 tr=0 a=S+ht1fRCvPEF8F/GAPfF3w==:117 a=S+ht1fRCvPEF8F/GAPfF3w==:17 a=0Bzu9jTXAAAA:8 a=_b_YLus_X1UA:10 a=FJhpQO9QAAAA:8 a=h_6DSLV0AAAA:8 a=e9J7MTPGsLIA:10 a=WmcGQb0SE2uLDPL3JxcA:9 Received: from tim by bfg with local (Exim 4.84) (envelope-from ) id 1YfwYC-00020p-7W; Wed, 08 Apr 2015 21:26:16 +0100 From: Timothy E Baldwin To: riku.voipio@iki.fi, qemu-devel@nongnu.org Date: Wed, 8 Apr 2015 21:26:11 +0100 Message-Id: <1428524771-7566-1-git-send-email-T.E.Baldwin99@members.leeds.ac.uk> X-Mailer: git-send-email 2.1.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-Received-From: 212.159.14.17 Cc: Timothy E Baldwin Subject: [Qemu-devel] [PATCH] linux-user: Correct TARGET_NR_timerfd to TARGET_NR_timerfd_create. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Misspelled system call name in macro was causing timerfd_create not to be supported for the ARM target. Reviewed-by: Peter Maydell Signed-off-by: line in your commit message. We need --- linux-user/arm/syscall_nr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)