summaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/socket.c b/net/socket.c
index 05f361faec45..78acd6ce74c7 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -2619,6 +2619,15 @@ out_fs:
2619 2619
2620core_initcall(sock_init); /* early initcall */ 2620core_initcall(sock_init); /* early initcall */
2621 2621
2622static int __init jit_init(void)
2623{
2624#ifdef CONFIG_BPF_JIT_ALWAYS_ON
2625 bpf_jit_enable = 1;
2626#endif
2627 return 0;
2628}
2629pure_initcall(jit_init);
2630
2622#ifdef CONFIG_PROC_FS 2631#ifdef CONFIG_PROC_FS
2623void socket_seq_show(struct seq_file *seq) 2632void socket_seq_show(struct seq_file *seq)
2624{ 2633{