core_initcall(sock_init); /* early initcall */ static int __init jit_init(void) { #ifdef CONFIG_BPF_JIT_ALWAYS_ON bpf_jit_enable = 1; #endif return 0; } pure_initcall(jit_init); #ifdef CONFIG_PROC_FS void socket_seq_show(struct seq_file *seq) { 0 comments on commit 5124abd ...
boot process, so it can be done in a regular initcall. To make sure that we don't miss any ordering problems in the future, output a warning if any of the functions are called before initialization has completed. This is part of untangling the boot order dependencies on Tegra so that mo...