From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 5BDEE1C84B8; Mon, 26 Jan 2026 19:47:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769456822; cv=none; b=eukYBKs/xguNw1pYioGaWibdT2/ydWhFlRPYEPUNn4xyWy+uSpSvqpMyTZlOuhq/BkUg17pKqDkk1ZIfFZnVvO7YbKF9maUQIsPyv2JWQ2EKQ5Az2GxIPropoiqDDoFIL4eWevZdwtcR9v2Mr5vbPDpR/Fa1tJwMG65fnPpLBCM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769456822; c=relaxed/simple; bh=Ej4YkzeRliwgjkiZomTLy1mKyJSW8sQlElSDBlVVbYo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=UDhoWF+Sq3cRcelQiiDVjM7pnNvdb/hLVoIbTIphzlOExP7sgIbzfk3X3j2jLCuF/9y4E3kUAqXu5cMKtBVvdbzEyYpL5aB/7X9LNWMbHY5Ay76X//lIhnhAXkPkN9mC/ySoA5vkPeh1j9S/3becsQYB2hpaJl8PF34eBf2TAhQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=jcTXllhu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="jcTXllhu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 09EBAC2BC86; Mon, 26 Jan 2026 19:47:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769456822; bh=Ej4YkzeRliwgjkiZomTLy1mKyJSW8sQlElSDBlVVbYo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jcTXllhu4mqX9VySexWU2ilHKDmSjg60/rJfNAYZ//oRDUNylK7eEFYLBzcHDctMB 2QLq+w3IWDFmiMkzloRwD92rT59s+jn86KAmNqNoqFmUxsRZ+23mgnzuuLKhcKbpsR Mtkz2LUiCzotWaSfVBJ7BRDYYKvXFYpeBpnVmDMDdceJD6pV+LWobMxCHlr33iWwEX cujHXGy59iO1ASmbavq2N5/r6R0LqdPGZeKrECVorGdFb4W08T6fch8denoGJD6k+m e36Ljpu/hpoVFk2rqTctV/XspGyQsgBm0zGNGPl4d5Z2DVRyYFFmEfXzrFIPPq3UI9 8fMw3LVoLRUOQ== Date: Mon, 26 Jan 2026 21:46:55 +0200 From: Leon Romanovsky To: Carlos Bilbao Cc: mustafa.ismail@intel.com, shiraz.saleem@intel.com, jgg@ziepe.ca, bilbao@vt.edu, linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org, carlos.bilbao@kernel.org Subject: Re: [PATCH] RDMA/irdma: Use kvzalloc for paged memory DMA address array Message-ID: <20260126194655.GN13967@unreal> References: <70f5170f-70eb-4244-9049-a994ec503ac6@lambdal.com> Precedence: bulk X-Mailing-List: linux-rdma@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: <70f5170f-70eb-4244-9049-a994ec503ac6@lambdal.com> On Wed, Jan 21, 2026 at 10:54:36AM -0800, Carlos Bilbao wrote: > Allocate array chunk->dmainfo.dmaaddrs using kvzalloc() to allow the > allocation to fall back to vmalloc when contiguous memory is unavailable > (instead of failing and logging page allocation warnings). > > Signed-off-by: Carlos Bilbao (Lambda) > --- > drivers/infiniband/hw/irdma/utils.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) This patch doesn't apply to rdma/for-next. Thanks