From patchwork Fri Dec 5 03:08:06 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nick Andrew X-Patchwork-Id: 12367 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bombadil.infradead.org (bombadil.infradead.org [18.85.46.34]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 94B9FDDD0B for ; Fri, 5 Dec 2008 21:22:30 +1100 (EST) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.68 #1 (Red Hat Linux)) id 1L8Xo1-0001ld-Jy; Fri, 05 Dec 2008 10:21:05 +0000 Received: from vps1.tull.net ([66.180.172.116]) by bombadil.infradead.org with smtp (Exim 4.68 #1 (Red Hat Linux)) id 1L8Xo0-0001lG-5N for linux-mtd@lists.infradead.org; Fri, 05 Dec 2008 10:21:04 +0000 Received: (qmail 30180 invoked by uid 1015); 5 Dec 2008 21:21:00 +1100 Received: from [10.0.0.67] (HELO tull.net) (10.0.0.67) by vps1.tull.net (qpsmtpd/0.26) with SMTP; Fri, 05 Dec 2008 21:21:00 +1100 Received: (qmail 8781 invoked by uid 1015); 5 Dec 2008 21:20:58 +1100 Received: from [10.0.0.1] (HELO marcab.local.tull.net) (10.0.0.1) by tull.net (qpsmtpd/0.40) with SMTP; Fri, 05 Dec 2008 21:20:58 +1100 Received: by marcab.local.tull.net (sSMTP sendmail emulation); Fri, 05 Dec 2008 21:20:56 +1100 Mail-From: nobody Fri Dec 5 14:08:06 2008 From: Nick Andrew Subject: [PATCH] Fix incorrect use of loose in fs.c To: David Howells , David Woodhouse , David Woodhouse , James Morris , Nick Andrew , linux-mtd@lists.infradead.org Date: Fri, 05 Dec 2008 14:08:06 +1100 Message-ID: <20081205030806.32225.66382.stgit@marcab.local.tull.net> User-Agent: StGIT/0.14.2 MIME-Version: 1.0 X-SMTPD: qpsmtpd/0.26, http://develooper.com/code/qpsmtpd/ X-Spam-Score: 1.9 (+) X-Spam-Report: SpamAssassin version 3.2.5 on bombadil.infradead.org summary: Content analysis details: (1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- 1.9 DATE_IN_PAST_06_12 Date: is 6 to 12 hours before Received: date Cc: Nick Andrew , linux-kernel@vger.kernel.org X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.9 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Fix incorrect use of loose in fs.c It should be 'lose', not 'loose'. Also fix a spelling error. Signed-off-by: Nick Andrew Acked-by: David Howells --- fs/jffs2/fs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/jffs2/fs.c b/fs/jffs2/fs.c index 249305d..a598de9 100644 --- a/fs/jffs2/fs.c +++ b/fs/jffs2/fs.c @@ -386,7 +386,7 @@ int jffs2_remount_fs (struct super_block *sb, int *flags, char *data) /* We stop if it was running, then restart if it needs to. This also catches the case where it was stopped and this is just a remount to restart it. - Flush the writebuffer, if neccecary, else we loose it */ + Flush the writebuffer, if necessary, else we lose it */ if (!(sb->s_flags & MS_RDONLY)) { jffs2_stop_garbage_collect_thread(c); mutex_lock(&c->alloc_sem);