All of lore.kernel.org
 help / color / mirror / Atom feed
From: "majianpeng" <majianpeng@gmail.com>
To: Neil Brown <neilb@suse.de>
Cc: linux-raid <linux-raid@vger.kernel.org>
Subject: md: Return proper err if d_path error in get_bitmap_file.
Date: Wed, 29 Feb 2012 09:47:13 +0800	[thread overview]
Message-ID: <201202290947090008466@gmail.com> (raw)

From dd2c011a73a97b169e81bb6b8fc1b141a3812368 Mon Sep 17 00:00:00 2001
From: majianpeng <majianpeng@gmail.com>
Date: Wed, 29 Feb 2012 09:32:29 +0800
Subject: [PATCH] md: Return proper err if d_path error in get_bitmap_file.


Signed-off-by: majianpeng <majianpeng@gmail.com>
---
 drivers/md/md.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/md/md.c b/drivers/md/md.c
index ce88755..f2085ee 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -5427,8 +5427,10 @@ static int get_bitmap_file(struct mddev * mddev, void __user * arg)
 		goto out;
 
 	ptr = d_path(&mddev->bitmap->file->f_path, buf, sizeof(file->pathname));
-	if (IS_ERR(ptr))
+	if (IS_ERR(ptr)) {
+		err = PTR_ERR(ptr);
 		goto out;
+	}
 
 	strcpy(file->pathname, ptr);
 
-- 
1.7.5.4

 				
--------------
majianpeng
2012-02-29


                 reply	other threads:[~2012-02-29  1:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=201202290947090008466@gmail.com \
    --to=majianpeng@gmail.com \
    --cc=linux-raid@vger.kernel.org \
    --cc=neilb@suse.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.