aboutsummaryrefslogtreecommitdiff
path: root/net/ipv4/nexthop.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-22nexthop: fix uninitialized variable in nla_put_nh_group_stats()Gravatar Dan Carpenter 1-1/+3
2024-03-11nexthop: Fix splat with CONFIG_DEBUG_PREEMPT=yGravatar Ido Schimmel 1-1/+2
2024-03-11nexthop: Fix out-of-bounds access during attribute validationGravatar Ido Schimmel 1-12/+17
2024-03-11nexthop: Only parse NHA_OP_FLAGS for dump messages that require itGravatar Ido Schimmel 1-5/+5
2024-03-11nexthop: Only parse NHA_OP_FLAGS for get messages that require itGravatar Ido Schimmel 1-8/+8
2024-03-11net: nexthop: Have all NH notifiers carry NH IDGravatar Petr Machata 1-1/+1
2024-03-11net: nexthop: Initialize NH group ID in resilient NH group notifiersGravatar Petr Machata 1-0/+1
2024-03-08nexthop: Simplify dump error handlingGravatar Ido Schimmel 1-9/+0
2024-03-08net: nexthop: Expose nexthop group HW stats to user spaceGravatar Ido Schimmel 1-8/+122
2024-03-08net: nexthop: Add ability to enable / disable hardware statisticsGravatar Ido Schimmel 1-1/+14
2024-03-08net: nexthop: Add hardware statistics notificationsGravatar Ido Schimmel 1-0/+2
2024-03-08net: nexthop: Expose nexthop group stats to user spaceGravatar Ido Schimmel 1-8/+87
2024-03-08net: nexthop: Add nexthop group entry statsGravatar Ido Schimmel 1-4/+31
2024-03-08net: nexthop: Add NHA_OP_FLAGSGravatar Petr Machata 1-4/+20
2024-03-08net: nexthop: Adjust netlink policy parsing for a new attributeGravatar Petr Machata 1-30/+28
2024-02-07ipv4: add __unregister_nexthop_notifier()Gravatar Eric Dumazet 1-6/+13
2024-02-07nexthop: convert nexthop_net_exit_batch to exit_batch_rtnl methodGravatar Eric Dumazet 1-7/+12
2023-08-15nexthop: Do not increment dump sentinel at the end of the dumpGravatar Ido Schimmel 1-1/+0
2023-08-15nexthop: Simplify nexthop bucket dumpGravatar Ido Schimmel 1-5/+0
2023-08-10Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Jakub Kicinski 1-21/+7
2023-08-09nexthop: Fix infinite nexthop bucket dump when using maximum nexthop IDGravatar Ido Schimmel 1-5/+1
2023-08-09nexthop: Make nexthop bucket dump more efficientGravatar Ido Schimmel 1-11/+5
2023-08-09nexthop: Fix infinite nexthop dump when using maximum nexthop IDGravatar Ido Schimmel 1-5/+1
2023-07-20nexthop: Do not return invalid nexthop object during multipath selectionGravatar Benjamin Poirier 1-6/+8
2023-07-20nexthop: Factor out neighbor validity checkGravatar Benjamin Poirier 1-13/+16
2023-07-20nexthop: Factor out hash threshold fdb nexthop selectionGravatar Benjamin Poirier 1-2/+20
2023-03-21neighbour: switch to standard rcu, instead of rcu_bhGravatar Eric Dumazet 1-4/+4
2023-03-15neighbour: annotate lockless accesses to n->nud_stateGravatar Eric Dumazet 1-2/+2
2022-10-27nh: fix scope used to find saddr when adding non gw nhGravatar Nicolas Dichtel 1-1/+1
2022-07-13nexthop: Fix data-races around nexthop_compat_mode.Gravatar Kuniyuki Iwashima 1-2/+3
2022-02-08nexthop: change nexthop_net_exit() to nexthop_net_exit_batch()Gravatar Eric Dumazet 1-4/+8
2021-12-29net: Don't include filter.h from net/sock.hGravatar Jakub Kicinski 1-0/+1
2021-11-30net: nexthop: reduce rcu synchronizations when replacing resilient groupsGravatar Nikolay Aleksandrov 1-5/+3
2021-11-23net: nexthop: fix null pointer dereference when IPv6 is not enabledGravatar Nikolay Aleksandrov 1-3/+7
2021-11-22net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop groupGravatar Nikolay Aleksandrov 1-2/+23
2021-09-23nexthop: Fix memory leaks in nexthop notification chain listenersGravatar Ido Schimmel 1-5/+14
2021-09-20nexthop: Fix division by zero while replacing a resilient groupGravatar Ido Schimmel 1-0/+2
2021-09-02Set fc_nlinfo in nh_create_ipv4, nh_create_ipv6Gravatar Ryoga Saito 1-0/+2
2021-04-19nexthop: Restart nexthop dump based on last dumped nexthop identifierGravatar Ido Schimmel 1-8/+6
2021-03-28nexthop: Rename artifacts related to legacy multipath nexthop groupsGravatar Petr Machata 1-28/+28
2021-03-11nexthop: Enable resilient next-hop groupsGravatar Petr Machata 1-4/+0
2021-03-11nexthop: Notify userspace about bucket migrationsGravatar Petr Machata 1-6/+39
2021-03-11nexthop: Add netlink handlers for bucket getGravatar Petr Machata 1-1/+109
2021-03-11nexthop: Add netlink handlers for bucket dumpGravatar Petr Machata 1-0/+283
2021-03-11nexthop: Add netlink handlers for resilient nexthop groupsGravatar Petr Machata 1-5/+145
2021-03-11nexthop: Allow reporting activity of nexthop bucketsGravatar Ido Schimmel 1-0/+35
2021-03-11nexthop: Allow setting "offload" and "trap" indication of nexthop bucketsGravatar Ido Schimmel 1-0/+34
2021-03-11nexthop: Implement notifiers for resilient nexthop groupsGravatar Petr Machata 1-12/+308
2021-03-11nexthop: Add implementation of resilient next-hop groupsGravatar Petr Machata 1-13/+504
2021-03-11nexthop: Add netlink defines and enumerators for resilient NH groupsGravatar Ido Schimmel 1-0/+2