Re: [PATCH net-next 0/4 v2] net: VRF support in IPv6 stack
From: David Miller <davem@davemloft.net> Date: 2015-10-11 11:32:58
Please minimize the crazy pointer casting in this series.
All of these casts between ipv4/ipv6 route objects and dsts are
completely unnecessary.
Prefer to maintain an rt/rt6 in local variables, and then when you
need the dst say &rt6->dst, or to get the device say rt6->dst.dev or
similar.
Thanks.