diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-08 14:52:04 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-05 17:10:00 +0200 |
commit | f794aa4a2fd772a3ec413c4e478cc23857cfee98 (patch) | |
tree | 35eb5468b986e68f1d35384a25ae16fc65a3f47e /include | |
parent | d7a0f71d9aac33e58d39fdbe4861d440af44fa8b (diff) | |
download | qemu-f794aa4a2fd772a3ec413c4e478cc23857cfee98.zip |
target-i386: introduce cpu_get_mem_attrs
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/memattrs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/exec/memattrs.h b/include/exec/memattrs.h index 96dc440423..f8537a8d91 100644 --- a/include/exec/memattrs.h +++ b/include/exec/memattrs.h @@ -29,7 +29,9 @@ typedef struct MemTxAttrs { * "didn't specify" if necessary. */ unsigned int unspecified:1; - /* ARM/AMBA TrustZone Secure access */ + /* ARM/AMBA: TrustZone Secure access + * x86: System Management Mode access + */ unsigned int secure:1; /* Memory access is usermode (unprivileged) */ unsigned int user:1; |