From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E9961C433EF for ; Thu, 2 Dec 2021 12:36:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347139AbhLBMja (ORCPT ); Thu, 2 Dec 2021 07:39:30 -0500 Received: from us-smtp-delivery-124.mimecast.com ([170.10.129.124]:40213 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1347121AbhLBMj3 (ORCPT ); Thu, 2 Dec 2021 07:39:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1638448566; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=aPVrsjQf9Zc5+fJj9treS5TwsyG4fPXfmipQNOvHQ3w=; b=Lw4IwRemICpIcp4z4W22CgeBRcZPvHbvE41E/+dSCajPhOwGeEo3qA3hLM1zDkC5oCXc20 uvnv8yLwzDVONmMaunOBtUe/7bhjnPsv7tCEdtEZzbSDjotMHRZB8+ZnzunICFZ4kt9oA9 nO8ssAFoflXu1KOc1SrwXGaOIybFlZs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-259-NNFGrOA1PseAAaixErHBCg-1; Thu, 02 Dec 2021 07:36:03 -0500 X-MC-Unique: NNFGrOA1PseAAaixErHBCg-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 62212192FDA2; Thu, 2 Dec 2021 12:36:02 +0000 (UTC) Received: from t480s.redhat.com (unknown [10.39.194.23]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1CDBB100AE22; Thu, 2 Dec 2021 12:35:59 +0000 (UTC) From: David Hildenbrand To: kvm@vger.kernel.org Cc: Thomas Huth , Janosch Frank , Christian Borntraeger , Claudio Imbrenda , Sebastian Mitterle , Halil Pasic , linux-s390@vger.kernel.org, David Hildenbrand Subject: [kvm-unit-tests PATCH v2 1/2] s390x: make smp_cpu_setup() return 0 on success Date: Thu, 2 Dec 2021 13:35:52 +0100 Message-Id: <20211202123553.96412-2-david@redhat.com> In-Reply-To: <20211202123553.96412-1-david@redhat.com> References: <20211202123553.96412-1-david@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Precedence: bulk List-ID: X-Mailing-List: linux-s390@vger.kernel.org Properly return "0" on success so callers can check if the setup was successful. The return value is yet unused, which is why this wasn't noticed so far. Reviewed-by: Thomas Huth Reviewed-by: Claudio Imbrenda Reviewed-by: Janosch Frank Signed-off-by: David Hildenbrand --- lib/s390x/smp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/s390x/smp.c b/lib/s390x/smp.c index da6d32f..b753eab 100644 --- a/lib/s390x/smp.c +++ b/lib/s390x/smp.c @@ -212,6 +212,7 @@ int smp_cpu_setup(uint16_t addr, struct psw psw) /* Wait until the cpu has finished setup and started the provided psw */ while (lc->restart_new_psw.addr != psw.addr) mb(); + rc = 0; out: spin_unlock(&lock); return rc; -- 2.31.1