From patchwork Tue May 10 20:01:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Trofimovich X-Patchwork-Id: 775262 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4AJxKYV019699 for ; Tue, 10 May 2011 19:59:20 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752602Ab1EJT7O (ORCPT ); Tue, 10 May 2011 15:59:14 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:59597 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751450Ab1EJT7M (ORCPT ); Tue, 10 May 2011 15:59:12 -0400 Received: from gentoo.org (unknown [178.121.233.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: slyfox) by smtp.gentoo.org (Postfix) with ESMTPSA id BA9D11BC01C; Tue, 10 May 2011 19:59:10 +0000 (UTC) Received: by gentoo.org (sSMTP sendmail emulation); Tue, 10 May 2011 23:01:54 +0300 From: Sergei Trofimovich To: linux-btrfs@vger.kernel.org Cc: Chris Mason , Sergei Trofimovich Subject: [PATCH v2 3/3] btrfs: fix typo 'testeing' -> 'testing' Date: Tue, 10 May 2011 23:01:30 +0300 Message-Id: <1305057690-15366-4-git-send-email-slyfox@gentoo.org> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1305057690-15366-1-git-send-email-slyfox@gentoo.org> References: <1305057690-15366-1-git-send-email-slyfox@gentoo.org> Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Tue, 10 May 2011 19:59:21 +0000 (UTC) Signed-off-by: Sergei Trofimovich --- fs/btrfs/inode.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 7cd8ab0..72650ce 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -1310,7 +1310,7 @@ static int btrfs_set_bit_hook(struct inode *inode, /* * set_bit and clear bit hooks normally require _irqsave/restore - * but in this case, we are only testeing for the DELALLOC + * but in this case, we are only testing for the DELALLOC * bit, which is only set or cleared with irqs on */ if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { @@ -1344,7 +1344,7 @@ static int btrfs_clear_bit_hook(struct inode *inode, { /* * set_bit and clear bit hooks normally require _irqsave/restore - * but in this case, we are only testeing for the DELALLOC + * but in this case, we are only testing for the DELALLOC * bit, which is only set or cleared with irqs on */ if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {