Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1468027 > unrolled thread

[PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails

Started byQuorum Laval <quorum.laval@gmail.com>
First post2016-08-22 22:30 +0200
Last post2016-08-23 19:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails Quorum Laval <quorum.laval@gmail.com> - 2016-08-22 22:30 +0200
    Re: [PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails Dave Kleikamp <dave.kleikamp@oracle.com> - 2016-08-23 19:20 +0200

#1468027 — [PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails

FromQuorum Laval <quorum.laval@gmail.com>
Date2016-08-22 22:30 +0200
Subject[PATCH 1/2] jfs: Jump to error_out when filemap_fdatawait fails
Message-ID<s9413-2Ex-15@gated-at.bofh.it>
filemap_fdatawait may fail, 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 90b3bc2..b0322da 100644
--- a/fs/jfs/resize.c
+++ b/fs/jfs/resize.c
@@ -379,7 +379,10 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
 	 * cached in meta-data cache, and not written out
 	 * by txCommit();
 	 */
-	filemap_fdatawait(ipbmap->i_mapping);
+	rc = filemap_fdatawait(ipbmap->i_mapping);
+	if (rc)
+		goto error_out;
+
 	filemap_write_and_wait(ipbmap->i_mapping);
 	diWriteSpecial(ipbmap, 0);
 
-- 
1.9.1

[toc] | [next] | [standalone]


#1468726

FromDave Kleikamp <dave.kleikamp@oracle.com>
Date2016-08-23 19:20 +0200
Message-ID<s9nwJ-6Yb-1@gated-at.bofh.it>
In reply to#1468027
On 08/22/2016 03:28 PM, Quorum Laval wrote:
> filemap_fdatawait may fail, so check the return value and jump to
> error_out in the case of error.
> 
> Signed-off-by: Quorum Laval <quorum.laval@gmail.com>

These look good, but I don't see why these shouldn't be combined into a
single patch.

Thanks,
Dave

> ---
>  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 90b3bc2..b0322da 100644
> --- a/fs/jfs/resize.c
> +++ b/fs/jfs/resize.c
> @@ -379,7 +379,10 @@ int jfs_extendfs(struct super_block *sb, s64 newLVSize, int newLogSize)
>  	 * cached in meta-data cache, and not written out
>  	 * by txCommit();
>  	 */
> -	filemap_fdatawait(ipbmap->i_mapping);
> +	rc = filemap_fdatawait(ipbmap->i_mapping);
> +	if (rc)
> +		goto error_out;
> +
>  	filemap_write_and_wait(ipbmap->i_mapping);
>  	diWriteSpecial(ipbmap, 0);
>  
> 

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web