lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <56EFABD3.7060700@hisilicon.com>
Date:	Mon, 21 Mar 2016 16:07:47 +0800
From:	Chen Feng <puck.chen@...ilicon.com>
To:	<mark.rutland@....com>, <catalin.marinas@....com>
CC:	<akpm@...ux-foundation.org>, <mhocko@...e.com>,
	<linux-mm@...ck.org>, <linux-kernel@...r.kernel.org>,
	<labbott@...hat.com>, <xuyiping@...ilicon.com>,
	<suzhuangluan@...ilicon.com>, <saberlily.xia@...ilicon.com>,
	<dan.zhao@...ilicon.com>
Subject: Delete flush cache all in arm64 platform.

Hi Mark,

With 68234df4ea7939f98431aa81113fbdce10c4a84b
arm64: kill flush_cache_all()
The documented semantics of flush_cache_all are not possible to provide
for arm64 (short of flushing the entire physical address space by VA),
and there are currently no users; KVM uses VA maintenance exclusively,
cpu_reset is never called, and the only two users outside of arch code
cannot be built for arm64.

While cpu_soft_reset and related functions (which call flush_cache_all)
were thought to be useful for kexec, their current implementations only
serve to mask bugs. For correctness kexec will need to perform
maintenance by VA anyway to account for system caches, line migration,
and other subtleties of the cache architecture. As the extent of this
cache maintenance will be kexec-specific, it should probably live in the
kexec code.

This patch removes flush_cache_all, and related unused components,
preventing further abuse.


This patch delete the flush_cache_all interface.

But if we use VA to flush cache to do cache-coherency with other master(eg:gpu)

We must iterate over the sg-list to flush by va to pa.

In this way, the iterate of sg-list may cost too much time(sg-table to sg-list) if
the sglist is too long. Take a look at the ion_pages_sync_for_device in ion.

The driver(eg: ION) need to use this interface(flush cache all) to *improve the efficiency*.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ