From patchwork Sat May 7 21:29:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Trofimovich X-Patchwork-Id: 764942 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p47LV6XJ030110 for ; Sat, 7 May 2011 21:31:06 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755210Ab1EGVbE (ORCPT ); Sat, 7 May 2011 17:31:04 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:42683 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754890Ab1EGVbC (ORCPT ); Sat, 7 May 2011 17:31:02 -0400 Received: by mail-bw0-f46.google.com with SMTP id 15so3214775bwz.19 for ; Sat, 07 May 2011 14:31:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=3L4bIlN+Z9aIjFvLJL+hDg0SfIQCRENSjKm+vTOpIE4=; b=nCrHgs0+FCMFRmQS4jbrekw3F35vYKCXOGZ/dfpFLYnMljW85vzsBSyVpGsMHd4JGt AFbIxl++JhZYm+peJoP+J+MhhLzocXV+Oi3gn+jXbL9syNBbWjE+mc3uTKTI5suJjouR NAhZXACGtV44cQgLW1C+8osLuC7Hq0XTkNYS8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=UsKdYHUl0NY4/GZx3nEwTDj8GNG5FovXD/KSgpiPMT+1NdOabTz6fl/dB/AfryrTW1 9AAKGCfJYamBeBkEY2nMvhN/07Qf5zU9CBTI+uhVndh2ft9LWy98IDeiiw6PLQPMIZ7E fKUqcI+d7NYLp+BGFa0taZESbFiwzyp9aI0Ao= Received: by 10.204.83.7 with SMTP id d7mr4290330bkl.206.1304803861894; Sat, 07 May 2011 14:31:01 -0700 (PDT) Received: from slyich@gmail.com ([178.125.175.156]) by mx.google.com with ESMTPS id q25sm2750060bkk.10.2011.05.07.14.30.58 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 07 May 2011 14:31:01 -0700 (PDT) Received: by slyich@gmail.com (sSMTP sendmail emulation); Sun, 08 May 2011 00:30:56 +0300 From: slyich@gmail.com To: linux-btrfs@vger.kernel.org Cc: Chris Mason , Sergei Trofimovich Subject: [PATCH 4/4] btrfs: fix typo 'testeing' -> 'testing' Date: Sun, 8 May 2011 00:29:44 +0300 Message-Id: <1304803784-23756-3-git-send-email-slyfox@gentoo.org> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1304803784-23756-1-git-send-email-slyfox@gentoo.org> References: <1304803784-23756-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 (demeter1.kernel.org [140.211.167.41]); Sat, 07 May 2011 21:31:06 +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)) {