mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
Pager struct allocated from boot memory and never referenced after boot.
We still have to have the pager structs because they possess intermediate data during boot up such as for transferring of capability lists to boot stack one-by-one, and then to newly generated ktcbs.
This commit is contained in:
@@ -48,8 +48,8 @@ struct container {
|
||||
struct id_pool *space_id_pool;
|
||||
|
||||
struct mutex_queue_head mutex_queue_head; /* Userspace mutex list */
|
||||
struct cap_list cap_list; /* Capabilities shared by whole container */
|
||||
struct pager pager[CONFIG_MAX_PAGERS_USED];
|
||||
struct cap_list cap_list; /* Capabilities shared by whole container */
|
||||
struct pager *pager; /* Boot-time array of pagers */
|
||||
};
|
||||
|
||||
/* Compact, raw capability structure */
|
||||
|
||||
Reference in New Issue
Block a user