提交 8aafcb59 编写于 作者: M Miklos Szeredi

ovl: use path_put_init() in error paths for ovl_fill_super()

This allows simplifying the error cleanup later.
Signed-off-by: NMiklos Szeredi <mszeredi@redhat.com>
上级 f121aade
......@@ -586,7 +586,7 @@ static int ovl_mount_dir_noesc(const char *name, struct path *path)
return 0;
out_put:
path_put(path);
path_put_init(path);
out:
return err;
}
......@@ -604,7 +604,7 @@ static int ovl_mount_dir(const char *name, struct path *path)
if (ovl_dentry_remote(path->dentry)) {
pr_err("overlayfs: filesystem on '%s' not supported as upperdir\n",
tmp);
path_put(path);
path_put_init(path);
err = -EINVAL;
}
kfree(tmp);
......@@ -656,7 +656,7 @@ static int ovl_lower_dir(const char *name, struct path *path,
return 0;
out_put:
path_put(path);
path_put_init(path);
out:
return err;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册