Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

hyperv: Move hv_connection_id to hyperv-tlfs.h

This definition is in the wrong file; it is part of the TLFS doc.

Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Acked-by: Wei Liu <wei.liu@kernel.org>
Reviewed-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/1732577084-2122-2-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1732577084-2122-2-git-send-email-nunodasneves@linux.microsoft.com>

authored by

Nuno Das Neves and committed by
Wei Liu
9696d9ae 9d895519

+9 -9
+9
include/asm-generic/hyperv-tlfs.h
··· 871 871 u8 data[HV_HYPERCALL_MMIO_MAX_DATA_LENGTH]; 872 872 } __packed; 873 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 + 874 883 #endif
-9
include/linux/hyperv.h
··· 768 768 struct vmbus_channel_close_channel msg; 769 769 }; 770 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 771 enum vmbus_device_type { 781 772 HV_IDE = 0, 782 773 HV_SCSI,