From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 14D97C433FE for ; Mon, 7 Nov 2022 04:35:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=lhn7UXAIvi2qcU/zBYJsezu5if8G8Qrj1SeIJ3NtSpo=; b=39itG070JNy6Rw bxbGxSdyb8RxBeQIfXtXJPpgXj+k05vJO8nnkG02LpUHdp5FJJ31u/TbQuA+aqIJFeEPy3kRGpQGC sxF+9aqc5IP/97re+M+M7/V++OzUMtv6OoMfVldL9i1XXOjJjkH2eT73DRLvgLpQEoFWOfYjkqFGN /pXoXVd+iRu2Kf8fWQtFvWsYSrZJT93/FVgWgd5/jm43c3lJI6EoGBs9oxkyIlhlDGupAsGezHuCo w7EdPM22XKX3F2jEtH8+myYKaXr2XUnbsQIa4olau4mQGgXxFvnpe0M9luHVP2Xfe+6mBHZDeDRgU G//9hWhuZ7aIXgqAoFCg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ortpT-00Bd7N-MG; Mon, 07 Nov 2022 04:33:47 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ortpP-00Bd6v-Of for linux-arm-kernel@lists.infradead.org; Mon, 07 Nov 2022 04:33:45 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id EC56560DC5; Mon, 7 Nov 2022 04:33:40 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 74165C433D6; Mon, 7 Nov 2022 04:33:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1667795620; bh=XpKJPY3QlMzLiFW4RgPvo3K9iBcixDKpaA6o3IlYcYY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=E7vmUPp5u0A1cVtOcf0pen1xU42WlMSoPQ6CzM5TeNnUltJTdaJjPZP8+lyFP3Vo9 lRt0Il0OfwFSn5nQYz5tz3+IX0l9cHc8C2/qUyXz6ojbjGJO2tyG+WnzB80AlnqE/i nrEvQ78PAbqOYb8YyGutRb0slK0NhXDH94rt/iPLaQMuvNdHv5+tMN0W1ysjkbuwx7 tqEhLPGWcM2ulGf6WrZYuBsiatVNohje2fkt0lHAydOe8LPUDLh8olxQKLSWwzyc1s L8I406dHxuBTSeaWsNL40g4zGHe+Wqq9lpVkxwKScHpPnQcl8CuKepd+57cVlzx4PP ZsDSN/AoIZyrg== Date: Mon, 7 Nov 2022 10:03:35 +0530 From: Vinod Koul To: Tudor.Ambarus@microchip.com Subject: Re: [PATCH v2 00/32] dmaengine: at_hdmac: Fix concurrency bugs and then convert to virt-dma Message-ID: References: <20221025090306.297886-1-tudor.ambarus@microchip.com> <93048355-18a0-df4e-54ad-9c5955933109@microchip.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221106_203343_882568_A170304D X-CRM114-Status: GOOD ( 16.31 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-kernel@vger.kernel.org, maciej.sosnowski@intel.com, torfl6749@gmail.com, mripard@kernel.org, du@axentia.se, dmaengine@vger.kernel.org, peda@axentia.se, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 04-11-22, 23:29, Vinod Koul wrote: > On 04-11-22, 15:21, Tudor.Ambarus@microchip.com wrote: > > > > >> > > >> This does not apply on dmaengine-fixes, can you please rebase and resend > > >> > > > > > > Sure, I can, but on my side it applies just fine, both on the fixes and next > > > branches. I used git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git > > > Shall I use other tree? > > this is right tree, I was on fixes branch (for initial fixes) and i > think 7th or 8th one failed to apply for me... > > > > > $ git log --oneline > > 79029dc341c7 (HEAD, vkoul-dma/fixes) dmaengine: stm32-dma: fix potential race between pause and resume > > > > [cut] > > > > $ b4 am 20221025090306.297886-1-tudor.ambarus@microchip.com > > Looking up https://lore.kernel.org/r/20221025090306.297886-1-tudor.ambarus%40microchip.com > > Grabbing thread from lore.kernel.org/all/20221025090306.297886-1-tudor.ambarus%40microchip.com/t.mbox.gz > > Analyzing 37 messages in the thread > > Checking attestation on all messages, may take a moment... Okay grabbing the b4 version did the trick, no sure why my local one failed. I have applied these now. Thanks -- ~Vinod _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel