projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a59a7be
)
xsm/flask: fix memory AVC formatting
author
Daniel De Graaf
<dgdegra@tycho.nsa.gov>
Mon, 9 Jul 2012 09:09:44 +0000
(10:09 +0100)
committer
Daniel De Graaf
<dgdegra@tycho.nsa.gov>
Mon, 9 Jul 2012 09:09:44 +0000
(10:09 +0100)
A space was missing in the format string.
Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
Committed-by: Keir Fraser <keir@xen.org>
xen/xsm/flask/avc.c
patch
|
blob
|
history
diff --git
a/xen/xsm/flask/avc.c
b/xen/xsm/flask/avc.c
index 95c928b5bb9396aa7d5e5484dd44b415a4f414bd..44240a928265b7663a51336d00f63fc23f38f6a9 100644
(file)
--- a/
xen/xsm/flask/avc.c
+++ b/
xen/xsm/flask/avc.c
@@
-640,7
+640,7
@@
void avc_audit(u32 ssid, u32 tsid, u16 tclass, u32 requested,
avc_printk(&buf, "range=0x%lx-0x%lx ", a->range.start, a->range.end);
break;
case AVC_AUDIT_DATA_MEMORY:
- avc_printk(&buf, "pte=0x%lx mfn=0x%lx", a->memory.pte, a->memory.mfn);
+ avc_printk(&buf, "pte=0x%lx mfn=0x%lx
", a->memory.pte, a->memory.mfn);
break;
}