1. 30 Jun, 2018 37 commits
  2. 29 Jun, 2018 3 commits
    • David S. Miller's avatar
      Merge tag 'mlx5e-updates-2018-06-28' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux · 30408a43
      David S. Miller authored
      Saeed Mahameed says:
      
      ====================
      mlx5e-updates-2018-06-28
      
      mlx5e netdevice driver updates:
      
      - Boris Pismenny added the support for UDP GSO in the first two patches.
        Impressive performance numbers are included in the commit message,
        @Line rate with ~half of the cpu utilization compared to non offload
        or no GSO at all.
      
      - From Tariq Toukan:
        - Convert large order kzalloc allocations to kvzalloc.
        - Added performance diagnostic statistics to several places in data path.
      
      From Saeed and Eran,
        - Update NIC HW stats on demand only, this is to eliminate the background
          thread needed to update some HW statistics in the driver cache in
          order to report error and drop counters from HW in ndo_get_stats.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      30408a43
    • David S. Miller's avatar
      Merge branch 'net-Geneve-options-support-for-TC-act_tunnel_key' · c65a6a93
      David S. Miller authored
      Jakub Kicinski says:
      
      ====================
      net: Geneve options support for TC act_tunnel_key
      
      Simon & Pieter say:
      
      This set adds Geneve Options support to the TC tunnel key action.
      It provides the plumbing required to configure Geneve variable length
      options.  The options can be configured in the form CLASS:TYPE:DATA,
      where CLASS is represented as a 16bit hexadecimal value, TYPE as an 8bit
      hexadecimal value and DATA as a variable length hexadecimal value.
      Additionally multiple options may be listed using a comma delimiter.
      
      v2:
       - fix sparse warnings in patches 3 and 4 (first one reported by
         build bot).
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      c65a6a93
    • Simon Horman's avatar
      net/sched: add tunnel option support to act_tunnel_key · 0ed5269f
      Simon Horman authored
      Allow setting tunnel options using the act_tunnel_key action.
      
      Options are expressed as class:type:data and multiple options
      may be listed using a comma delimiter.
      
       # ip link add name geneve0 type geneve dstport 0 external
       # tc qdisc add dev eth0 ingress
       # tc filter add dev eth0 protocol ip parent ffff: \
           flower indev eth0 \
              ip_proto udp \
              action tunnel_key \
                  set src_ip 10.0.99.192 \
                  dst_ip 10.0.99.193 \
                  dst_port 6081 \
                  id 11 \
                  geneve_opts 0102:80:00800022,0102:80:00800022 \
          action mirred egress redirect dev geneve0
      Signed-off-by: default avatarSimon Horman <simon.horman@netronome.com>
      Signed-off-by: default avatarPieter Jansen van Vuuren <pieter.jansenvanvuuren@netronome.com>
      Reviewed-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0ed5269f