summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorSarangdhar Joshi <spjoshi@codeaurora.org>2016-02-11 16:39:46 -0800
committerZhiqiang Tu <ztu@codeaurora.org>2017-03-24 11:32:52 +0800
commite7ec709374ba7593e5d0379dd1b3160f6c0f233f (patch)
treedefefa3971d83c30a7864f7365fa0840f09a65b4 /mm
parent8451f7a2a0177ddc338d6f3bd762c0fe06f01394 (diff)
arm64: Add support for app specific settings
Add support to provide an interface that can be used from userspace to decide whether app specific settings need to be applied / cleared when particular processes are running. CRs-Fixed: 981519 997757 Change-Id: Id81f8b70de64f291a8586150f4d2c7c8f8b4420f Signed-off-by: Sarangdhar Joshi <spjoshi@codeaurora.org> [satyap@codeaurora.org: trivial merge conflict resolution and pull fixes for CR: 997757] Signed-off-by: Satya Durga Srinivasu Prabhala <satyap@codeaurora.org> [ztu@codeaurora.org: Resolved conflicts] Signed-off-by: Zhiqiang Tu <ztu@codeaurora.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/mmap.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index a089cca8d79a..ebc9d1923c3d 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -48,6 +48,10 @@
#include <asm/tlb.h>
#include <asm/mmu_context.h>
+#ifdef CONFIG_MSM_APP_SETTINGS
+#include <asm/app_api.h>
+#endif
+
#include "internal.h"
#ifndef arch_mmap_check
@@ -1297,6 +1301,11 @@ unsigned long do_mmap(struct file *file, unsigned long addr,
if (!len)
return -EINVAL;
+#ifdef CONFIG_MSM_APP_SETTINGS
+ if (use_app_setting)
+ apply_app_setting_bit(file);
+#endif
+
/*
* Does the application expect PROT_READ to imply PROT_EXEC?
*