Changeset 544a2e4 in mainline for kernel/test


Ignore:
Timestamp:
2011-05-30T21:37:43Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7b712b60
Parents:
18ba2e4f (diff), 0743493a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Location:
kernel/test
Files:
7 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/mm/mapping1.c

    r18ba2e4f r544a2e4  
    3535#include <typedefs.h>
    3636#include <debug.h>
     37#include <arch.h>
    3738
    3839#define PAGE0  0x10000000
     
    5859        *((uint32_t *) frame1) = VALUE1;
    5960       
     61        page_table_lock(AS, true);
     62
    6063        TPRINTF("Mapping virtual address %p to physical address %p.\n",
    6164            (void *) PAGE0, (void *) KA2PA(frame0));
     
    6568            (void *) PAGE1, (void *) KA2PA(frame1));
    6669        page_mapping_insert(AS_KERNEL, PAGE1, KA2PA(frame1), PAGE_PRESENT | PAGE_WRITE);
     70
     71        page_table_unlock(AS, true);
    6772       
    6873        v0 = *((uint32_t *) PAGE0);
  • kernel/test/test.c

    r18ba2e4f r544a2e4  
    4343#include <debug/mips1.def>
    4444#include <fault/fault1.def>
    45 #include <fpu/fpu1.def>
    46 #include <fpu/sse1.def>
    47 #include <fpu/mips2.def>
    4845#include <mm/falloc1.def>
    4946#include <mm/falloc2.def>
  • kernel/test/test.h

    r18ba2e4f r544a2e4  
    6161extern const char *test_mips1(void);
    6262extern const char *test_fault1(void);
    63 extern const char *test_fpu1(void);
    64 extern const char *test_sse1(void);
    65 extern const char *test_mips2(void);
    6663extern const char *test_falloc1(void);
    6764extern const char *test_falloc2(void);
Note: See TracChangeset for help on using the changeset viewer.