From: "Jason A. Donenfeld" <ja...@zx2c4.com> Date: Mon, 10 Jul 2017 05:19:58 +0200
> Being able to utilize this makes code a lot simpler and cleaner. It's > easier in many cases for drivers to pass around their private data > structure, while occationally needing to dip into net_device, rather > than the other way around, which results in tons of calls to netdev_priv > in the top of every single function, which makes everything confusing > and less clear. Additionally, this enables a "correct" way of doing such > a thing, instead of having drivers attempt to reinvent the wheel and > screw it up. > > Signed-off-by: Jason A. Donenfeld <ja...@zx2c4.com> I disagree. Assuming one can go from the driver private to the netdev object trivially is a worse assumption than the other way around, and locks us into the current implementation of how the netdev and driver private memory is allocated. If you want to style your driver such that the private is passed around instead of the netdev, put a pointer back to the netdev object in your private data structure. Which is exactly what the ioc3-eth driver ought to be doing.