]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - kernel/pid.c
HID: wacom: wacom_wac_collection() is local to wacom_wac.c
[linux.git] / kernel / pid.c
index 1e8bb6550ec4bf61c367806dc31010e8a25f47b9..5d30c87e3c424667fe08fbe81e30eac8570a02c1 100644 (file)
 #include <linux/sched/task.h>
 #include <linux/idr.h>
 
-struct pid init_struct_pid = INIT_STRUCT_PID;
+struct pid init_struct_pid = {
+       .count          = ATOMIC_INIT(1),
+       .tasks          = {
+               { .first = NULL },
+               { .first = NULL },
+               { .first = NULL },
+       },
+       .level          = 0,
+       .numbers        = { {
+               .nr             = 0,
+               .ns             = &init_pid_ns,
+       }, }
+};
 
 int pid_max = PID_MAX_DEFAULT;