diff options
| -rw-r--r-- | kernel/acct.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/acct.c b/kernel/acct.c index 521dfa53cb99..7ff5339a3f05 100644 --- a/kernel/acct.c +++ b/kernel/acct.c | |||
| @@ -482,7 +482,9 @@ static void do_acct_process(struct file *file) | |||
| 482 | #endif | 482 | #endif |
| 483 | #if ACCT_VERSION==3 | 483 | #if ACCT_VERSION==3 |
| 484 | ac.ac_pid = current->tgid; | 484 | ac.ac_pid = current->tgid; |
| 485 | ac.ac_ppid = current->real_parent->tgid; | 485 | rcu_read_lock(); |
| 486 | ac.ac_ppid = rcu_dereference(current->real_parent)->tgid; | ||
| 487 | rcu_read_unlock(); | ||
| 486 | #endif | 488 | #endif |
| 487 | 489 | ||
| 488 | spin_lock_irq(¤t->sighand->siglock); | 490 | spin_lock_irq(¤t->sighand->siglock); |
