[PATCH 16/16] kernel: use get_personality()

From: WANG Cong
Date: Sat Feb 23 2008 - 03:38:45 EST


Use get_personality() macro instead of explicit reference.

Signed-off-by: WANG Cong <xiyou.wangcong@xxxxxxxxx>
Cc: Christoph Hellwig <hch@xxxxxxxxxxxxx>

---
kernel/exec_domain.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/exec_domain.c b/kernel/exec_domain.c
index a9e6bad..056ba23 100644
--- a/kernel/exec_domain.c
+++ b/kernel/exec_domain.c
@@ -192,11 +192,11 @@ get_exec_domain_list(char *page)
asmlinkage long
sys_personality(u_long personality)
{
- u_long old = current->personality;
+ u_long old = get_personality();

if (personality != 0xffffffff) {
set_personality(personality);
- if (current->personality != personality)
+ if (get_personality() != personality)
return -EINVAL;
}

--
1.5.3.8

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/