- 论坛徽章:
- 0
|
PS:对于大多数的icache来说,都是VIPT的,所以不会在第4步进程切换时刷icache。
终于找到一处刷icache的地方:
当__do_fault执行完vma->vm_ops->fault(vma, &vmf); 即filemap_fault,将代码段数据从nand flash读到
page cache后,在设置页表前有一句flush_icache_page(vma, page);- /* Only go through if we didn't race with anybody else... */
- if (likely(pte_same(*page_table, orig_pte))) {
- flush_icache_page(vma, page);
- entry = mk_pte(page, vma->vm_page_prot);
- if (flags & FAULT_FLAG_WRITE)
- entry = maybe_mkwrite(pte_mkdirty(entry), vma);
- if (anon) {
- inc_mm_counter(mm, anon_rss);
- page_add_new_anon_rmap(page, vma, address);
- } else {
- inc_mm_counter(mm, file_rss);
- page_add_file_rmap(page);
- if (flags & FAULT_FLAG_WRITE) {
- dirty_page = page;
- get_page(dirty_page);
- }
- }
- set_pte_at(mm, address, page_table, entry);
- /* no need to invalidate: a not-present page won't be cached */
- update_mmu_cache(vma, address, entry);
复制代码 但是在我们的mips架构里,flush_icache_page回调是空操作。
但是内核的cachetlb.txt文档又说,这个函数不需要执行什么:- void flush_icache_page(struct vm_area_struct *vma, struct page *page) All the functionality of flush_icache_page can be implemented in flush_dcache_page and update_mmu_cache. In 2.7 the hope is to
- remove this interface completely.
复制代码 难道还有其他地方会在缺页后刷icache么 |
|