Ignore:
Timestamp:
2006-12-09T20:20:50Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b82a13c
Parents:
9ab9c2ec
Message:

Rework support for virtually indexed cache.
Instead of repeatedly flushing the data cache, which was a huge overkill, refuse to create an illegal address alias
in the kernel (again) and allocate appropriate page color in userspace instead. Extend the detection also to
SYS_PHYSMEM_MAP syscall.

Add support for tracking physical memory areas mappable by SYS_PHYSMEM_MAP.

Lots of coding style changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/include/mm/cache.h

    r9ab9c2ec rf8ddd17  
    3636#define KERN_sparc64_CACHE_H_
    3737
    38 #ifdef CONFIG_SMP
    39 extern void dcache_shootdown_start(void);
    40 extern void dcache_shootdown_finalize(void);
    41 extern void dcache_shootdown_ipi_recv(void);
    42 #else /* CONFIG_SMP */
    43 #define dcache_shootdown_start();
    44 #define dcache_shootdown_finalize();
    45 #define dcache_shootdown_ipi_recv();
    46 #endif /* CONFIG_SMP */
    47 
    4838extern void dcache_flush(void);
    4939
Note: See TracChangeset for help on using the changeset viewer.