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 191223DF00E for ; Fri, 13 Mar 2026 19:35:13 +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=1773430520; cv=none; b=Q3p7E+0UT39W82nGdY3HQKhTkmOssg7jsHM0H0J8r/n04yrZKnpwNzDQz6u8T+a29yDWMGjDIklji6/eGoNyP/1QPkgie4qziXT1P2jTDagB7RiQj1v7XzWZdKgREwjNysVBcykASOY5mO513Vhgu2q9zSnNEV/SDXdQk4Kaunc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773430520; c=relaxed/simple; bh=vl6yGQtIFFqkS3HANtV9j7uAw86OM2gFBTE+CJEzuS0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Fyq5xEcV0x7wD7pi/a1tVxaZZ2ncnenDMPfOnvK/gZ4zGBN7UD4Q5IoBDpNUXpT6vpcxh0KzNkoAylubYqDSL1ErPx5dCpdEbFXhXmOIr5AIOauaYLZOw7lnHQSfI3rKklbFAmksIn7TEVZ+Pnzku/UFhDM7T/IY/POB85BB7/8= 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 177FD1758; Fri, 13 Mar 2026 12:35:07 -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 BA6993F694; Fri, 13 Mar 2026 12:35:10 -0700 (PDT) Date: Fri, 13 Mar 2026 19:35:08 +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 1/5] arm64: Provide dcache_by_myline_op_nosync helper Message-ID: References: <20260228221125.59863-1-21cnbao@gmail.com> <20260228221216.59886-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: <20260228221216.59886-1-21cnbao@gmail.com> On Sun, Mar 01, 2026 at 06:12:16AM +0800, Barry Song wrote: > From: Barry Song > > dcache_by_myline_op ensures completion of the data cache operations for a > region, while dcache_by_myline_op_nosync only issues them without waiting. > This enables deferred synchronization so completion for multiple regions > can be handled together later. > > 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