Changed name of kernel_container to kernel_resources

This commit is contained in:
Bahadir Balban
2009-10-20 13:14:49 +03:00
parent b78859503e
commit 9c06bea41a
9 changed files with 123 additions and 123 deletions

View File

@@ -83,7 +83,7 @@ void address_space_delete(struct address_space *space)
delete_page_tables(space);
/* Return the space id */
id_del(&kernel_container.space_ids, space->spid);
id_del(&kernel_resources.space_ids, space->spid);
/* Deallocate the space structure */
free_space(space);
@@ -118,7 +118,7 @@ struct address_space *address_space_create(struct address_space *orig)
* is not allowed since spid field is used to indicate the space to
* copy from.
*/
space->spid = id_new(&kernel_container.space_ids);
space->spid = id_new(&kernel_resources.space_ids);
/* If an original space is supplied */
if (orig) {