On Sat, Nov 09, 2019 at 09:27:47AM -0800, Jakub Kicinski wrote: > On Fri, 8 Nov 2019 20:44:26 -0400, Jason Gunthorpe wrote: > > On Fri, Nov 08, 2019 at 01:45:59PM -0800, Jakub Kicinski wrote: > > > Yes, my suggestion to use mdev was entirely based on the premise that > > > the purpose of this work is to get vfio working.. otherwise I'm unclear > > > as to why we'd need a bus in the first place. If this is just for > > > containers - we have macvlan offload for years now, with no need for a > > > separate device. > > > > This SF thing is a full fledged VF function, it is not at all like > > macvlan. This is perhaps less important for the netdev part of the > > world, but the difference is very big for the RDMA side, and should > > enable VFIO too.. > > Well, macvlan used VMDq so it was pretty much a "legacy SR-IOV" VF. > I'd perhaps need to learn more about RDMA to appreciate the difference. It has a lot to do with the how the RDMA functionality works in the HW.. At least for mlx the RDMA is 'below' all the netdev stuff, so even though netdev has some offloaded vlan RDMA sees, essentially, the union of all the vlan's on the system. Which at least breaks the security model of a macvlan device for net-namespaces. Maybe with new HW something could be done, but today, the HW is limited. > > > On the RDMA/Intel front, would you mind explaining what the main > > > motivation for the special buses is? I'm a little confurious. > > > > Well, the issue is driver binding. For years we have had these > > multi-function netdev drivers that have a single PCI device which must > > bind into multiple subsystems, ie mlx5 does netdev and RDMA, the cxgb > > drivers do netdev, RDMA, SCSI initiator, SCSI target, etc. [And I > > expect when NVMe over TCP rolls out we will have drivers like cxgb4 > > binding to 6 subsytems in total!] > > What I'm missing is why is it so bad to have a driver register to > multiple subsystems. Well, for example, if you proposed to have a RDMA driver in drivers/net/ethernet/foo/, I would NAK it, and I hope Dave would too. Same for SCSI and nvme. This Linux process is that driver code for a subsystem lives in the subsystem and should be in a subsystem specific module. While it is technically possible to have a giant driver, it distorts our process in a way I don't think is good. So, we have software layers between the large Linux subsystems just to make the development side manageable and practical. .. once the code lives in another subsystem, it is in a new module. A new module requires some way to connect them all together, the driver core is the logical way to do this connection. I don't think a driver should be split beyond that. Even my suggestion of a 'core' may in practice just be the netdev driver as most of the other modules can't function without netdev. ie you can't do iSCSI without an IP stack. > > What is a generation? Mellanox has had a stable RDMA driver across > > many sillicon generations. Intel looks like their new driver will > > support at least the last two or more sillicon generations.. > > > > RDMA drivers are monstrous complex things, there is a big incentive to > > not respin them every time a new chip comes out. > > Ack, but then again none of the drivers gets rewritten from scratch, > right? It's not that some "sub-drivers" get reused and some not, no? Remarkably Intel is saying their new RDMA 'sub-driver' will be compatible with their ICE and pre-ICE (sorry, forget the names) netdev core drivers. netdev will get a different driver for each, but RDMA will use the same driver. Jason