From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (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 0E84747DD57; Tue, 5 May 2026 13:51:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777989109; cv=none; b=LMr6h0cfPPR/mnQngw9ya0KR+FsPp7lhbywnj24xZsreS9JbF+StuLsoNbLKFi6YYKqRitXpK/TW+w+FqGn0WDTH7Rr8gKhTFsqU+gzyKUEe5F1d3FRhI8YcbHx+HOu7LV6wyR3Aln9FhnEitXut5JJUwS9aBh7Q3ELe1s1e6ys= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777989109; c=relaxed/simple; bh=xo5umndcEyLGiWOJhHMf9q3v4XEGsmwU7lViijkWpXM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=uWS0AC3B+NSazl8G/gjS7b4GS5W4138CvKEdWlIjgkSlsSwWCTZhitGehCKhwdXtUqZy6MnY6kUw54lj+2XG6cgDWV75TKzJ59x0/5XkiqzZrX4Tr7AjHKTg1RJmXDsNjWZcQlUKxkRY/m762XmOeRLrSspg/Eh9JZ0OnyLk9eM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=dltLJJY9; arc=none smtp.client-ip=185.246.85.4 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="dltLJJY9" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-03.galae.net (Postfix) with ESMTPS id 48D7D4E42BC9; Tue, 5 May 2026 13:51:46 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id EA4576053C; Tue, 5 May 2026 13:51:45 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 47E0411AD0190; Tue, 5 May 2026 15:51:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1777989105; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=xo5umndcEyLGiWOJhHMf9q3v4XEGsmwU7lViijkWpXM=; b=dltLJJY95nTFBOjhnhLmFVlYQMKVPbsLzwwbT8GLD4la63Nvrirx7k7dZ/oZHPVo+q4Y4l RRg66/ed60XEZZgEIzIgjjHYAepLfvRJxwSPvkyWe/I+hh1F6bspOJDTx4Q8jho8zXoGO4 GQ1bvcQBpxuud1GES7Eq5/fg9CnWW2NdgOVdMGusW4NQmujr0HkJn3mPbiGiMWF9HBpsUg ZrOB10stqv1DjM+1AXWsSzdBjl4vfBRTK16EpxfkwYRZbVa8YPSx2TJ7dKoHqwbYzTy4uO WfjJx1k/m4/Ig4XyQ1th9yghakZdGq7cdWMYbUI/hFckfw8eZ6udrbmpoCCYQA== From: =?UTF-8?B?QmVub8OudA==?= Monin To: Frank Li Cc: Vinod Koul , Thomas Petazzoni , Frank Li , imx@lists.linux.dev, dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH RFC 1/2] dmaengine: fsl-edma: Implement device_prep_peripheral_dma_vec Date: Tue, 05 May 2026 15:51:43 +0200 Message-ID: In-Reply-To: References: <20260430-fsl-edma-dyn-sg-v1-0-4e0ecbe2df66@bootlin.com> <20260430-fsl-edma-dyn-sg-v1-1-4e0ecbe2df66@bootlin.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Last-TLS-Session-Version: TLSv1.3 On Monday, 4 May 2026 at 17:58:08 CEST, Frank Li wrote: > On Thu, Apr 30, 2026 at 11:49:32AM +0200, Beno=C3=AEt Monin wrote: > > Add implementation of .device_prep_peripheral_dma_vec() callback to set= up > > a scatter/gather DMA transfer from an array of dma_vec structures. Setup > > a cyclic transfer if the DMA_PREP_REPEAT flag is set. > > > > Signed-off-by: Beno=C3=AEt Monin > > --- >=20 > Please remove RFC for this patch. >=20 Ok, will do. Best regards, =2D-=20 Beno=C3=AEt Monin, Bootlin Embedded Linux and Kernel engineering https://bootlin.com