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 ABE2A405F7; Tue, 25 Aug 2026 08:06:50 +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=1787645212; cv=none; b=lJTv4ID3TEDW0Fvx85+fEdH5vGp9ZZ5kGKSSdpp43qFrVxfscuswV8mYLJ45OguNmbGM2yjmoMODsWmRrQIpUz36QiG0aOb/uPNJuwhMY4d+chcWpUPCfpVmSuXdF2QXk9aRpEhjKwi0F8/p74yLsMnfdcqmFzN7N+VsM57yQTQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787645212; c=relaxed/simple; bh=fku8mT5CTojEm0xjC0tMwvQo9/MGOJMPmye8CqKK9Cg=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=OCVbZhnchYnupHrB/AWrC4kVuH+cJ74aoLHCcKiRIDgmjS/bTgGZL55O8Tj4BSu0oJa3LWUZxwgCanBwBmXAVmn6PB0n2Ov/lnbY48A9QFtsM4BYwDisFSmNKz0WDN5s5IK6DmWC16GBGdPOPcvhGyYSKhKZpEpNVwEv3AI5u5k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zAxUb/CM; 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="zAxUb/CM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 558B61F000E9; Tue, 25 Aug 2026 08:06:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787645210; bh=Qk19f2Gocsw56qpwtKZeRfi8m6D7gc3Py3XDq9fatEY=; h=Subject:To:Cc:From:Date; b=zAxUb/CMALV9AuWAx0YHxQNe9rJCqiAHLiN87UuM4/EcPQ5wAwEB+3oGE7TVnYwjA ZZ1HTmeeVZg1zgCgqbOJEP8WqwuIoYRXdS/RggWtdfbUIdEWDhUbhGhILjfFhfXtrv 6GDWcMLjmHxFtNQijikpj04OU934Pi9YQxbT5+qg= Subject: Patch "dmaengine: fsl-edma: Add error handling for devm_kasprintf" has been added to the 7.2-stable tree To: Frank.Li@nxp.com,gregkh@linuxfoundation.org,griffin@kroah.com,imx@lists.linux.dev,stable@kernel.org,vkoul@kernel.org Cc: From: Date: Tue, 25 Aug 2026 10:06:45 +0200 Message-ID: <2026082545-linked-skyward-2464@gregkh> Precedence: bulk X-Mailing-List: imx@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit X-stable: commit X-Patchwork-Hint: ignore This is a note to let you know that I've just added the patch titled dmaengine: fsl-edma: Add error handling for devm_kasprintf to the 7.2-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: dmaengine-fsl-edma-add-error-handling-for-devm_kasprintf.patch and it can be found in the queue-7.2 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >From bf1af4dfdc017dfe989c0dbcf0e608dc95f1d2cb Mon Sep 17 00:00:00 2001 From: Griffin Kroah-Hartman Date: Mon, 6 Jul 2026 16:57:06 +0200 Subject: dmaengine: fsl-edma: Add error handling for devm_kasprintf From: Griffin Kroah-Hartman commit bf1af4dfdc017dfe989c0dbcf0e608dc95f1d2cb upstream. Add error handling statement to fls_edma3_irq_init() for the devm_kasprintf call. Assisted-by: gkh_clanker_2000 Cc: stable Cc: Frank Li Cc: Vinod Koul Cc: imx@lists.linux.dev Signed-off-by: Griffin Kroah-Hartman Signed-off-by: Greg Kroah-Hartman Reviewed-by: Frank Li Link: https://patch.msgid.link/2026070605-frying-fling-b9c5@gregkh Signed-off-by: Vinod Koul Signed-off-by: Greg Kroah-Hartman --- drivers/dma/fsl-edma-main.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/dma/fsl-edma-main.c +++ b/drivers/dma/fsl-edma-main.c @@ -414,6 +414,8 @@ static int fsl_edma3_irq_init(struct pla errirq_name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "%s-err", dev_name(&pdev->dev)); + if (!errirq_name) + return -ENOMEM; ret = devm_request_irq(&pdev->dev, fsl_edma->errirq, fsl_edma3_err_handler_shared, 0, errirq_name, fsl_edma); Patches currently in stable-queue which might be from griffin@kroah.com are queue-7.2/mailbox-mchp-ipc-sbi-add-null-check-for-devm_kasprintf.patch queue-7.2/rndis_host-add-overflow-check-in-rndis_rx_fixup.patch queue-7.2/dmaengine-fsl-edma-add-error-handling-for-devm_kasprintf.patch