summaryrefslogtreecommitdiffstats
path: root/net/ipv4/route.c
Commit message (Expand)AuthorAgeFilesLines
* ipv4: not do cache for local delivery if bc_forwarding is enabledXin Long2019-06-111-11/+11
* inet: switch IP ID generator to siphashEric Dumazet2019-06-041-5/+7
* ipv4: add sanity checks in ipv4_link_failure()Eric Dumazet2019-05-021-9/+23
* ipv4: ensure rcu_read_lock() in ipv4_link_failure()Eric Dumazet2019-04-271-2/+8
* ipv4: recompile ip options in ipv4_link_failureStephen Suryaputra2019-04-271-1/+9
* route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a raceXin Long2019-03-191-0/+4
* ipv4/route: fail early when inet dev is missingPaolo Abeni2019-03-191-4/+5
* ipv4: Add ICMPv6 support when parse route ipprotoHangbin Liu2019-03-101-1/+1
* net: ipv4: use a dedicated counter for icmp_v4 redirect packetsLorenzo Bianconi2019-02-231-2/+5
* net: ipv4: don't let PMTU updates increase route MTUSabrina Dubroca2018-10-111-3/+4
* route: add support for directed broadcast forwardingXin Long2018-07-291-1/+5
* treewide: kzalloc() -> kcalloc()Kees Cook2018-06-131-1/+1
* treewide: kmalloc() -> kmalloc_array()Kees Cook2018-06-131-1/+2
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds2018-06-071-39/+138
|\
| * Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextDavid S. Miller2018-05-251-0/+31
| |\
| | * net/ipv4: Add helper to return path MTU based on fib resultDavid Ahern2018-05-221-0/+31
| * | ipv4: support sport, dport and ip_proto in RTM_GETROUTERoopa Prabhu2018-05-231-39/+107
* | | Merge branch 'hch.procfs' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Linus Torvalds2018-06-041-13/+2Star
|\ \ \ | |/ / |/| |
| * | proc: introduce proc_create_single{,_data}Christoph Hellwig2018-05-161-13/+2Star
| |/
* / net/ipv4: Initialize proto and ports in flow structDavid Ahern2018-05-171-1/+6
|/
* ipv4: reset fnhe_mtu_locked after cache route flushedHangbin Liu2018-05-101-0/+1
* ipv4: fix fnhe usage by non-cached routesJulian Anastasov2018-05-031-65/+53Star
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netLinus Torvalds2018-04-101-5/+6
|\
| * ipv4: fix uninit-value in ip_route_output_key_hash_rcu()Eric Dumazet2018-04-081-5/+6
* | headers: untangle kmemleak.h from mm.hRandy Dunlap2018-04-061-1/+0Star
|/
* net: Drop pernet_operations::asyncKirill Tkhai2018-03-271-4/+0Star
* net: Use octal not symbolic permissionsJoe Perches2018-03-261-2/+2
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-03-231-15/+32
|\
| * ipv4: lock mtu in fnhe when received PMTU < net.ipv4.route.min_pmtuSabrina Dubroca2018-03-141-7/+19
| * Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klasse...David S. Miller2018-03-131-8/+13
| |\
| | * xfrm: reuse uncached_list to track xdstsXin Long2018-02-161-8/+13
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-03-061-3/+15
|\| |
| * | vrf: check forwarding on the original netdevice when generating ICMP dest unr...Stephen Suryaputra2018-03-021-1/+10
| * | net: ipv4: avoid unused variable warning for sysctlArnd Bergmann2018-03-011-2/+1Star
| * | net: ipv4: don't allow setting net.ipv4.route.min_pmtu below 68Sabrina Dubroca2018-02-271-2/+6
* | | net/ipv4: Simplify fib_multipath_hash with optional flow keysDavid Ahern2018-03-041-14/+10Star
* | | net: Align ip_multipath_l3_keys and ip6_multipath_l3_keysDavid Ahern2018-03-041-9/+11
* | | net/ipv4: Pass net to fib_multipath_hash instead of fib_infoDavid Ahern2018-03-041-3/+2Star
* | | ipv6: route: dissect flow in input path if fib rules need itRoopa Prabhu2018-03-011-14/+29
* | | Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-02-241-0/+2
|\| |
| * | net: ipv4: Set addr_type in hash_keys for forwarded caseDavid Ahern2018-02-221-0/+2
| |/
* | net/ipv4: Remove fib table id from rtableDavid Ahern2018-02-151-8/+1Star
* | net: Move ipv4 set_lwt_redirect helper to lwtunnelDavid Ahern2018-02-141-15/+2Star
* | net/ipv4: Unexport fib_multipath_hash and fib_select_pathDavid Ahern2018-02-131-1/+0Star
* | net: Convert pernet_subsys, registered from inet_init()Kirill Tkhai2018-02-131-0/+4
|/
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2018-01-171-0/+1
|\
| * net: ipv4: Make "ip route get" match iif lo rules again.Lorenzo Colitti2018-01-151-0/+1
* | net: delete /proc THIS_MODULE referencesAlexey Dobriyan2018-01-161-3/+0Star
* | xfrm: Move dst->path into struct xfrm_dstDavid Miller2017-11-301-1/+1
|/
* route: also update fnhe_genid when updating a route cacheXin Long2017-11-181-2/+7