@@ -42,7 +42,7 @@ static int tpe_strict __read_mostly = IS_ENABLED(CONFIG_SECURITY_TPE_STRICT);
static int tpe_restrict_root __read_mostly =
IS_ENABLED(CONFIG_SECURITY_TPE_RESTRICT_ROOT);
-int print_tpe_error(struct file *file, char *reason1, char *reason2,
+static int print_tpe_error(struct file *file, char *reason1, char *reason2,
char *method)
{
char *filepath;
@@ -125,7 +125,7 @@ static int tpe_check(struct file *file, char *method)
return 0;
}
-int tpe_mmap_file(struct file *file, unsigned long reqprot,
+static int tpe_mmap_file(struct file *file, unsigned long reqprot,
unsigned long prot, unsigned long flags)
{
if (!file || !(prot & PROT_EXEC))
@@ -134,7 +134,7 @@ int tpe_mmap_file(struct file *file, unsigned long reqprot,
return tpe_check(file, "mmap");
}
-int tpe_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
+static int tpe_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
unsigned long prot)
{
if (!vma->vm_file)
@@ -157,7 +157,7 @@ static struct security_hook_list tpe_hooks[] = {
};
#ifdef CONFIG_SYSCTL
-struct ctl_path tpe_sysctl_path[] = {
+static struct ctl_path tpe_sysctl_path[] = {
{ .procname = "kernel", },
{ .procname = "tpe", },
{ }
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> --- tpe_lsm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)