Changeset cd13c2a in mainline


Ignore:
Timestamp:
2006-10-18T17:15:29Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de57e060
Parents:
a000fd71
Message:

cleanup

Location:
kernel/generic/include
Files:
3 edited

Legend:

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

    ra000fd71 rcd13c2a  
    5050#define IPC_CALL_ANSWERED       (1<<0) /**< This is answer to a call */
    5151#define IPC_CALL_STATIC_ALLOC   (1<<1) /**< This call will not be freed on error */
    52 #define IPC_CALL_DISCARD_ANSWER (1<<2) /**< Answer will not be passed to
    53                                         * userspace, will be discarded */
    54 #define IPC_CALL_FORWARDED      (1<<3) /* Call was forwarded */
    55 #define IPC_CALL_CONN_ME_TO     (1<<4) /* Identify connect_me_to answer */
    56 #define IPC_CALL_NOTIF          (1<<5) /* Interrupt notification */
     52#define IPC_CALL_DISCARD_ANSWER (1<<2) /**< Answer will not be passed to userspace, will be discarded */
     53#define IPC_CALL_FORWARDED      (1<<3) /**< Call was forwarded */
     54#define IPC_CALL_CONN_ME_TO     (1<<4) /**< Identify connect_me_to answer */
     55#define IPC_CALL_NOTIF          (1<<5) /**< Interrupt notification */
    5756
    5857/* Flags of callid (the addresses are aligned at least to 4,
  • kernel/generic/include/mm/asid.h

    ra000fd71 rcd13c2a  
    5555#ifndef __ASM__
    5656
    57 #define ASIDS_ALLOCABLE ((ASID_MAX+1)-ASID_START)
     57#define ASIDS_ALLOCABLE ((ASID_MAX + 1) - ASID_START)
    5858
    5959extern spinlock_t asidlock;
  • kernel/generic/include/mm/slab.h

    ra000fd71 rcd13c2a  
    5757
    5858/* slab_reclaim constants */
    59 #define SLAB_RECLAIM_ALL  0x1 /**< Reclaim all possible memory, because
    60                                *   we are in memory stress */
     59#define SLAB_RECLAIM_ALL  0x1 /**< Reclaim all possible memory, because we are in memory stress */
    6160
    6261/* cache_create flags */
    6362#define SLAB_CACHE_NOMAGAZINE 0x1 /**< Do not use per-cpu cache */
    6463#define SLAB_CACHE_SLINSIDE   0x2 /**< Have control structure inside SLAB */
    65 /** We add magazine cache later, if we have this flag */
    66 #define SLAB_CACHE_MAGDEFERRED (0x4 | SLAB_CACHE_NOMAGAZINE)
     64#define SLAB_CACHE_MAGDEFERRED (0x4 | SLAB_CACHE_NOMAGAZINE) /**< We add magazine cache later, if we have this flag */
    6765
    6866typedef struct {
Note: See TracChangeset for help on using the changeset viewer.