mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add locking annotations to amd64 struct md_page members.
Reviewed by: alc Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
6e9bf96d6f
commit
aa3ec63e02
1 changed files with 6 additions and 2 deletions
|
|
@ -284,9 +284,13 @@ extern pt_entry_t pg_nx;
|
|||
struct pv_entry;
|
||||
struct pv_chunk;
|
||||
|
||||
/*
|
||||
* Locks
|
||||
* (p) PV list lock
|
||||
*/
|
||||
struct md_page {
|
||||
TAILQ_HEAD(,pv_entry) pv_list;
|
||||
int pv_gen;
|
||||
TAILQ_HEAD(, pv_entry) pv_list; /* (p) */
|
||||
int pv_gen; /* (p) */
|
||||
int pat_mode;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue