Changeset 613bc54 in mainline for arch/ppc32/include/types.h


Ignore:
Timestamp:
2006-04-22T20:11:23Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c118940
Parents:
c7c0b89b
Message:

ppc32: stub for Page Hash Table support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/include/types.h

    rc7c0b89b r613bc54  
    4949typedef __u32 __native;
    5050
    51 typedef __u32 pte_t;
     51/** Page Table Entry. */
     52typedef struct {
     53        unsigned p : 1;       /**< Present bit. */
     54        unsigned a : 1;       /**< Accessed bit. */
     55        unsigned valid : 1;   /**< Valid content even if not present. */
     56        unsigned pfn : 20;    /**< Physical frame number. */
     57} pte_t;
    5258
    5359#endif
Note: See TracChangeset for help on using the changeset viewer.