All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 1/3] fs: befs: Move useless assignment
@ 2016-05-25 23:49 Salah Triki
  2016-05-25 23:49 ` [PATCH V2 2/3] fs: befs: Check silent flag before logging errors Salah Triki
  2016-05-25 23:49 ` [PATCH V2 3/3] fs: befs: Remove useless pr_err Salah Triki
  0 siblings, 2 replies; 3+ messages in thread
From: Salah Triki @ 2016-05-25 23:49 UTC (permalink / raw)
  To: akpm, joe; +Cc: Salah Triki, linux-kernel

Control is transfered to unacquire_none when sb->s_fs_info is equal to NULL,
so the assignment to NULL is useless and it is moved above unacquire_none.

Signed-off-by: Salah Triki <salah.triki@acm.org>
---
 fs/befs/linuxvfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index 7da05b1..75ec9a7 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -870,9 +870,9 @@ befs_fill_super(struct super_block *sb, void *data, int silent)
       unacquire_priv_sbp:
 	kfree(befs_sb->mount_opts.iocharset);
 	kfree(sb->s_fs_info);
+	sb->s_fs_info = NULL;
 
       unacquire_none:
-	sb->s_fs_info = NULL;
 	return ret;
 }
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-26  0:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-25 23:49 [PATCH V2 1/3] fs: befs: Move useless assignment Salah Triki
2016-05-25 23:49 ` [PATCH V2 2/3] fs: befs: Check silent flag before logging errors Salah Triki
2016-05-25 23:49 ` [PATCH V2 3/3] fs: befs: Remove useless pr_err Salah Triki

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.