From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id AE48BC4743F for ; Mon, 7 Jun 2021 01:58:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8CCEB61156 for ; Mon, 7 Jun 2021 01:58:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230178AbhFGCAB (ORCPT ); Sun, 6 Jun 2021 22:00:01 -0400 Received: from m12-17.163.com ([220.181.12.17]:35099 "EHLO m12-17.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230145AbhFGCAA (ORCPT ); Sun, 6 Jun 2021 22:00:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id:MIME-Version; bh=VV7oX bnHCAfOg77rhAZOko34pxwPYPpLx3vndGyuS3w=; b=P1RSKNHNjMzTPxNb8ITlH 87Cbgk7ZGT1+CJe8Tuhk8FKQeojRYD0HnI74ZG0rhFTPQyS/ankWWJzLwaV/MIge LZVnloUMJl0+rwB1l3ovwV6lbHBFDhEbeiQsOrC1cM93L1G4Cq6AjjJnR88ocdfj SUY00+SlVK/8WFEUWzwkuQ= Received: from localhost.localdomain (unknown [218.17.89.92]) by smtp13 (Coremail) with SMTP id EcCowADXqGAufb1gnMpy5w--.42944S2; Mon, 07 Jun 2021 09:58:07 +0800 (CST) From: lijian_8010a29@163.com To: viro@zeniv.linux.org.uk Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, lijian Subject: [PATCH] fs: exec: deleted the repeated word Date: Mon, 7 Jun 2021 09:57:08 +0800 Message-Id: <20210607015708.35584-1-lijian_8010a29@163.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CM-TRANSID: EcCowADXqGAufb1gnMpy5w--.42944S2 X-Coremail-Antispam: 1Uf129KBjvdXoW7GFW7uFyDJr1kGr4xuF15urg_yoWxZrXEyw 4UAFy0grZ8trWIyFy5K3ZaqryIqa18Ar98XF1rKF93X34YqF43CrZ5Jr1IkryDXrWDZa43 Xan5WayDuay8WjkaLaAFLSUrUUUUUb8apTn2vfkv8UJUUUU8Yxn0WfASr-VFAUDa7-sFnT 9fnUUvcSsGvfC2KfnxnUUI43ZEXa7IU5jZX7UUUUU== X-Originating-IP: [218.17.89.92] X-CM-SenderInfo: 5olmxttqbyiikqdsmqqrwthudrp/1tbiEQ+qUF7+3nHfgwAAs3 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: lijian deleted the repeated word 'from' in the comments. Signed-off-by: lijian --- fs/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/exec.c b/fs/exec.c index 18594f11c31f..b6cad5ea78d0 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -120,7 +120,7 @@ bool path_noexec(const struct path *path) * Note that a shared library must be both readable and executable due to * security reasons. * - * Also note that we take the address to load from from the file itself. + * Also note that we take the address to load from the file itself. */ SYSCALL_DEFINE1(uselib, const char __user *, library) { -- 2.25.1