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 5D1B13DAACB; Tue, 25 Aug 2026 08:08:29 +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=1787645316; cv=none; b=AbcZ0kRIqFTWTmYs94EucyEVozFF5Pt0ESYAkgDyQKbqa6Gt+Xekb77Ah9b4Ict1PZ4Ap4L0lX8OnyjY+PmhVdegfwlrTvkpa4NsHs4wET5ZbVvCyHPLELR5gsj7BMkQ3pUMWVKUtN39c8yZkqsF4dvO6Ik7eFzO2Ta8Hi0lbgg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787645316; c=relaxed/simple; bh=QBAsuMSbabBKD7Cd2StD5n6QuYl0K2/vSV16QdydJhg=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=BF5oSmw6lckVR7HsTs1XhTdeBj9pUZYFi4M8GRN5P7OCQ0oakFGhoM6y6kuYItB/G2+GCSelK1+V7jhwOCK7XPlUWIehwIrWj9z8+ghYdooSo8wyUE+aKohBqFjKwrBvvSzTNWw2gQycv1UwYDDHStj7Flq3SIEsXyOzvzlTHio= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=dfAEjzFG; 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="dfAEjzFG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 65F171F00A3A; Tue, 25 Aug 2026 08:08:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787645306; bh=kyLCHUoVIJQwDh9+7rrNPDgGV3VTDmvjMMCBxH0rKao=; h=Subject:To:Cc:From:Date; b=dfAEjzFGH0bXFBCdvRea6HtvmCg1DGQCbZtGg1zMH9pc2oCoyiR8hfZQm961WGt1l idlSEyGWHSFNr7/w08qZOpYsaefVNoL8WrovLWIGBvMxpCvdb3aHUfwuHSUtmrUYEU NkYNkHqnmNobHbbVCjhTr13DuT8+qxJwLZptBiN0= Subject: Patch "dmaengine: fsl-edma: Add error handling for devm_kasprintf" has been added to the 6.18-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:07:09 +0200 Message-ID: <2026082509-bladder-striving-d96f@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 6.18-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-6.18 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-6.18/mailbox-mchp-ipc-sbi-add-null-check-for-devm_kasprintf.patch queue-6.18/rndis_host-add-overflow-check-in-rndis_rx_fixup.patch queue-6.18/dmaengine-fsl-edma-add-error-handling-for-devm_kasprintf.patch