Commit 8aafcb59 authored by Miklos Szeredi's avatar Miklos Szeredi
Browse files

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



This allows simplifying the error cleanup later.

Signed-off-by: default avatarMiklos Szeredi <mszeredi@redhat.com>
parent f121aade
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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;
}