Message ID | 20220221084915.795234345@linuxfoundation.org |
---|---|
State | Superseded |
Headers | show
Return-Path: <stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 123EFC433F5 for <stable@archiver.kernel.org>; Mon, 21 Feb 2022 09:03:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346950AbiBUJDk (ORCPT <rfc822;stable@archiver.kernel.org>); Mon, 21 Feb 2022 04:03:40 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:39484 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348369AbiBUJCm (ORCPT <rfc822;stable@vger.kernel.org>); Mon, 21 Feb 2022 04:02:42 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B6599237D3; Mon, 21 Feb 2022 00:58:01 -0800 (PST) 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 ams.source.kernel.org (Postfix) with ESMTPS id 4C78FB80EB7; Mon, 21 Feb 2022 08:58:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6CEB2C340EB; Mon, 21 Feb 2022 08:57:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1645433879; bh=tP5CUsGrhz28rz/+xDcgKWdz9OnlZ9AuyjX1ULukau8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ePdri9BITk0EYeCSdYMNwnYBAVQRZ8LdnFpFIq0q8M8Yn7RYMQi4aErxgUQDI+YqA TjVX1u/rr9OzsBQyvEMnYNhEwq/NYF6nzY90a0T3/gh8tTSN1VkqgAMES2cTGJUteD q7S15HW+51zIR4RCSUw1F4K2UbbYL6xlRduvMU/U= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Rolf Eike Beer <eike-kernel@sf-tec.de>, John David Anglin <dave.anglin@bell.net>, Helge Deller <deller@gmx.de> Subject: [PATCH 5.4 06/80] parisc: Fix data TLB miss in sba_unmap_sg Date: Mon, 21 Feb 2022 09:48:46 +0100 Message-Id: <20220221084915.795234345@linuxfoundation.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220221084915.554151737@linuxfoundation.org> References: <20220221084915.554151737@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/drivers/parisc/sba_iommu.c +++ b/drivers/parisc/sba_iommu.c @@ -1047,7 +1047,7 @@ sba_unmap_sg(struct device *dev, struct spin_unlock_irqrestore(&ioc->res_lock, flags); #endif - while (sg_dma_len(sglist) && nents--) { + while (nents && sg_dma_len(sglist)) { sba_unmap_page(dev, sg_dma_address(sglist), sg_dma_len(sglist), direction, 0); @@ -1056,6 +1056,7 @@ sba_unmap_sg(struct device *dev, struct ioc->usingle_calls--; /* kluge since call is unmap_sg() */ #endif ++sglist; + nents--; } DBG_RUN_SG("%s() DONE (nents %d)\n", __func__, nents);