You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kernel entry point -> First steps in the start_kernel
You can see the definition of the init_task and it initialized by the INIT_TASK macro. This macro is from include/linux/init_task.h and it just fills the init_task with the values for the first process.
In earlier kernels init_task used to be initialized with the INIT_TASK macro, which is now absent. From 4.16 and on, there's a direct initialization in the init_task.c file.
The text was updated successfully, but these errors were encountered:
l-0-l
changed the title
[BUG] In kernel 4.16 and above init_task is initialized directly
In kernel 4.16 and above init_task is initialized directly
May 17, 2023
Kernel entry point -> First steps in the start_kernel
In earlier kernels init_task used to be initialized with the INIT_TASK macro, which is now absent. From 4.16 and on, there's a direct initialization in the init_task.c file.
The text was updated successfully, but these errors were encountered: