Received: by 10.213.65.68 with SMTP id h4csp142476imn; Thu, 15 Mar 2018 12:08:27 -0700 (PDT) X-Google-Smtp-Source: AG47ELsHICPIOJqYZdwsEvDSudCx9WJ38z6CjrxGmWVN5HDRy53NaMKuOEbuybWP+CnodSRk1zLO X-Received: by 2002:a17:902:7883:: with SMTP id q3-v6mr9045294pll.361.1521140907363; Thu, 15 Mar 2018 12:08:27 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521140907; cv=none; d=google.com; s=arc-20160816; b=nt76/Nt3ZnasdK/dcNK+XGGgefPp8wpR/UsTlQy7ptvLZcNB3nx3aTDwqRAt2g8pKc ihg6/CdRkKasaRxqRq1PsFTiZ5wWW1mpmWruDqjHUsjmagIIL8kHPVg6Bpw1z0oQr1SU tCTICHRUm5GYh8MNnd3pzql84ltgWR+iLN1NsiAPkXr1EPJZXVWpAJMgfHpNeeW8ztT2 2IibM4DX2eXUpEgqMJjPqksHUN4pU6CDZBLejmFjm/Y+uxJaRZI0/cjwKkvvWLHKpV3w ARZJzF5lvDypZM2+xjxBOmpdGgpLFpxTc6UCGXS70PHd10hup7+g5+hLs3cl8nHkVS5b S7zA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=IH1ppTt4ts2tc4vIugdM1Nwp3CEszQ9AiY0p5YDEsoo=; b=KNH7TX/tk6z7VKyE5ZVUUsYWmCDXx74d7KwSPNBuxZic+CdQDR5VVpa3FjERom6Cln yfi6WyjbgSXF9gqw8SnK22zll4LyPeHdtOMaw/DHWlGJNBU+cdUgzfUwB5ieOXmXmFao NkvSRKwI67wbWKA8mSHnsmvJLhhVptINz+55ciUR4uciJCRxbB7tsabeAWaEpzMNB78F mOYq1TqbNnD3AQ+G7tXJKvZXpIKnrTmd6UI/rmKcn9E5C2PGJPEY1q2yEzf/zxW9ajkG m2IKetGSyiRwzW2stQIx0xHwE8mUt3zOapEXfH1qdFerBjnI9Hdv0GmKDxt6xoUav01l BObA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id f18si2146129pgn.244.2018.03.15.12.08.12; Thu, 15 Mar 2018 12:08:27 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932776AbeCOTGi (ORCPT + 99 others); Thu, 15 Mar 2018 15:06:38 -0400 Received: from isilmar-4.linta.de ([136.243.71.142]:36228 "EHLO isilmar-4.linta.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932694AbeCOTGZ (ORCPT ); Thu, 15 Mar 2018 15:06:25 -0400 Received: from light.dominikbrodowski.net (isilmar.linta [10.0.0.1]) by isilmar-4.linta.de (Postfix) with ESMTPS id 068F920092D; Thu, 15 Mar 2018 19:06:19 +0000 (UTC) Received: by light.dominikbrodowski.net (Postfix, from userid 1000) id 45F2620681; Thu, 15 Mar 2018 20:05:39 +0100 (CET) From: Dominik Brodowski To: linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, viro@zeniv.linux.org.uk Cc: luto@kernel.org, mingo@kernel.org, akpm@linux-foundation.org, arnd@arndb.de, linux-s390@vger.kernel.org Subject: [PATCH v2 18/36] fs: add ksys_write() helper; remove in-kernel calls to sys_write() Date: Thu, 15 Mar 2018 20:05:11 +0100 Message-Id: <20180315190529.20943-19-linux@dominikbrodowski.net> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180315190529.20943-1-linux@dominikbrodowski.net> References: <20180315190529.20943-1-linux@dominikbrodowski.net> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Using this helper allows us to avoid the in-kernel calls to the sys_write() syscall. Cc: Alexander Viro Cc: linux-s390@vger.kernel.org Signed-off-by: Dominik Brodowski --- arch/s390/kernel/compat_linux.c | 2 +- fs/read_write.c | 9 +++++++-- include/linux/syscalls.h | 1 + init/do_mounts_rd.c | 4 ++-- init/initramfs.c | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/arch/s390/kernel/compat_linux.c b/arch/s390/kernel/compat_linux.c index 79b7a3438d54..5a9cfde5fc28 100644 --- a/arch/s390/kernel/compat_linux.c +++ b/arch/s390/kernel/compat_linux.c @@ -468,7 +468,7 @@ COMPAT_SYSCALL_DEFINE3(s390_write, unsigned int, fd, const char __user *, buf, c if ((compat_ssize_t) count < 0) return -EINVAL; - return sys_write(fd, buf, count); + return ksys_write(fd, buf, count); } /* diff --git a/fs/read_write.c b/fs/read_write.c index f8547b82dfb3..8e8f0b4f52e2 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -578,8 +578,7 @@ SYSCALL_DEFINE3(read, unsigned int, fd, char __user *, buf, size_t, count) return ret; } -SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, - size_t, count) +ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count) { struct fd f = fdget_pos(fd); ssize_t ret = -EBADF; @@ -595,6 +594,12 @@ SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, return ret; } +SYSCALL_DEFINE3(write, unsigned int, fd, const char __user *, buf, + size_t, count) +{ + return ksys_write(fd, buf, count); +} + SYSCALL_DEFINE4(pread64, unsigned int, fd, char __user *, buf, size_t, count, loff_t, pos) { diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 13c7bc43b6ef..c6aa44b6a0a2 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h @@ -953,5 +953,6 @@ int ksys_mount(char __user *dev_name, char __user *dir_name, char __user *type, int ksys_umount(char __user *name, int flags); int ksys_dup(unsigned int fildes); int ksys_chroot(const char __user *filename); +ssize_t ksys_write(unsigned int fd, const char __user *buf, size_t count); #endif diff --git a/init/do_mounts_rd.c b/init/do_mounts_rd.c index 99e0b649fc0e..2d365c398ccc 100644 --- a/init/do_mounts_rd.c +++ b/init/do_mounts_rd.c @@ -270,7 +270,7 @@ int __init rd_load_image(char *from) printk("Loading disk #%d... ", disk); } sys_read(in_fd, buf, BLOCK_SIZE); - sys_write(out_fd, buf, BLOCK_SIZE); + ksys_write(out_fd, buf, BLOCK_SIZE); #if !defined(CONFIG_S390) if (!(i % 16)) { pr_cont("%c\b", rotator[rotate & 0x3]); @@ -317,7 +317,7 @@ static long __init compr_fill(void *buf, unsigned long len) static long __init compr_flush(void *window, unsigned long outcnt) { - long written = sys_write(crd_outfd, window, outcnt); + long written = ksys_write(crd_outfd, window, outcnt); if (written != outcnt) { if (decompress_error == 0) printk(KERN_ERR diff --git a/init/initramfs.c b/init/initramfs.c index 7e99a0038942..6f972df15bf2 100644 --- a/init/initramfs.c +++ b/init/initramfs.c @@ -27,7 +27,7 @@ static ssize_t __init xwrite(int fd, const char *p, size_t count) /* sys_write only can write MAX_RW_COUNT aka 2G-4K bytes at most */ while (count) { - ssize_t rv = sys_write(fd, p, count); + ssize_t rv = ksys_write(fd, p, count); if (rv < 0) { if (rv == -EINTR || rv == -EAGAIN) -- 2.16.2