From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 71F883DA7E3 for ; Tue, 7 Jul 2026 10:06:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783418783; cv=none; b=ckmaCkAdn0jZ0s8Btr135UuBjrYkJCuhe6W5GTok2phg9QoigPD0ulp2JbVGDK8bnK2NfWVXWitCKRVJKFLGWTvzRc2xfgrnicCsJF3LqbLYyfG3f6tWwXtaLJSoGA1QeIZJWVCScyYy6yr+D7tocGQ8ZFVPdQs0VreN9JXxIDE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783418783; c=relaxed/simple; bh=g//9dV7RZ1b8FWE0TPECo9TnpXgW903L0bF7omz66lk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ZO1LWb4atkpJmsFXxF8LOfER655Oi7GsaByDD0hd/eG696N+rU0Wbv8/3p4s9irpty8jAzG71viUcu6kcGhqY+EBZmS3ZA7EPZsmps8YsoDRcXc8gBOjU9XW7sm4d1YB10X020WvV5mNtvPg34AXPPA1mfGJrPghAeMgVf5ByM0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=SWE9sV46; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="SWE9sV46" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9ADF21F00A3D; Tue, 7 Jul 2026 10:06:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1783418782; bh=pvT56We6OII4gCa09XC0o8JxpOM4txJkBO4dDgw7s3U=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=SWE9sV46gjxgI7DxUIy17yko2A1haViifWIN325CxOi6zkbWJHkVolnDAEkjzby/R TnHTNISmhuhe2ScFeIWtx21gp9eeCEFeHUJ/KVbPO4JdXbKpCjpnHeZf7pLAcgdam1 vluc5StKkm/xqeIcbdsDBhfWvwB13jK9vXqov14Q= Date: Tue, 7 Jul 2026 12:06:19 +0200 From: Greg KH To: Abhijit Gangurde Cc: nipun.gupta@amd.com, nikhil.agarwal@amd.com, linux-kernel@vger.kernel.org, michal.simek@amd.com, git@amd.com Subject: Re: [PATCH v99 1/1] One more fix Message-ID: <2026070712-composer-gray-bf35@gregkh> References: <20260707095555.3939295-1-abhijit.gangurde@amd.com> <20260707095555.3939295-13-abhijit.gangurde@amd.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260707095555.3939295-13-abhijit.gangurde@amd.com> On Tue, Jul 07, 2026 at 03:25:52PM +0530, Abhijit Gangurde wrote: > --- > drivers/infiniband/hw/ionic/ionic_controlpath.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/infiniband/hw/ionic/ionic_controlpath.c b/drivers/infiniband/hw/ionic/ionic_controlpath.c > index 1ed45e1dd98d..a635bb472826 100644 > --- a/drivers/infiniband/hw/ionic/ionic_controlpath.c > +++ b/drivers/infiniband/hw/ionic/ionic_controlpath.c > @@ -2845,8 +2845,10 @@ int ionic_create_srq(struct ib_srq *ibsrq, struct ib_srq_init_attr *attr, > > if (srq->rq.cmb & IONIC_CMB_ENABLE) { > ionic_rq_mmap_cmb(dev, ctx, &srq->rq, &resp.rq_cmb_offset); > - if (!srq->rq.mmap_cmb) > + if (!srq->rq.mmap_cmb) { > + rc = -ENOMEM; > goto err_mmap_rq; > + } > > resp.rq_cmb = srq->rq.cmb; > } > -- > 2.43.0 > Something went really wrong with this series :(