diff options
author | Eric Biggers <ebiggers@google.com> | 2018-09-07 23:22:23 +0300 |
---|---|---|
committer | Mimi Zohar <zohar@linux.ibm.com> | 2018-10-10 19:56:15 +0300 |
commit | b2724d5802a77b7fb47e84d9b88b80370eccbc64 (patch) | |
tree | 59917073de892c95ac1b59b3ae8c31f2ecf76749 /security/integrity/ima/ima.h | |
parent | 691115c3513ec83edf68ba6575ae85630bc94b8b (diff) | |
download | linux-b2724d5802a77b7fb47e84d9b88b80370eccbc64.tar.xz |
security/integrity: constify some read-only data
Constify some static data that is never modified,
so that it is placed in .rodata.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
Diffstat (limited to 'security/integrity/ima/ima.h')
-rw-r--r-- | security/integrity/ima/ima.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima.h b/security/integrity/ima/ima.h index 67db9d9454ca..cc12f3449a72 100644 --- a/security/integrity/ima/ima.h +++ b/security/integrity/ima/ima.h @@ -88,7 +88,7 @@ struct ima_template_desc { char *name; char *fmt; int num_fields; - struct ima_template_field **fields; + const struct ima_template_field **fields; }; struct ima_template_entry { |