Message ID | 20200305080639.3291-1-yuyufen@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fs: fix indentation in deactivate_super() | expand |
diff --git a/fs/super.c b/fs/super.c index cd352530eca9..7e3491b96e1d 100644 --- a/fs/super.c +++ b/fs/super.c @@ -361,7 +361,7 @@ EXPORT_SYMBOL(deactivate_locked_super); */ void deactivate_super(struct super_block *s) { - if (!atomic_add_unless(&s->s_active, -1, 1)) { + if (!atomic_add_unless(&s->s_active, -1, 1)) { down_write(&s->s_umount); deactivate_locked_super(s); }
Fix the breaked indent in deactive_super(). Signed-off-by: Yufen Yu <yuyufen@huawei.com> --- fs/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)