Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F106130847
D8612.id22430.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D8612.id22430.diff
View Options
Index: sys/dev/hyperv/netvsc/hn_nvs.c
===================================================================
--- sys/dev/hyperv/netvsc/hn_nvs.c
+++ sys/dev/hyperv/netvsc/hn_nvs.c
@@ -109,10 +109,8 @@
vmbus_xact_deactivate(xact);
return (NULL);
}
- if (HN_CAN_SLEEP(sc))
- hdr = vmbus_xact_wait(xact, &resplen);
- else
- hdr = vmbus_xact_busywait(xact, &resplen);
+ hdr = vmbus_chan_xact_wait(sc->hn_prichan, xact, &resplen,
+ HN_CAN_SLEEP(sc));
/*
* Check this NVS response message.
Index: sys/dev/hyperv/netvsc/hn_rndis.c
===================================================================
--- sys/dev/hyperv/netvsc/hn_rndis.c
+++ sys/dev/hyperv/netvsc/hn_rndis.c
@@ -232,10 +232,8 @@
if_printf(sc->hn_ifp, "RNDIS ctrl send failed: %d\n", error);
return (NULL);
}
- if (HN_CAN_SLEEP(sc))
- return (vmbus_xact_wait(xact, comp_len));
- else
- return (vmbus_xact_busywait(xact, comp_len));
+ return (vmbus_chan_xact_wait(sc->hn_prichan, xact, comp_len,
+ HN_CAN_SLEEP(sc)));
}
static const void *
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 26, 10:08 PM (11 h, 7 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15608242
Default Alt Text
D8612.id22430.diff (1 KB)
Attached To
Mode
D8612: hyperv/hn: Utilize vmbus_chan_xact_wait
Attached
Detach File
Event Timeline
Log In to Comment