aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp_offload.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-13net: gro: move L3 flush checks to tcp_gro_receive and udp_gro_receive_segmentRichard Gobert1-8/+1
2024-05-06net: move skb_gro_receive_list from udp to coreFelix Fietkau1-27/+0
2024-05-02net: gro: add flush check in udp_gro_receive_segmentRichard Gobert1-1/+11
2024-05-02net: gro: fix udp bad offset in socket lookup by adding {inner_}network_offse...Richard Gobert1-1/+2
2024-03-29udp: prevent local UDP tunnel packets from being GROedAntoine Tenart1-0/+6
2024-03-29udp: do not transition UDP GRO fraglist partial checksums to unnecessaryAntoine Tenart1-7/+1
2024-03-29gro: fix ownership transferAntoine Tenart1-1/+2
2024-03-29udp: do not accept non-tunnel GSO skbs landing in a tunnelAntoine Tenart1-2/+4
2024-03-07udp: move udpv4_offload and udpv6_offload to net_hotdataEric Dumazet1-9/+8
2023-09-14udp: move udp->gro_enabled to udp->udp_flagsEric Dumazet1-2/+2
2023-07-29net: gro: fix misuse of CB in udp socket lookupRichard Gobert1-2/+5
2023-07-14gso: fix dodgy bit handling for GSO_UDP_L4Yan Zhai1-5/+11
2023-06-10net: move gso declarations and functions to their own filesEric Dumazet1-0/+1
2022-12-12udp: allow header check for dodgy GSO_UDP_L4 packets.Andrew Melnychenko1-1/+2
2022-11-16udp: Access &udp_table via net.Kuniyuki Iwashima1-2/+3
2021-11-24gro: remove rcu_read_lock/rcu_read_unlock from gro_complete handlersEric Dumazet1-2/+0
2021-11-24gro: remove rcu_read_lock/rcu_read_unlock from gro_receive handlersEric Dumazet1-2/+0
2021-11-16net: gro: move skb_gro_receive_list to udp_offload.cEric Dumazet1-0/+27
2021-11-16net: move gro definitions to include/net/gro.hEric Dumazet1-0/+1
2021-08-31fou: remove sparse errorsEric Dumazet1-1/+1
2021-08-02net, gro: Set inner transport header offset in tcp/udp GRO hookJakub Sitnicki1-0/+4
2021-07-02udp: properly flush normal packet at GRO timePaolo Abeni1-2/+4
2021-03-30udp: properly complete L4 GRO over UDP tunnel packetPaolo Abeni1-1/+7
2021-03-30udp: skip L4 aggregation for UDP tunnel packetsPaolo Abeni1-8/+11
2021-02-28net: Fix gro aggregation for udp encaps with zero csumDaniel Borkmann1-1/+1
2021-02-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-5/+64
2021-02-01udp: ipv4: manipulate network header of NATed UDP GRO fraglistDongseok Yi1-5/+64
2021-01-23udp: allow forwarding of plain (non-fraglisted) UDP GRO packetsAlexander Lobakin1-1/+2
2021-01-20udp: not remove the CRC flag from dev features when need_csum is falseXin Long1-2/+2
2020-11-12Merge https://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+16
2020-11-12net: udp: remove redundant initialization in udp_gro_completeMenglong Dong1-1/+1
2020-11-12net: udp: fix IP header access and skb lookup on Fast/frag0 UDP GROAlexander Lobakin1-2/+15
2020-11-12net: udp: fix UDP header access on Fast/frag0 UDP GROAlexander Lobakin1-1/+1
2020-10-30udp: support sctp over udp in skb_udp_tunnel_segmentXin Long1-0/+3
2020-03-30udp: initialize is_flist with 0 in udp_gro_receiveXin Long1-0/+1
2020-01-27udp: Support UDP fraglist GRO/GSO.Steffen Klassert1-23/+81
2020-01-03net: remove the check argument from __skb_gro_checksum_convertLi RongQing1-1/+1
2019-06-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-0/+5
2019-06-18net/udp_gso: Allow TX timestamp with UDP GSOFred Klassen1-0/+5
2019-06-07Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-5/+1
2019-06-05net: ipv4: drop unneeded likely() call around IS_ERR()Enrico Weigelt1-1/+1
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Thomas Gleixner1-5/+1
2019-05-01udp: fix GRO packet of deathEric Dumazet1-3/+10
2019-04-27udp: fix GRO reception in case of length mismatchPaolo Abeni1-4/+5
2018-12-15udp: use indirect call wrappers for GRO socket lookupPaolo Abeni1-2/+6
2018-12-15net: use indirect call wrappers at GRO transport layerPaolo Abeni1-3/+4
2018-11-07udp: implement GRO for plain UDP sockets.Paolo Abeni1-22/+87
2018-10-05udp: gro behind static keyWillem de Bruijn1-1/+1
2018-07-03Merge ra.kernel.org:/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-1/+1
2018-07-02net: fix use-after-free in GRO with ESPSabrina Dubroca1-1/+1
2018-06-26net: Convert GRO SKB handling to list_head.David Miller1-6/+7
2018-05-11udp: avoid refcount_t saturation in __udp_gso_segment()Eric Dumazet1-3/+11
2018-05-08udp: Do not copy destructor if one is not presentAlexander Duyck1-8/+14
2018-05-08udp: Add support for software checksum and GSO_PARTIAL with GSO offloadAlexander Duyck1-10/+19
2018-05-08udp: Partially unroll handling of first segment and last segmentAlexander Duyck1-14/+19
2018-05-08udp: Do not pass checksum as a parameter to GSO segmentationAlexander Duyck1-14/+18
2018-05-08udp: Do not pass MSS as parameter to GSO segmentationAlexander Duyck1-2/+4
2018-05-02udp: Complement partial checksum for GSO packetSean Tranchetti1-0/+1
2018-04-27udp: remove stray export symbolWillem de Bruijn1-1/+0
2018-04-26udp: better wmem accounting on gsoWillem de Bruijn1-1/+15
2018-04-26udp: add udp gsoWillem de Bruijn1-1/+52
2018-01-22gso: validate gso_type in GSO handlersWillem de Bruijn1-0/+3
2017-11-24net: accept UFO datagrams from tuntap and packetWillem de Bruijn1-4/+45
2017-10-08gso: fix payload length when gso_size is zeroAlexey Kodanev1-1/+1
2017-07-17inet: Remove software UFO fragmenting code.David S. Miller1-54/+4
2017-07-17net: Remove all references to SKB_GSO_UDP.David S. Miller1-4/+2
2017-04-24udp: disable inner UDP checksum offloads in IPsec caseAnsis Atteka1-0/+3
2016-10-20net: add recursion limit to GROSabrina Dubroca1-1/+1
2016-09-19gso: Support partial splitting at the frag_list pointerSteffen Klassert1-2/+4
2016-05-20gso: Remove arbitrary checks for unsupported GSOTom Herbert1-10/+0
2016-05-09Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-3/+5
2016-05-06udp_offload: Set encapsulation before inner completes.Jarno Rajahalme1-3/+5
2016-04-14GSO: Support partial segmentation offloadAlexander Duyck1-6/+21
2016-04-07udp: Remove udp_offloadsTom Herbert1-63/+0
2016-04-07udp: Add GRO functions to UDP socketTom Herbert1-32/+20
2016-03-23net: Reset encap_level to avoid resetting features on inner IP headersAlexander Duyck1-0/+1
2016-03-20tunnels: Don't apply GRO to multiple layers of encapsulation.Jesse Gross1-3/+3
2016-03-13GSO/UDP: Use skb->len instead of udph->len to determine length of original skbAlexander Duyck1-5/+10
2016-02-26GSO: Provide software checksum of tunneled UDP fragmentation offloadAlexander Duyck1-3/+12
2016-02-11udp: Use uh->len instead of skb->len to compute checksum in segmentationAlexander Duyck1-15/+13
2016-02-11udp: Clean up the use of flags in UDP segmentation offloadAlexander Duyck1-19/+18
2016-02-11net: Update remote checksum segmentation to support use of GSO checksumAlexander Duyck1-12/+10
2016-02-11net: Drop unecessary enc_features variable from tunnel segmentation functionsAlexander Duyck1-3/+3
2016-01-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-3/+7
2016-01-10udp: restrict offloads to one namespaceHannes Frederic Sowa1-3/+7
2015-12-15net: Eliminate NETIF_F_GEN_CSUM and NETIF_F_V[46]_CSUMTom Herbert1-2/+3
2015-04-03ipv4: coding style: comparison for inequality with NULLIan Morris1-2/+2
2015-02-11udp: Set SKB_GSO_UDP_TUNNEL* in UDP GRO pathTom Herbert1-1/+12
2015-01-14udp: pass udp_offload struct to UDP gro callbacksTom Herbert1-2/+5
2014-11-05net: Remove MPLS GSO feature.Pravin B Shelar1-2/+1
2014-11-05udp: Changes to udp_offload to support remote checksum offloadTom Herbert1-2/+16
2014-11-05udp: Offload outer UDP tunnel csum if availableTom Herbert1-16/+36
2014-10-20net: gso: use feature flag argument in all protocol gso handlersFlorian Westphal1-1/+1
2014-10-03fou: eliminate IPv4,v6 specific GRO functionsTom Herbert1-0/+1
2014-10-01udp: Generalize skb_udp_segmentTom Herbert1-5/+46
2014-09-26net: Remove gso_send_check as an offload callbackTom Herbert1-6/+0
2014-09-26udp: move logic out of udp[46]_ufo_send_checkTom Herbert1-22/+15
2014-09-19fou: Add GRO supportTom Herbert1-1/+4
2014-09-12udp: Fix inverted NAPI_GRO_CB(skb)->flush testScott Wood1-1/+1
2014-09-09ipv4: udp4_gro_complete() is staticEric Dumazet1-1/+1
2014-09-01udp: Add support for doing checksum unnecessary conversionTom Herbert1-8/+17
2014-08-29net: Allow GRO to use and set levels of checksum unnecessaryTom Herbert1-2/+3
2014-08-24udp: additional GRO supportTom Herbert1-17/+44
2014-07-29net/udp_offload: Use IS_ERR_OR_NULLHimangi Saraogi1-1/+1
2014-07-14udp: Move udp_tunnel_segment into udp_offload.cTom Herbert1-0/+76
2014-06-11net: Add skb_gro_postpull_rcsum to udp and vxlanTom Herbert1-0/+1
2014-06-04gre: Call gso_make_checksumTom Herbert1-1/+2
2014-06-04net: Add GSO support for UDP tunnels with checksumTom Herbert1-1/+3
2014-02-04net/ipv4: Use proper RCU APIs for writer-side in udp_offload.cShlomo Pongratz1-7/+8
2014-01-30net/ipv4: Use non-atomic allocation of udp offloads structure instanceOr Gerlitz1-1/+1
2014-01-23net/udp_offload: Handle static checker complaintsShlomo Pongratz1-4/+4
2014-01-21net: Add GRO support for UDP encapsulating protocolsOr Gerlitz1-0/+143
2014-01-02ipv4: fix tunneled VM traffic over hw VXLAN/GRE GSO NICWei-Chun Chao1-18/+19
2013-10-19ipip: add GSO/TSO supportEric Dumazet1-0/+1
2013-06-12net: udp4: move GSO functions to udp_offloadDaniel Borkmann1-0/+100