提交 53e73d10 编写于 作者: Z ZhangXiaoxu 提交者: Greg Kroah-Hartman

dm space map metadata: fix missing store of apply_bops() return value

commit ae148243d3f0816b37477106c05a2ec7d5f32614 upstream.

In commit 6096d91a ("dm space map metadata: fix occasional leak
of a metadata block on resize"), we refactor the commit logic to a new
function 'apply_bops'.  But when that logic was replaced in out() the
return value was not stored.  This may lead out() returning a wrong
value to the caller.

Fixes: 6096d91a ("dm space map metadata: fix occasional leak of a metadata block on resize")
Cc: stable@vger.kernel.org
Signed-off-by: NZhangXiaoxu <zhangxiaoxu5@huawei.com>
Signed-off-by: NMike Snitzer <snitzer@redhat.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 2cff6c87
...@@ -249,7 +249,7 @@ static int out(struct sm_metadata *smm) ...@@ -249,7 +249,7 @@ static int out(struct sm_metadata *smm)
} }
if (smm->recursion_count == 1) if (smm->recursion_count == 1)
apply_bops(smm); r = apply_bops(smm);
smm->recursion_count--; smm->recursion_count--;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册