Changeset 879585a3 in mainline for kernel/generic/include/mm
- Timestamp:
- 2007-03-31T22:22:50Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 31d8e10
- Parents:
- 563c2dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/as.h
r563c2dd r879585a3 90 90 /** Protected by asidlock. */ 91 91 link_t inactive_as_with_asid_link; 92 /** 93 * Number of processors on wich is this address space active. 94 * Protected by asidlock. 95 */ 96 count_t cpu_refcount; 97 /** 98 * Address space identifier. 99 * Constant on architectures that do not support ASIDs. 100 * Protected by asidlock. 101 */ 102 asid_t asid; 92 103 93 104 mutex_t lock; … … 96 107 count_t refcount; 97 108 98 /** Number of processors on wich is this address space active. */99 count_t cpu_refcount;100 101 109 /** B+tree of address space areas. */ 102 110 btree_t as_area_btree; 103 104 /**105 * Address space identifier.106 * Constant on architectures that do not support ASIDs.107 */108 asid_t asid;109 111 110 112 /** Non-generic content. */ … … 134 136 /** Protected by asidlock. */ 135 137 link_t inactive_as_with_asid_link; 138 /** 139 * Number of processors on wich is this address space active. 140 * Protected by asidlock. 141 */ 142 count_t cpu_refcount; 143 /** 144 * Address space identifier. 145 * Constant on architectures that do not support ASIDs. 146 * Protected by asidlock. 147 */ 148 asid_t asid; 136 149 137 150 mutex_t lock; … … 140 153 count_t refcount; 141 154 142 /** Number of processors on wich is this address space active. */143 count_t cpu_refcount;144 145 155 /** B+tree of address space areas. */ 146 156 btree_t as_area_btree; 147 148 /**149 * Address space identifier.150 * Constant on architectures that do not support ASIDs.151 */152 asid_t asid;153 157 154 158 /** Non-generic content. */ … … 250 254 #endif 251 255 252 SPINLOCK_EXTERN(inactive_as_with_asid_lock);253 256 extern link_t inactive_as_with_asid_head; 254 257
Note:
See TracChangeset
for help on using the changeset viewer.