From: Jiri Slaby <jslaby@suse.cz>
Date: Wed, 11 Aug 2010 09:28:02 +0000 (+0200)
Subject: AppArmor: fix task_setrlimit prototype
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7cb4dc9fc95f89587f57f287b47e091d7806255e;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git

AppArmor: fix task_setrlimit prototype

After rlimits tree was merged we get the following errors:
security/apparmor/lsm.c:663:2: warning: initialization from incompatible pointer type

It is because AppArmor was merged in the meantime, but uses the old
prototype. So fix it by adding struct task_struct as a first parameter
of apparmor_task_setrlimit.

NOTE that this is ONLY a compilation warning fix (and crashes caused
by that). It needs proper handling in AppArmor depending on who is the
'task'.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: John Johansen <john.johansen@canonical.com>
Signed-off-by: James Morris <jmorris@namei.org>
---

diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
index d5666d3cc21..f73e2c20421 100644
--- a/security/apparmor/lsm.c
+++ b/security/apparmor/lsm.c
@@ -607,8 +607,8 @@ static int apparmor_setprocattr(struct task_struct *task, char *name,
 	return error;
 }
 
-static int apparmor_task_setrlimit(unsigned int resource,
-				   struct rlimit *new_rlim)
+static int apparmor_task_setrlimit(struct task_struct *task,
+		unsigned int resource, struct rlimit *new_rlim)
 {
 	struct aa_profile *profile = aa_current_profile();
 	int error = 0;