From patchwork Tue Sep 22 03:04:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masanari Iida X-Patchwork-Id: 7234871 Return-Path: X-Original-To: patchwork-linux-fsdevel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id AEE049F30C for ; Tue, 22 Sep 2015 03:03:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D996C2070D for ; Tue, 22 Sep 2015 03:03:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 118DD2070C for ; Tue, 22 Sep 2015 03:03:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932698AbbIVDDl (ORCPT ); Mon, 21 Sep 2015 23:03:41 -0400 Received: from mail-pa0-f45.google.com ([209.85.220.45]:36578 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757471AbbIVDDk (ORCPT ); Mon, 21 Sep 2015 23:03:40 -0400 Received: by padbj2 with SMTP id bj2so9146562pad.3; Mon, 21 Sep 2015 20:03:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=kBDyZ8aTbrDk2cPP7fltPEbEYs+26U11lMCrPX3Nmns=; b=aQ2f09b+Fy4d/8qMXlpoWJ2HTtkv5GUyPXEUTr/iX4lmj0Z1/ugncz92a1m6658b2/ Z4NjPFXq6xpEgPdChPE58SPHA4sKsKfqn9A/jtCMlDqfhlWVdsducG09KEQ0AZTaDUEr K0AJyP2CUBUv1rKUlMCu2vVOLBL+kv+o7l2sPjQQV893o0XEi1F/0GbSWadK6bXF8EZ8 mTmTWbhHBlz/aKyK50tha2m9IX5cJrrmDDRwsZRAwITTeRDl97n1RzW0nID6CqQQv8JK m9zKS98O5rJXYk4H/Eho6dlw8UX7S//047aGsm/Ghvkj/xIlFAEf5S3DhD3kM4F83sqU Zunw== X-Received: by 10.66.136.237 with SMTP id qd13mr28859979pab.84.1442891020136; Mon, 21 Sep 2015 20:03:40 -0700 (PDT) Received: from masabert (i118-21-156-233.s30.a048.ap.plala.or.jp. [118.21.156.233]) by smtp.gmail.com with ESMTPSA id o3sm27399054pap.37.2015.09.21.20.03.39 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 21 Sep 2015 20:03:39 -0700 (PDT) Received: by masabert (Postfix, from userid 1000) id D61B5E3032; Tue, 22 Sep 2015 12:04:20 +0900 (JST) From: Masanari Iida To: viro@zeniv.linux.org.uk, linux-fsdevel@vger.kernel.org, corbet@lwn.net, linux-doc@vger.kernel.org, rdunlap@infradead.org, akpm@linux-foundation.org, trivial@kernel.org, linux-kernel@vger.kernel.org Cc: Masanari Iida Subject: [PATCH] DOC: filesystem: Fix typo in fs/eventfd.c Date: Tue, 22 Sep 2015 12:04:17 +0900 Message-Id: <1442891057-7944-1-git-send-email-standby24x7@gmail.com> X-Mailer: git-send-email 2.6.0.rc2.23.g0e57679 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch fix typos found in Documentation/filesystems.xml, DocBook/filesystems/API-eventfd-signal.html, and DocBook/filesystems.aux.xml These files are generated from comments within the source, so I had to fix typos in fs/eventfd.c Signed-off-by: Masanari Iida --- fs/eventfd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/eventfd.c b/fs/eventfd.c index 8d0c0df..ed70cf9 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -45,10 +45,10 @@ struct eventfd_ctx { * * This function is supposed to be called by the kernel in paths that do not * allow sleeping. In this function we allow the counter to reach the ULLONG_MAX - * value, and we signal this as overflow condition by returining a POLLERR + * value, and we signal this as overflow condition by returning a POLLERR * to poll(2). * - * Returns the amount by which the counter was incrememnted. This will be less + * Returns the amount by which the counter was incremented. This will be less * than @n if the counter has overflowed. */ __u64 eventfd_signal(struct eventfd_ctx *ctx, __u64 n)