aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 445bdf5b1f64..06b4e3bda93a 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1275,12 +1275,12 @@ static inline pid_t task_session_vnr(struct task_struct *tsk)
1275 1275
1276static inline pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns) 1276static inline pid_t task_tgid_nr_ns(struct task_struct *tsk, struct pid_namespace *ns)
1277{ 1277{
1278 return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, ns); 1278 return __task_pid_nr_ns(tsk, PIDTYPE_TGID, ns);
1279} 1279}
1280 1280
1281static inline pid_t task_tgid_vnr(struct task_struct *tsk) 1281static inline pid_t task_tgid_vnr(struct task_struct *tsk)
1282{ 1282{
1283 return __task_pid_nr_ns(tsk, __PIDTYPE_TGID, NULL); 1283 return __task_pid_nr_ns(tsk, PIDTYPE_TGID, NULL);
1284} 1284}
1285 1285
1286static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns) 1286static inline pid_t task_ppid_nr_ns(const struct task_struct *tsk, struct pid_namespace *ns)