From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932097AbcEET7B (ORCPT ); Thu, 5 May 2016 15:59:01 -0400 Received: from mout.kundenserver.de ([212.227.126.134]:53127 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755101AbcEET66 (ORCPT ); Thu, 5 May 2016 15:58:58 -0400 From: Arnd Bergmann To: Linus Torvalds Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Yury Norov , Chris Metcalf Subject: [GIT PULL] asm-generic syscall fix for 4.6-rc Date: Thu, 05 May 2016 21:58:39 +0200 Message-ID: <4487176.5tu1gc5SEP@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:U9qDx0n7uUJoq2gVK05Zs8q9RVGpUc87CHC/6wP3Z+5i0yGueBM 7dRveqDVu0mG2CphJitrmyZMbdRAjhM3kxyz2b+cEwCpzJO+PlIYX+pMSp2h13odBFh0E+z RuczOy8zw+tMTB9ANmPJwpnrqCa7hJVxY/kkts1Ov60TFuaW6V4v4++IyaAFCJYhCP4Ba77 kLlG7Wpr37nJjxeAxwJew== X-UI-Out-Filterresults: notjunk:1;V01:K0:D0ADFb8ZwbU=:Ldt4EKU6uKZXv/zSqgpeNI Oik5ygn8iB9eG/jHYpLNrlVq4eB3Z4UV4XYFj6pG/xJjgJxE+1xOcpcRRl9sFzY+xKIzeEzMK op5nDAUX2NDbVZO9/Tv2zKWUpr0RxUgNtBUcl2NiTbSaHdYN1WlEf4Zp92Jh62atmv2F+lEoH 09Hxu142F4swCECg7y+6b1bs79xUOZc2Qmi+8SlenegrlM8MdChRgjzOy2hPLrdMMT+bUN5wo Yy7HY0d1UJ0/36P3raSt1Jdo2cv5mgmZItyH9XvapWARvdyReAwAAvCLcGzRdaJ3szl+rBGed pZn+6cDwdhOlqj7Hwv3K8NxO+u/ll2Q+Giw0ybHbvr7jq6vESBFrRbKFXpNiYmCG3LOOfZo8E BvgilMG9F1xOe3Jps+ztwJjcA8WLjJSoZob/BDATub6hECJ2WKtc0dm3OGFvrh0sGJ0hFutzU wMTBEliczm7TjecvHRyYKM9gr/M0EGsqIVCOoX5L+H30bEsdV0+A+v5iagP8e6538opIhIcF/ tmScqKBros6YjkXpus34iLu3deyGpDhpFJurn3xZYxTqBY5pg1TMNXOCG5r/+5HpfHNdJENfb mp6APUmIOBBqaOcWVWmtgtGY2ej1QPHdwQ8iDRDbSf2wo5UK/ICGkCxrr+T9BnRRzV1lMAODq fGSnY8Ppv1pdDXnGIfbfrPVolM/totZLjRAotehidf6uW1LzUlkoHIyuzyu0jPGjjQWPGHmBB 8+wZMa8NVEysiBhT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org [resent to fix subject line] The following changes since commit 02da2d72174c61988eb4456b53f405e3ebdebce4: Linux 4.6-rc5 (2016-04-24 16:17:05 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git tags/asm-generic-4.6 for you to fetch changes up to 1f93e9f2318b598e6775a1fc9701604993c512b1: asm-generic: use compat version for preadv2 and pwritev2 (2016-05-05 00:42:20 +0200) ---------------------------------------------------------------- asm-generic syscall fix for 4.6-rc My last pull request for asm-generic had just one patch that added two new system calls to asm/unistd.h, but unfortunately it turned out to be wrong, pointing arch/tile compat mode at the native handlers rather than the compat ones. This was spotted by Yury Norov, who is working on ILP32 mode for arch/arm64, which would have the same problem when merged. This fixes the table to use the correct compat syscalls, like the other 64-bit architectures do. I'll try to find the time to come up with a solution that prevents this problem from happening again, by allowing all future system calls to just get added in a single file for use by all architectures. ---------------------------------------------------------------- Yury Norov (1): asm-generic: use compat version for preadv2 and pwritev2 include/uapi/asm-generic/unistd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)