Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.6-rc1 11 lines 169 B view raw
1#include <linux/init.h> 2#include <linux/kernel.h> 3 4int sysctl_tcp_fastopen; 5 6static int __init tcp_fastopen_init(void) 7{ 8 return 0; 9} 10 11late_initcall(tcp_fastopen_init);