From patchwork Fri Aug 16 19:49:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anatol Pomozov X-Patchwork-Id: 267891 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 1BF1A2C00BE for ; Sat, 17 Aug 2013 08:43:40 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757477Ab3HPWnK (ORCPT ); Fri, 16 Aug 2013 18:43:10 -0400 Received: from mail-qc0-f202.google.com ([209.85.216.202]:49675 "EHLO mail-qc0-f202.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757473Ab3HPWnH (ORCPT ); Fri, 16 Aug 2013 18:43:07 -0400 Received: by mail-qc0-f202.google.com with SMTP id s1so227520qcw.5 for ; Fri, 16 Aug 2013 15:43:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=4uGg+cDBizCI7hs5cv2JmUW3b5+v3q4tsZnGJcML25U=; b=nVOlk32YRI9L3EGFvfsD9j8wHi63MmqaBEvWfONOh//FCwzFykL2+i66g+ordUkwTi VQTt66PCDYR45Dj98/EK3x+OEugrawZWqxyGJzslsx6CFdSwDbTOptnGwwURY/j40RH0 8FU4H8jqn2kPO2VfzQEwNlJXIn5lxxIWCACddrF+xxAlU9FOT9qCsOCAMDzKwoKwBvFo nIvWfUwQO9SI3wLYAMQAR+XKIQXWbN0PCmc4gcGhvsAEcA53ZxTEgOVPw+YHEPdB6EZ7 SQ80oJ15/fxDDwd/sG7N+43GsJQqT6PVwy4/BDktwsmNR8A+6wpgHThWrXL/PktB1jR1 ujaQ== X-Gm-Message-State: ALoCoQlcXZPk3ouQz5Rmguicdv2PdvyeXnbMv+Jn82Epodkyq4hgIlHxtNVuJY6s0U+jqyEkC1Zw+GTrQx9444RZf7cvLLrGQkl9fTuSDo6cfUiy5hCafx5sw7LO9Zs3s7oDMWuxxAeoTn8B1vaf4t86EPQaZv4L/0z7trfA93hTWeZwNSeRi32qJAyosLGVloyl1ZEuHV/3lTki2TKD7ix3v9ZjUg7Rig== X-Received: by 10.236.7.130 with SMTP id 2mr1126026yhp.4.1376682590541; Fri, 16 Aug 2013 12:49:50 -0700 (PDT) Received: from corp2gmr1-1.hot.corp.google.com (corp2gmr1-1.hot.corp.google.com [172.24.189.92]) by gmr-mx.google.com with ESMTPS id z45si239497yha.7.1969.12.31.16.00.00 (version=TLSv1.1 cipher=AES128-SHA bits=128/128); Fri, 16 Aug 2013 12:49:50 -0700 (PDT) Received: from anatol.mtv.corp.google.com (anatol.mtv.corp.google.com [172.17.130.253]) by corp2gmr1-1.hot.corp.google.com (Postfix) with ESMTP id 3E4A331C23C; Fri, 16 Aug 2013 12:49:50 -0700 (PDT) Received: by anatol.mtv.corp.google.com (Postfix, from userid 67983) id E0B63140F62; Fri, 16 Aug 2013 12:49:49 -0700 (PDT) From: Anatol Pomozov To: linux-ext4@vger.kernel.org Cc: tytso@mit.edu, Anatol Pomozov Subject: [PATCH] ext4: Fix misspellings using 'codespell' tool Date: Fri, 16 Aug 2013 12:49:18 -0700 Message-Id: <1376682558-21846-1-git-send-email-anatol.pomozov@gmail.com> X-Mailer: git-send-email 1.8.3 Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org Signed-off-by: Anatol Pomozov --- fs/ext3/dir.c | 2 +- fs/ext4/dir.c | 2 +- fs/ext4/ext4_jbd2.h | 2 +- fs/ext4/extents.c | 2 +- fs/ext4/inode.c | 8 ++++---- fs/ext4/migrate.c | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index f522425..bafdd48 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c @@ -41,7 +41,7 @@ static unsigned char get_dtype(struct super_block *sb, int filetype) /** * Check if the given dir-inode refers to an htree-indexed directory - * (or a directory which chould potentially get coverted to use htree + * (or a directory which could potentially get converted to use htree * indexing). * * Return 1 if it is a dx dir, 0 if not diff --git a/fs/ext4/dir.c b/fs/ext4/dir.c index 3c7d288..680bb33 100644 --- a/fs/ext4/dir.c +++ b/fs/ext4/dir.c @@ -33,7 +33,7 @@ static int ext4_dx_readdir(struct file *, struct dir_context *); /** * Check if the given dir-inode refers to an htree-indexed directory - * (or a directory which chould potentially get coverted to use htree + * (or a directory which could potentially get converted to use htree * indexing). * * Return 1 if it is a dx dir, 0 if not diff --git a/fs/ext4/ext4_jbd2.h b/fs/ext4/ext4_jbd2.h index 2877258..81cfefa 100644 --- a/fs/ext4/ext4_jbd2.h +++ b/fs/ext4/ext4_jbd2.h @@ -197,7 +197,7 @@ static inline void ext4_journal_callback_add(handle_t *handle, * ext4_journal_callback_del: delete a registered callback * @handle: active journal transaction handle on which callback was registered * @jce: registered journal callback entry to unregister - * Return true if object was sucessfully removed + * Return true if object was successfully removed */ static inline bool ext4_journal_callback_try_del(handle_t *handle, struct ext4_journal_cb_entry *jce) diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 72ba470..043b433 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -3133,7 +3133,7 @@ fix_extent_len: * ext4_split_extents() splits an extent and mark extent which is covered * by @map as split_flags indicates * - * It may result in splitting the extent into multiple extents (upto three) + * It may result in splitting the extent into multiple extents (up to three) * There are three possibilities: * a> There is no split required * b> Splits in two extents: Split is happening at either end of the extent diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index dd32a2e..60c9278 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -1895,7 +1895,7 @@ static int ext4_writepage(struct page *page, /* * mballoc gives us at most this number of blocks... * XXX: That seems to be only a limitation of ext4_mb_normalize_request(). - * The rest of mballoc seems to handle chunks upto full group size. + * The rest of mballoc seems to handle chunks up to full group size. */ #define MAX_WRITEPAGES_EXTENT_LEN 2048 @@ -2026,7 +2026,7 @@ static int mpage_map_and_submit_buffers(struct mpage_da_data *mpd) if (page->index > end) break; - /* Upto 'end' pages must be contiguous */ + /* Up to 'end' pages must be contiguous */ BUG_ON(page->index != start); bh = head = page_buffers(page); do { @@ -2219,7 +2219,7 @@ static int mpage_map_and_submit_extent(handle_t *handle, /* * Calculate the total number of credits to reserve for one writepages * iteration. This is called from ext4_writepages(). We map an extent of - * upto MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping + * up to MAX_WRITEPAGES_EXTENT_LEN blocks and then we go on and finish mapping * the last partial page. So in total we can map MAX_WRITEPAGES_EXTENT_LEN + * bpp - 1 blocks in bpp different extents. */ @@ -2410,7 +2410,7 @@ static int ext4_writepages(struct address_space *mapping, if (ext4_should_dioread_nolock(inode)) { /* - * We may need to convert upto one extent per block in + * We may need to convert up to one extent per block in * the page and we may dirty the inode. */ rsv_blocks = 1 + (PAGE_CACHE_SIZE >> inode->i_blkbits); diff --git a/fs/ext4/migrate.c b/fs/ext4/migrate.c index 49e8bdf..bc178f8 100644 --- a/fs/ext4/migrate.c +++ b/fs/ext4/migrate.c @@ -494,7 +494,7 @@ int ext4_ext_migrate(struct inode *inode) * superblock modification. * * For the tmp_inode we already have committed the - * trascation that created the inode. Later as and + * transaction that created the inode. Later as and * when we add extents we extent the journal */ /*