Rev 768 | Rev 788 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 768 | Rev 786 | ||
|---|---|---|---|
| Line 107... | Line 107... | ||
| 107 | * @param pzone Pointer to preferred zone pointer, on output it changes |
107 | * @param pzone Pointer to preferred zone pointer, on output it changes |
| 108 | * to the zone that the frame was really allocated to |
108 | * to the zone that the frame was really allocated to |
| 109 | * |
109 | * |
| 110 | * @return Allocated frame. |
110 | * @return Allocated frame. |
| 111 | */ |
111 | */ |
| 112 | __address frame_alloc(int flags, __u8 order, int * status, zone_t **pzone) |
112 | __address frame_alloc_generic(__u8 order, int flags, int * status, zone_t **pzone) |
| 113 | { |
113 | { |
| 114 | ipl_t ipl; |
114 | ipl_t ipl; |
| 115 | link_t *tmp; |
115 | link_t *tmp; |
| 116 | zone_t *zone = NULL; |
116 | zone_t *zone = NULL; |
| 117 | frame_t *frame = NULL; |
117 | frame_t *frame = NULL; |