From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758746AbYLEKYq (ORCPT ); Fri, 5 Dec 2008 05:24:46 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757042AbYLEKVM (ORCPT ); Fri, 5 Dec 2008 05:21:12 -0500 Received: from vps1.tull.net ([66.180.172.116]:47129 "HELO vps1.tull.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754698AbYLEKVB (ORCPT ); Fri, 5 Dec 2008 05:21:01 -0500 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 Cc: , Nick Andrew 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 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-SMTPD: qpsmtpd/0.26, http://develooper.com/code/qpsmtpd/ Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.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 --- 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);