Changes in kernel/generic/src/mm/as.c [b169619:5a5269d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/mm/as.c
rb169619 r5a5269d 69 69 #include <assert.h> 70 70 #include <stdio.h> 71 #include <mem w.h>71 #include <mem.h> 72 72 #include <macros.h> 73 73 #include <bitops.h> … … 86 86 * address space operations such as creating or locking page tables. 87 87 */ 88 constas_operations_t *as_operations = NULL;88 as_operations_t *as_operations = NULL; 89 89 90 90 /** Cache for as_t objects */ … … 1688 1688 spinlock_unlock(&asidlock); 1689 1689 1690 if (AS)1691 as_release(AS);1692 1693 1690 AS = new_as; 1694 1695 as_hold(AS);1696 1691 } 1697 1692 … … 2062 2057 /* Check if A is adjacent to the new interval */ 2063 2058 adj_a = (a != NULL) && (a->page + P2SZ(a->count) == page); 2064 /* Check if the new interval is adjacent to B 2059 /* Check if the new interval is adjacent to B*/ 2065 2060 adj_b = (b != NULL) && page + P2SZ(count) == b->page; 2066 2061
Note:
See TracChangeset
for help on using the changeset viewer.