flush_page_to_ram() question in kernel/ptrace.c

Manfred Spraul (manfred@colorfullife.com)
Thu, 08 Mar 2001 21:00:40 +0100


> flush_cache_page(vma, addr);
>
> if (write) {
> maddr = kmap(page);
> memcpy(maddr + (addr & ~PAGE_MASK), buf, len);
> flush_page_to_ram(page);
> flush_icache_page(vma, page);
> kunmap(page);
> } else {
> maddr = kmap(page);
> memcpy(buf, maddr + (addr & ~PAGE_MASK), len);
> flush_page_to_ram(page);
^^^^^^^^^^^^^^^^^^^^^^
> kunmap(page);
> }

Is this flush required?

The memcpy read from the mapping, it didn't write.

--
	Manfred
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/