The dev_num field in VMBus channel structure is assigned to the first available number when the channel is offered. Udev or other user programs can use this value from sysfs to set proper device names. Set probe_type to PROBE_DEFAULT_STRATEGY, so the user has an option to enable Async probing when needed. Sync probing mode is still the default. Signed-off-by: Haiyang Zhang <haiyangz@xxxxxxxxxxxxx> --- drivers/net/hyperv/netvsc_drv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index f3f9eb8..4a2f294 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -2496,7 +2496,7 @@ static int netvsc_resume(struct hv_device *dev) .suspend = netvsc_suspend, .resume = netvsc_resume, .driver = { - .probe_type = PROBE_FORCE_SYNCHRONOUS, + .probe_type = PROBE_DEFAULT_STRATEGY, }, }; -- 1.8.3.1