Changeset 0773396 in mainline for kernel/generic/include/config.h


Ignore:
Timestamp:
2013-12-25T13:05:25Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bc54126c
Parents:
f4a47e52 (diff), 6946f23 (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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/config.h

    rf4a47e52 r0773396  
    3737
    3838#include <arch/mm/page.h>
     39#include <macros.h>
    3940
    40 #define ONE_FRAME    0
    41 #define TWO_FRAMES   1
    42 #define FOUR_FRAMES  2
     41#define STACK_FRAMES  2
     42#define STACK_SIZE    FRAMES2SIZE(STACK_FRAMES)
    4343
    44 #define STACK_FRAMES  TWO_FRAMES
    45 #define STACK_SIZE    ((1 << STACK_FRAMES) << PAGE_WIDTH)
    46 
    47 #define STACK_SIZE_USER (1 * 1024 * 1024)
     44#define STACK_SIZE_USER  (1 * 1024 * 1024)
    4845
    4946#define CONFIG_INIT_TASKS        32
    5047#define CONFIG_TASK_NAME_BUFLEN  32
    5148#define CONFIG_TASK_ARGUMENTS_BUFLEN 64
    52 
    53 /**
    54  * Maximum buffer size allowed for IPC_M_DATA_WRITE and IPC_M_DATA_READ
    55  * requests.
    56  */
    57 #define DATA_XFER_LIMIT  (64 * 1024)
    5849
    5950#ifndef __ASM__
     
    9788        /** Size of initial stack. */
    9889        size_t stack_size;
    99 
     90       
    10091        bool identity_configured;
    10192        /** Base address of the kernel identity mapped memory. */
     
    10394        /** Size of the kernel identity mapped memory. */
    10495        size_t identity_size;
    105 
    106         bool non_identity_configured;   
    107 
     96       
     97        bool non_identity_configured;
     98       
    10899        /** End of physical memory. */
    109100        uint64_t physmem_end;
Note: See TracChangeset for help on using the changeset viewer.