Re: [PATCH 2/2] ipv4: Change rt->rt_iif encoding.
From: Nicolas de Pesloüan <hidden>
Date: 2012-07-24 22:12:47
Le 24/07/2012 01:14, David Miller a écrit : [...]
I wonder if we should just get rid of all of that orig_dev logic and simply update skb->skb_iif every time we hit the code starting at label "another_round"
It clearly depends on the exact meaning of orig_dev. When we studied the usage of orig_dev before removing it from bonding, it was clear that two different meanings existed: - From the bonding point of view, is was "the device one level below current device" (the slave, from the master's point of view). - From the af_packet point of view, is was "the real original device that received the packet". As bonding don't use orig_dev anymore, the remaining meaning should logically be "the real original device that received the packet". But as __netif_receive_skb() is recursively called in many cases, setting orig_dev to something new every time, this meaning is probably mostly inconsistent. As such, it sounds appropriate to remove orig_dev and use skb_iif instead. Nicolas.