Changeset 2057572 in mainline for uspace/libc/generic/mman.c


Ignore:
Timestamp:
2007-03-27T23:40:25Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
399ece9
Parents:
8d37a06
Message:

The Ultimate Solution To Illegal Virtual Aliases.
It is better to avoid them completely than to fight them.
Switch the sparc64 port to 16K pages. The TLBs and TSBs
continue to operate with 8K pages only. Page tables and
other generic parts operate with 16K pages.

Because the MMU doesn't support 16K directly, each 16K
page is emulated by a pair of 8K pages. With 16K pages,
illegal aliases cannot be created in 16K D-cache.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/generic/mman.c

    r8d37a06 r2057572  
    3737#include <unistd.h>
    3838
    39 void *mmap(void  *start, size_t length, int prot, int flags, int fd, off_t offset)
     39void *mmap(void  *start, size_t length, int prot, int flags, int fd,
     40    off_t offset)
    4041{
    4142        if (!start)
    42                 start = as_get_mappable_page(length, 0);
     43                start = as_get_mappable_page(length);
    4344       
    4445//      if (! ((flags & MAP_SHARED) ^ (flags & MAP_PRIVATE)))
Note: See TracChangeset for help on using the changeset viewer.