We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af24bf2 commit 9a7a01bCopy full SHA for 9a7a01b
sys/vm/vm_map.h
@@ -235,6 +235,9 @@ struct cheri_revoke_stats;
235
*/
236
struct vm_map {
237
struct vm_map_entry header; /* List of entries */
238
+#if __has_feature(capabilities)
239
+ uintcap_t map_capability; /* (c) Capability spanning the map */
240
+#endif
241
union {
242
struct sx lock; /* Lock for map data */
243
struct mtx system_mtx;
@@ -280,9 +283,6 @@ struct vm_map {
280
283
pmap_t pmap; /* (c) Physical map */
281
284
vm_offset_t anon_loc;
282
285
int busy;
-#if __has_feature(capabilities)
- intcap_t map_capability; /* Capability spanning the whole map */
-#endif
286
#ifdef DIAGNOSTIC
287
int nupdates;
288
#endif
0 commit comments