Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/mm/frame.h

    r9dae191e rda1bafb  
    8181
    8282typedef struct {
    83         size_t refcount;     /**< Tracking of shared frames */
     83        size_t refcount;      /**< Tracking of shared frames */
    8484        uint8_t buddy_order;  /**< Buddy system block order */
    8585        link_t buddy_link;    /**< Link to the next free block inside
     
    9191        pfn_t base;                    /**< Frame_no of the first frame
    9292                                        in the frames array */
    93         size_t count;                 /**< Size of zone */
    94         size_t free_count;            /**< Number of free frame_t
     93        size_t count;                  /**< Size of zone */
     94        size_t free_count;             /**< Number of free frame_t
    9595                                        structures */
    96         size_t busy_count;            /**< Number of busy frame_t
     96        size_t busy_count;             /**< Number of busy frame_t
    9797                                        structures */
    9898        zone_flags_t flags;            /**< Type of the zone */
     
    108108 */
    109109typedef struct {
    110         SPINLOCK_DECLARE(lock);
     110        IRQ_SPINLOCK_DECLARE(lock);
    111111        size_t count;
    112112        zone_t info[ZONES_MAX];
Note: See TracChangeset for help on using the changeset viewer.