From patchwork Sat Jul 6 14:31:42 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 11033789 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id C4FF9138D for ; Sat, 6 Jul 2019 14:34:53 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B094A20501 for ; Sat, 6 Jul 2019 14:34:53 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9FAB4284FC; Sat, 6 Jul 2019 14:34:53 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 352FC20501 for ; Sat, 6 Jul 2019 14:34:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726683AbfGFOew (ORCPT ); Sat, 6 Jul 2019 10:34:52 -0400 Received: from mail.kernel.org ([198.145.29.99]:44470 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726177AbfGFOew (ORCPT ); Sat, 6 Jul 2019 10:34:52 -0400 Received: from localhost (unknown [49.207.57.195]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id BE17620828; Sat, 6 Jul 2019 14:34:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1562423691; bh=LuMsXodBcIYO5eNJy1UWIhFx12cvKxOlb5oy7Fbn6K8=; h=Date:From:To:Cc:Subject:From; b=YJp27jL9evkZ2rCFcpAZRgbPh8U/ewi1VMH6aTN/QGrPYvyGUNFuitS/DJu/J7GM1 c+OHKldgJpCh2OoBvNfnXmZUc3SP8Ht2hg/NMI8b+uh0OOyyClDatBVzwLm3rg/hEw 8DDSLGifaCYbSTC3iIFfX/4jcnEEIPPOt++qRHu8= Date: Sat, 6 Jul 2019 20:01:42 +0530 From: Vinod Koul To: Linus Torvalds Cc: dma , LKML Subject: [GIT PULL] dmaengine fixes for 5.2 Message-ID: <20190706143142.GG2911@vkoul-mobl> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.11.3 (2019-02-01) Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Linus, Couple for fixes came for dmaengine drivers. One fixes a patch in 5.2-rc1 and others and cced stable. Please pull to receive: The following changes since commit d1fdb6d8f6a4109a4263176c84b899076a5f8008: Linux 5.2-rc4 (2019-06-08 20:24:46 -0700) are available in the Git repository at: git://git.infradead.org/users/vkoul/slave-dma.git tags/dmaengine-fix-5.2 for you to fetch changes up to f6034225442c4a87906d36e975fd9e99a8f95487: dmaengine: qcom: bam_dma: Fix completed descriptors count (2019-07-05 13:18:27 +0530) ---------------------------------------------------------------- dmaengine fixes for v5.2 The fixes for 5.2 are: - bam_dma fix for completed descriptor count - fix for imx-sdma remove BD_INTR for channel0 and use-after-free on probe error path - endian bug fix in jz4780 IRQ handler ---------------------------------------------------------------- Dan Carpenter (1): dmaengine: jz4780: Fix an endian bug in IRQ handler Robin Gong (1): dmaengine: imx-sdma: remove BD_INTR for channel0 Sricharan R (1): dmaengine: qcom: bam_dma: Fix completed descriptors count Sven Van Asbroeck (1): dmaengine: imx-sdma: fix use-after-free on probe error path drivers/dma/dma-jz4780.c | 5 +++-- drivers/dma/imx-sdma.c | 52 ++++++++++++++++++++++++++-------------------- drivers/dma/qcom/bam_dma.c | 3 +++ 3 files changed, 35 insertions(+), 25 deletions(-) Thanks