mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Boaz Harrosh <bharrosh@panasas.com>
To: Joe Perches <joe@perches.com>
Cc: Jiri Kosina <trivial@kernel.org>,
	Benny Halevy <bhalevy@panasas.com>,
	osd-dev@open-osd.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/9] fs/exofs: typo fix of faild to failed
Date: Sun, 24 Oct 2010 12:09:32 +0200	[thread overview]
Message-ID: <4CC405DC.7070507@panasas.com> (raw)
In-Reply-To: <517d9c755442feaa09d82fe484e94bc39f755507.1287724261.git.joe@perches.com>

On 10/22/2010 07:17 AM, Joe Perches wrote:
> Signed-off-by: Joe Perches <joe@perches.com>

Applied to osd/linux-next. I'll push it for 2.6.37

Thanks
Boaz

> ---
>  fs/exofs/dir.c   |    4 ++--
>  fs/exofs/inode.c |   14 +++++++-------
>  fs/exofs/ios.c   |   10 +++++-----
>  3 files changed, 14 insertions(+), 14 deletions(-)
> 
> diff --git a/fs/exofs/dir.c b/fs/exofs/dir.c
> index d91e9d8..dcc941d 100644
> --- a/fs/exofs/dir.c
> +++ b/fs/exofs/dir.c
> @@ -420,7 +420,7 @@ int exofs_set_link(struct inode *dir, struct exofs_dir_entry *de,
>  	err = exofs_write_begin(NULL, page->mapping, pos, len,
>  				AOP_FLAG_UNINTERRUPTIBLE, &page, NULL);
>  	if (err)
> -		EXOFS_ERR("exofs_set_link: exofs_write_begin FAILD => %d\n",
> +		EXOFS_ERR("exofs_set_link: exofs_write_begin FAILED => %d\n",
>  			  err);
>  
>  	de->inode_no = cpu_to_le64(inode->i_ino);
> @@ -556,7 +556,7 @@ int exofs_delete_entry(struct exofs_dir_entry *dir, struct page *page)
>  	err = exofs_write_begin(NULL, page->mapping, pos, to - from, 0,
>  							&page, NULL);
>  	if (err)
> -		EXOFS_ERR("exofs_delete_entry: exofs_write_begin FAILD => %d\n",
> +		EXOFS_ERR("exofs_delete_entry: exofs_write_begin FAILED => %d\n",
>  			  err);
>  	if (pde)
>  		pde->rec_len = cpu_to_le16(to - from);
> diff --git a/fs/exofs/inode.c b/fs/exofs/inode.c
> index 3eadd97..4460275 100644
> --- a/fs/exofs/inode.c
> +++ b/fs/exofs/inode.c
> @@ -511,7 +511,7 @@ static int write_exec(struct page_collect *pcol)
>  
>  	pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL);
>  	if (!pcol_copy) {
> -		EXOFS_ERR("write_exec: Faild to kmalloc(pcol)\n");
> +		EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n");
>  		ret = -ENOMEM;
>  		goto err;
>  	}
> @@ -527,7 +527,7 @@ static int write_exec(struct page_collect *pcol)
>  
>  	ret = exofs_oi_write(oi, ios);
>  	if (unlikely(ret)) {
> -		EXOFS_ERR("write_exec: exofs_oi_write() Faild\n");
> +		EXOFS_ERR("write_exec: exofs_oi_write() Failed\n");
>  		goto err;
>  	}
>  
> @@ -628,7 +628,7 @@ try_again:
>  		/* split the request, next loop will start again */
>  		ret = write_exec(pcol);
>  		if (unlikely(ret)) {
> -			EXOFS_DBGMSG("write_exec faild => %d", ret);
> +			EXOFS_DBGMSG("write_exec failed => %d", ret);
>  			goto fail;
>  		}
>  
> @@ -719,7 +719,7 @@ int exofs_write_begin(struct file *file, struct address_space *mapping,
>  		ret = simple_write_begin(file, mapping, pos, len, flags, pagep,
>  					 fsdata);
>  		if (ret) {
> -			EXOFS_DBGMSG("simple_write_begin faild\n");
> +			EXOFS_DBGMSG("simple_write_begin failed\n");
>  			goto out;
>  		}
>  
> @@ -732,7 +732,7 @@ int exofs_write_begin(struct file *file, struct address_space *mapping,
>  		if (ret) {
>  			/*SetPageError was done by _readpage. Is it ok?*/
>  			unlock_page(page);
> -			EXOFS_DBGMSG("__readpage_filler faild\n");
> +			EXOFS_DBGMSG("__readpage_filler failed\n");
>  		}
>  	}
>  out:
> @@ -1095,7 +1095,7 @@ static void create_done(struct exofs_io_state *ios, void *p)
>  	atomic_dec(&sbi->s_curr_pending);
>  
>  	if (unlikely(ret)) {
> -		EXOFS_ERR("object=0x%llx creation faild in pid=0x%llx",
> +		EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx",
>  			  _LLU(exofs_oi_objno(oi)), _LLU(sbi->layout.s_pid));
>  		/*TODO: When FS is corrupted creation can fail, object already
>  		 * exist. Get rid of this asynchronous creation, if exist
> @@ -1215,7 +1215,7 @@ static int exofs_update_inode(struct inode *inode, int do_sync)
>  
>  	args = kzalloc(sizeof(*args), GFP_KERNEL);
>  	if (!args) {
> -		EXOFS_DBGMSG("Faild kzalloc of args\n");
> +		EXOFS_DBGMSG("Failed kzalloc of args\n");
>  		return -ENOMEM;
>  	}
>  
> diff --git a/fs/exofs/ios.c b/fs/exofs/ios.c
> index 6550bf7..f74a2ec 100644
> --- a/fs/exofs/ios.c
> +++ b/fs/exofs/ios.c
> @@ -55,7 +55,7 @@ int exofs_read_kern(struct osd_dev *od, u8 *cred, struct osd_obj_id *obj,
>  
>  	ret = osd_finalize_request(or, 0, cred, NULL);
>  	if (unlikely(ret)) {
> -		EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", ret);
> +		EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n", ret);
>  		goto out;
>  	}
>  
> @@ -79,7 +79,7 @@ int exofs_get_io_state(struct exofs_layout *layout,
>  	 */
>  	ios = kzalloc(exofs_io_state_size(layout->s_numdevs), GFP_KERNEL);
>  	if (unlikely(!ios)) {
> -		EXOFS_DBGMSG("Faild kzalloc bytes=%d\n",
> +		EXOFS_DBGMSG("Failed kzalloc bytes=%d\n",
>  			     exofs_io_state_size(layout->s_numdevs));
>  		*pios = NULL;
>  		return -ENOMEM;
> @@ -172,7 +172,7 @@ static int exofs_io_execute(struct exofs_io_state *ios)
>  
>  		ret = osd_finalize_request(or, 0, ios->cred, NULL);
>  		if (unlikely(ret)) {
> -			EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n",
> +			EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n",
>  				     ret);
>  			return ret;
>  		}
> @@ -361,7 +361,7 @@ static int _add_stripe_unit(struct exofs_io_state *ios,  unsigned *cur_pg,
>  
>  		per_dev->bio = bio_kmalloc(GFP_KERNEL, bio_size);
>  		if (unlikely(!per_dev->bio)) {
> -			EXOFS_DBGMSG("Faild to allocate BIO size=%u\n",
> +			EXOFS_DBGMSG("Failed to allocate BIO size=%u\n",
>  				     bio_size);
>  			return -ENOMEM;
>  		}
> @@ -564,7 +564,7 @@ static int _sbi_write_mirror(struct exofs_io_state *ios, int cur_comp)
>  						  master_dev->bio->bi_max_vecs);
>  				if (unlikely(!bio)) {
>  					EXOFS_DBGMSG(
> -					      "Faild to allocate BIO size=%u\n",
> +					      "Failed to allocate BIO size=%u\n",
>  					      master_dev->bio->bi_max_vecs);
>  					ret = -ENOMEM;
>  					goto out;


  reply	other threads:[~2010-10-24 10:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-22  5:17 [PATCH 0/9] Typo fixes " Joe Perches
2010-10-22  5:17 ` [PATCH 1/9] drivers/ata: typo fix " Joe Perches
2010-10-22  5:17 ` [PATCH 2/9] drivers/gpu: " Joe Perches
2010-10-22  5:17 ` [PATCH 3/9] drivers/net: " Joe Perches
2010-10-22  5:17 ` [PATCH 4/9] drivers/rtc: " Joe Perches
2010-10-22  5:21   ` Wan ZongShun
2010-10-22  5:17 ` [PATCH 5/9] drivers/video: " Joe Perches
2010-10-22  5:17 ` [PATCH 6/9] fs/exofs: " Joe Perches
2010-10-24 10:09   ` Boaz Harrosh [this message]
2010-10-22  5:17 ` [PATCH 7/9] fs/jfs: " Joe Perches
2010-10-22  5:17 ` [PATCH 8/9] kernel/trace: " Joe Perches
2010-10-23 19:43   ` [tip:perf/urgent] tracing: Fix 'faild' -> 'failed' typo tip-bot for Joe Perches
2010-10-22  5:17 ` [PATCH 9/9] net/wanrouter: typo fix of faild to failed Joe Perches
2010-10-22 20:15 ` [PATCH 0/9] Typo fixes " Mike Frysinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CC405DC.7070507@panasas.com \
    --to=bharrosh@panasas.com \
    --cc=bhalevy@panasas.com \
    --cc=joe@perches.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=osd-dev@open-osd.org \
    --cc=trivial@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome