We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d89551 commit 9696d9aCopy full SHA for 9696d9a
include/asm-generic/hyperv-tlfs.h
@@ -871,4 +871,13 @@ struct hv_mmio_write_input {
871
u8 data[HV_HYPERCALL_MMIO_MAX_DATA_LENGTH];
872
} __packed;
873
874
+/* Define connection identifier type. */
875
+union hv_connection_id {
876
+ u32 asu32;
877
+ struct {
878
+ u32 id:24;
879
+ u32 reserved:8;
880
+ } u;
881
+};
882
+
883
#endif
include/linux/hyperv.h
@@ -768,15 +768,6 @@ struct vmbus_close_msg {
768
struct vmbus_channel_close_channel msg;
769
};
770
771
-/* Define connection identifier type. */
772
-union hv_connection_id {
773
- u32 asu32;
774
- struct {
775
- u32 id:24;
776
- u32 reserved:8;
777
- } u;
778
-};
779
-
780
enum vmbus_device_type {
781
HV_IDE = 0,
782
HV_SCSI,
0 commit comments