public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] s390/protvirt: fix error return code in uv_info_init()
@ 2021-04-07 12:38 zhongbaisong
  2021-04-07 12:45 ` weiyongjun (A)
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: zhongbaisong @ 2021-04-07 12:38 UTC (permalink / raw)
  To: Christian Borntraeger, Janosch Frank, Vasily Gorbik,
	Heiko Carstens
  Cc: kvm, linux-s390, kernel-janitors, zhongbaisong

Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Baisong Zhong <zhongbaisong@huawei.com>
---
  arch/s390/kernel/uv.c | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/s390/kernel/uv.c b/arch/s390/kernel/uv.c
index cbfbeab57c3b..370f664580af 100644
--- a/arch/s390/kernel/uv.c
+++ b/arch/s390/kernel/uv.c
@@ -460,8 +460,10 @@ static int __init uv_info_init(void)
  		goto out_kobj;

  	uv_query_kset = kset_create_and_add("query", NULL, uv_kobj);
-	if (!uv_query_kset)
+	if (!uv_query_kset) {
+		rc = -ENOMEM;
  		goto out_ind_files;
+	}

  	rc = sysfs_create_group(&uv_query_kset->kobj, &uv_query_attr_group);
  	if (!rc)


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

end of thread, other threads:[~2021-04-13 14:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-07 12:38 [PATCH -next] s390/protvirt: fix error return code in uv_info_init() zhongbaisong
2021-04-07 12:45 ` weiyongjun (A)
2021-04-07 12:48 ` weiyongjun (A)
2021-04-07 13:06   ` Heiko Carstens
2021-04-13 14:15 ` Dan Carpenter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox