[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen/flask: Switch to using bool
commit b24731b1b4ce9f032116831ac825b227965232aa Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Fri Jun 23 10:56:37 2017 +0000 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Thu Aug 10 15:40:38 2017 +0100 xen/flask: Switch to using bool Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Reviewed-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Daniel De Graaf <dgdegra@xxxxxxxxxxxxx> --- xen/xsm/flask/flask_op.c | 4 ++-- xen/xsm/flask/include/avc.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/xen/xsm/flask/flask_op.c b/xen/xsm/flask/flask_op.c index 719c2d7..15aa96b 100644 --- a/xen/xsm/flask/flask_op.c +++ b/xen/xsm/flask/flask_op.c @@ -29,7 +29,7 @@ enum flask_bootparam_t __read_mostly flask_bootparam = FLASK_BOOTPARAM_ENFORCING static void parse_flask_param(char *s); custom_param("flask", parse_flask_param); -bool_t __read_mostly flask_enforcing = 1; +bool __read_mostly flask_enforcing = true; #define MAX_POLICY_SIZE 0x4000000 @@ -453,7 +453,7 @@ static int flask_security_load(struct xen_flask_load *load) { int ret; void *buf = NULL; - bool_t is_reload = ss_initialized; + bool is_reload = ss_initialized; ret = domain_has_security(current->domain, SECURITY__LOAD_POLICY); if ( ret ) diff --git a/xen/xsm/flask/include/avc.h b/xen/xsm/flask/include/avc.h index c153c8e..bfc69f4 100644 --- a/xen/xsm/flask/include/avc.h +++ b/xen/xsm/flask/include/avc.h @@ -17,7 +17,7 @@ #include "av_permissions.h" #include "security.h" -extern bool_t flask_enforcing; +extern bool flask_enforcing; /* * An entry in the AVC. -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |