aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2011-05-20 16:20:32 -0400
committerChris Mason <chris.mason@oracle.com>2011-05-23 13:24:32 -0400
commit27160b6b5a1744b6eaa8416e2b901ec937b1eee0 (patch)
tree8747e5eef1cbab1e2402717627bfd9ab855cc5ae /fs
parent9694b3fcbb0f5dd498fdf53c82f22fcc37989152 (diff)
btrfs: fix typo 'testeing' -> 'testing'
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 7cd8ab0ef04d..72650ceb9829 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -1310,7 +1310,7 @@ static int btrfs_set_bit_hook(struct inode *inode,
1310 1310
1311 /* 1311 /*
1312 * set_bit and clear bit hooks normally require _irqsave/restore 1312 * set_bit and clear bit hooks normally require _irqsave/restore
1313 * but in this case, we are only testeing for the DELALLOC 1313 * but in this case, we are only testing for the DELALLOC
1314 * bit, which is only set or cleared with irqs on 1314 * bit, which is only set or cleared with irqs on
1315 */ 1315 */
1316 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { 1316 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
@@ -1344,7 +1344,7 @@ static int btrfs_clear_bit_hook(struct inode *inode,
1344{ 1344{
1345 /* 1345 /*
1346 * set_bit and clear bit hooks normally require _irqsave/restore 1346 * set_bit and clear bit hooks normally require _irqsave/restore
1347 * but in this case, we are only testeing for the DELALLOC 1347 * but in this case, we are only testing for the DELALLOC
1348 * bit, which is only set or cleared with irqs on 1348 * bit, which is only set or cleared with irqs on
1349 */ 1349 */
1350 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) { 1350 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {