From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 2A6053E0C55 for ; Fri, 13 Mar 2026 19:35:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773430533; cv=none; b=PzUcJo99MErsHMZrENtTTyTNT8AwnUkZwAbB7Tk7XXRyTO89xMbLxuCaARmsPRRzKBmMfRojcMt730CflCpPmFV9Xlg+vEQnnnxjUlDzYcLTK/L8ggfWvqDJCxuhuNe2uX5d9ojrcizlP37Dy0OHY/A6ZPy2W3WbuctT8j74LfM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773430533; c=relaxed/simple; bh=8zCKLE27ZI9HLBciP9qvdAQ3kreiN+/juUMvT5BBn+U=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=nHBXy71t1q5XKD58Dkf9Ge8CBNDn2BcOwCwl5wM0DxuRmnx1rvmfCf+yqrkGVcveMyLvu0M9HvKBpBc2KXdX4snz5LTQFDAIlESDlrWmBW3UCWz9pea7VpLzEI7+BoGnQIKkGOuwgkDimTYNa3Dox2ucVDEjZKqbDAbrsBKZdBc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 18B7114BF; Fri, 13 Mar 2026 12:35:21 -0700 (PDT) Received: from arm.com (usa-sjc-mx-foss1.foss.arm.com [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id BD9503F694; Fri, 13 Mar 2026 12:35:24 -0700 (PDT) Date: Fri, 13 Mar 2026 19:35:22 +0000 From: Catalin Marinas To: Barry Song <21cnbao@gmail.com> Cc: m.szyprowski@samsung.com, robin.murphy@arm.com, will@kernel.org, iommu@lists.linux.dev, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Barry Song , Leon Romanovsky , Ada Couprie Diaz , Ard Biesheuvel , Marc Zyngier , Anshuman Khandual , Ryan Roberts , Suren Baghdasaryan , Tangquan Zheng , Xueyuan Chen Subject: Re: [PATCH v3 2/5] arm64: Provide dcache_clean_poc_nosync helper Message-ID: References: <20260228221125.59863-1-21cnbao@gmail.com> <20260228221239.59903-1-21cnbao@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260228221239.59903-1-21cnbao@gmail.com> On Sun, Mar 01, 2026 at 06:12:39AM +0800, Barry Song wrote: > From: Barry Song > > dcache_clean_poc_nosync does not wait for the data cache clean to > complete. Later, we wait for completion of all scatter-gather entries > together. > > Cc: Leon Romanovsky > Cc: Catalin Marinas > Cc: Will Deacon > Cc: Marek Szyprowski > Cc: Robin Murphy > Cc: Ada Couprie Diaz > Cc: Ard Biesheuvel > Cc: Marc Zyngier > Cc: Anshuman Khandual > Cc: Ryan Roberts > Cc: Suren Baghdasaryan > Cc: Tangquan Zheng > Tested-by: Xueyuan Chen > Signed-off-by: Barry Song Reviewed-by: Catalin Marinas