mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Quorum Laval <quorum.laval@gmail.com>
To: shaggy@kernel.org
Cc: Quorum Laval <quorum.laval@gmail.com>,
	jfs-discussion@lists.sourceforge.net,
	linux-kernel@vger.kernel.org
Subject: [PATCH 2/2] jfs: jump to error_out when filemap_write_and_wait fails
Date: Mon, 22 Aug 2016 21:29:00 +0100	[thread overview]
Message-ID: <bdf312b255ca8ae55eb68aafb6110a3d0d7d0275.1471896659.git.quorum.laval@gmail.com> (raw)
In-Reply-To: <997dc120ca508e8a2e757f201cca29f4dbee395d.1471896658.git.quorum.laval@gmail.com>
In-Reply-To: <997dc120ca508e8a2e757f201cca29f4dbee395d.1471896658.git.quorum.laval@gmail.com>

filemap_write_and_wait may fails, so check the return value and jump to
error_out in the case of error.

Signed-off-by: Quorum Laval <quorum.laval@gmail.com>
---
 fs/jfs/resize.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fs/jfs/resize.c b/fs/jfs/resize.c
index b0322da..bd9b641 100644
--- a/fs/jfs/resize.c
+++ b/fs/jfs/resize.c
@@ -383,7 +383,10 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
 	if (rc)
 		goto error_out;
 
-	filemap_write_and_wait(ipbmap->i_mapping);
+	rc = filemap_write_and_wait(ipbmap->i_mapping);
+	if (rc)
+		goto error_out;
+
 	diWriteSpecial(ipbmap, 0);
 
 	newPage = nPages;	/* first new page number */
-- 
1.9.1

  reply	other threads:[~2016-08-22 20:29 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-22 20:28 [PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails Quorum Laval
2016-08-22 20:29 ` Quorum Laval [this message]
2016-08-23 14:57 ` Dave Kleikamp

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=bdf312b255ca8ae55eb68aafb6110a3d0d7d0275.1471896659.git.quorum.laval@gmail.com \
    --to=quorum.laval@gmail.com \
    --cc=jfs-discussion@lists.sourceforge.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shaggy@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

all inboxes | Powered by JetHome®