Rev 1037 | Rev 1093 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1037 | Rev 1063 | ||
|---|---|---|---|
| Line 49... | Line 49... | ||
| 49 | #include <arch.h> |
49 | #include <arch.h> |
| 50 | #include <print.h> |
50 | #include <print.h> |
| 51 | #include <align.h> |
51 | #include <align.h> |
| 52 | #include <mm/slab.h> |
52 | #include <mm/slab.h> |
| 53 | #include <bitops.h> |
53 | #include <bitops.h> |
| - | 54 | #include <macros.h> |
|
| 54 | 55 | ||
| 55 | typedef struct { |
56 | typedef struct { |
| 56 | count_t refcount; /**< tracking of shared frames */ |
57 | count_t refcount; /**< tracking of shared frames */ |
| 57 | __u8 buddy_order; /**< buddy system block order */ |
58 | __u8 buddy_order; /**< buddy system block order */ |
| 58 | link_t buddy_link; /**< link to the next free block inside one order */ |
59 | link_t buddy_link; /**< link to the next free block inside one order */ |