Re: [PATCH v3 01/15] bus/vmbus: scan and get the network device

2022-02-17 Thread Stephen Hemminger
On Thu, 17 Feb 2022 21:35:59 +0530 Srikanth Kaka wrote: > +/* > + * GUID associated with network devices > + * {f8615163-df3e-46c5-913f-f2d2f965ed0e} > + */ > +static const rte_uuid_t vmbus_nic_uuid = { > + 0xf8, 0x61, 0x51, 0x63, > + 0xdf, 0x3e, > + 0x46, 0xc5, > + 0x91, 0x3f, >

[PATCH v3 01/15] bus/vmbus: scan and get the network device

2022-02-17 Thread Srikanth Kaka
Using sysctl, all the devices on the VMBUS are identified by the PMD. On finding the Network device's device id, it is added to VMBUS dev list. Signed-off-by: Srikanth Kaka Signed-off-by: Vag Singh Signed-off-by: Anand Thulasiram --- drivers/bus/vmbus/freebsd/vmbus_bus.c | 249