diff options
author | sephe <sephe@FreeBSD.org> | 2016-04-26 05:21:27 +0000 |
---|---|---|
committer | sephe <sephe@FreeBSD.org> | 2016-04-26 05:21:27 +0000 |
commit | f54e02829bc569bcd71bef22973dc9cf1f8517e8 (patch) | |
tree | df213f823c5ab27b83d2cc88f736ea7b791cd1e7 /sys/dev/hyperv/include | |
parent | 75f95734a8d4ea597a5a19768e778c0f954f5ff2 (diff) | |
download | FreeBSD-src-f54e02829bc569bcd71bef22973dc9cf1f8517e8.zip FreeBSD-src-f54e02829bc569bcd71bef22973dc9cf1f8517e8.tar.gz |
hyperv/channel: Git rid of the sub-channel creation callback
It is no longer used.
MFC after: 1 week
Sponsored by: Microsoft OSTC
Diffstat (limited to 'sys/dev/hyperv/include')
-rw-r--r-- | sys/dev/hyperv/include/hyperv.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/dev/hyperv/include/hyperv.h b/sys/dev/hyperv/include/hyperv.h index 7d46db2..aeec8ec 100644 --- a/sys/dev/hyperv/include/hyperv.h +++ b/sys/dev/hyperv/include/hyperv.h @@ -691,7 +691,6 @@ typedef struct { } hv_vmbus_ring_buffer_info; typedef void (*hv_vmbus_pfn_channel_callback)(void *context); -typedef void (*hv_vmbus_sc_creation_callback)(void *context); typedef enum { HV_CHANNEL_OFFER_STATE, @@ -804,13 +803,6 @@ typedef struct hv_vmbus_channel { * response on the same channel. */ - /* - * Multi-channel creation callback. This callback will be called in - * process context when a Multi-channel offer is received from the host. - * The guest can open the Multi-channel in the context of this callback. - */ - hv_vmbus_sc_creation_callback sc_creation_callback; - struct mtx sc_lock; /* |