How GRO works

All modern device drivers should be doing two things, firstthey should use NAPI for interrupt mitigation plus simplermutual exclusion (all RX code paths run in software interruptcontext just like TX), and use the GRO NAPI interfaces forfeeding packets into the network stack.

Like just about anything else in the networking, GRO isall about increasing performance. The idea is that wecan accumulate consequetive packets (based upon protocolspecific sequence number checks etc.) into one huge packet.Then process the whole group as one packet object. (inNetwork Algorithmics this would be principle P2c,Shift computation in time, Share expenses, batch)

GRO help significantly on everyday systems, but it helpseven more strongly on machines making use of virtualizationsince bridging streams of packets is very common and GRObatching decreases the number of switching operations.

Each NAPI instance maintains a list of GRO packets we aretrying to accumulate to, called napi->gro_list.The GRO layer dispatches to the network layer protocolthat the packet is for. Each network layer that supportsGRO implements both a ptype->gro_receive and aptype->gro_complete method.

->gro_receive attempts to match the incoming skbwith ones that have already been queued onto the ->gro_listAt this time, the IP and TCP headers are popped from the front of thepackets (from GRO's perspective, that actual normal skbpacket header pointers are left alone). Also, the GRO'ability stateof all packets in the GRO list and the new incoming SKB are updated.

Once we've committed to receiving a GRO skb, we invoke the->gro_complete method. It is at this point thatwe make the collection of individual packets look truly like onehuge one. Checksums are updated, as are various private GSOstate flags in the head 'skb' given to the network stack.

We do not try to accumulate GRO packets infinitely. At theend of a NAPI poll quantum, we force flush the GRO packetlist.

For ipv4 TCP there are various criteria for GRO matching.

  • Source and destination address must match
  • TOS and protocol fields must be the same
  • Source and destination ports must match
Certain events cause the current GRO bunch to get flushedout. For example:
  • ID field not being in sequence with existing packets
  • Don't fragment bit clear
  • TCP CWR congestion indication being set
  • TCP ACK sequence mis-match
  • Any TCP option mis-match
  • TCP sequence not being in-order

The most important attribute of GRO is that it preservesthe received packets in their entirety, such that if wedon't actually receive the packets locally (for examplewe want to bridge or route them) they can be perfectlyand accurately reconstituted to the transmit path. Thisis because none of the packet headers are modified (theyare entirely preserved) and since GRO requires completelyregular packet streams for merging, the packet boundarypoints are known precisely as well. The GRO mergedpacket can be completely unraveled and it will mimmickexactly the incoming packet sequence.

GRO mainly the work of Herbert Xu. Various driver authorsand others helped him tune and optimize the implementation.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值