diff options
author | Cedric Le Goater <clg@fr.ibm.com> | 2006-12-08 05:37:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:51 -0500 |
commit | 937949d9edbf4049bd41af6c9f92c26280584564 (patch) | |
tree | d0a28f503b082f890cfa1f7fe952fda8fc771752 /drivers/char/rocket.c | |
parent | ef55d53caa055aedee13e77da82740987dd64f2d (diff) |
[PATCH] add process_session() helper routine
Replace occurences of task->signal->session by a new process_session() helper
routine.
It will be useful for pid namespaces to abstract the session pid number.
Signed-off-by: Cedric Le Goater <clg@fr.ibm.com>
Cc: Kirill Korotaev <dev@openvz.org>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Herbert Poetzl <herbert@13thfloor.at>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/rocket.c')
-rw-r--r-- | drivers/char/rocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rocket.c b/drivers/char/rocket.c index bac80056f7e0..4fdf52e9f3b1 100644 --- a/drivers/char/rocket.c +++ b/drivers/char/rocket.c | |||
@@ -1017,7 +1017,7 @@ static int rp_open(struct tty_struct *tty, struct file *filp) | |||
1017 | /* | 1017 | /* |
1018 | * Info->count is now 1; so it's safe to sleep now. | 1018 | * Info->count is now 1; so it's safe to sleep now. |
1019 | */ | 1019 | */ |
1020 | info->session = current->signal->session; | 1020 | info->session = process_session(current); |
1021 | info->pgrp = process_group(current); | 1021 | info->pgrp = process_group(current); |
1022 | 1022 | ||
1023 | if ((info->flags & ROCKET_INITIALIZED) == 0) { | 1023 | if ((info->flags & ROCKET_INITIALIZED) == 0) { |