Module Name: src Committed By: nonaka Date: Fri Mar 1 08:17:51 UTC 2019
Modified Files: src/sys/arch/amd64/conf: GENERIC src/sys/arch/i386/conf: GENERIC src/sys/dev/hyperv: hvheartbeat.c hvshutdown.c hvtimesync.c Log Message: Update Hyper-V related drivers description. To generate a diff of this commit: cvs rdiff -u -r1.517 -r1.518 src/sys/arch/amd64/conf/GENERIC cvs rdiff -u -r1.1202 -r1.1203 src/sys/arch/i386/conf/GENERIC cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hyperv/hvheartbeat.c \ src/sys/dev/hyperv/hvshutdown.c src/sys/dev/hyperv/hvtimesync.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/amd64/conf/GENERIC diff -u src/sys/arch/amd64/conf/GENERIC:1.517 src/sys/arch/amd64/conf/GENERIC:1.518 --- src/sys/arch/amd64/conf/GENERIC:1.517 Sat Feb 23 03:10:06 2019 +++ src/sys/arch/amd64/conf/GENERIC Fri Mar 1 08:17:51 2019 @@ -1,4 +1,4 @@ -# $NetBSD: GENERIC,v 1.517 2019/02/23 03:10:06 kamil Exp $ +# $NetBSD: GENERIC,v 1.518 2019/03/01 08:17:51 nonaka Exp $ # # GENERIC machine description file # @@ -22,7 +22,7 @@ include "arch/amd64/conf/std.amd64" options INCLUDE_CONFIG_FILE # embed config file in kernel binary -#ident "GENERIC-$Revision: 1.517 $" +#ident "GENERIC-$Revision: 1.518 $" maxusers 64 # estimated number of users @@ -1089,9 +1089,10 @@ vioscsi* at virtio? # Virtio SCSI devi vmbus* at acpi? # Hyper-V VMBus hvn* at vmbus? # Hyper-V NetVSC hvs* at vmbus? # Hyper-V StorVSC -hvheartbeat* at vmbus? # Hyper-V Heartbeat -hvshutdown* at vmbus? # Hyper-V Shutdown -hvtimesync* at vmbus? # Hyper-V Timesync +hvheartbeat* at vmbus? # Hyper-V Heartbeat Service +hvshutdown* at vmbus? # Hyper-V Geust Shutdown Service +hvtimesync* at vmbus? # Hyper-V Time Synchronization Service +hvkvp* at vmbus? # Hyper-V Data Exchange Service # Pull in optional local configuration cinclude "arch/amd64/conf/GENERIC.local" Index: src/sys/arch/i386/conf/GENERIC diff -u src/sys/arch/i386/conf/GENERIC:1.1202 src/sys/arch/i386/conf/GENERIC:1.1203 --- src/sys/arch/i386/conf/GENERIC:1.1202 Sat Feb 23 12:28:22 2019 +++ src/sys/arch/i386/conf/GENERIC Fri Mar 1 08:17:51 2019 @@ -1,4 +1,4 @@ -# $NetBSD: GENERIC,v 1.1202 2019/02/23 12:28:22 kamil Exp $ +# $NetBSD: GENERIC,v 1.1203 2019/03/01 08:17:51 nonaka Exp $ # # GENERIC machine description file # @@ -22,7 +22,7 @@ include "arch/i386/conf/std.i386" options INCLUDE_CONFIG_FILE # embed config file in kernel binary -#ident "GENERIC-$Revision: 1.1202 $" +#ident "GENERIC-$Revision: 1.1203 $" maxusers 64 # estimated number of users @@ -1430,9 +1430,10 @@ vioscsi* at virtio? # Virtio SCSI devi vmbus* at acpi? # Hyper-V VMBus hvn* at vmbus? # Hyper-V NetVSC hvs* at vmbus? # Hyper-V StorVSC -hvheartbeat* at vmbus? # Hyper-V Heartbeat -hvshutdown* at vmbus? # Hyper-V Shutdown -hvtimesync* at vmbus? # Hyper-V Timesync +hvheartbeat* at vmbus? # Hyper-V Heartbeat Service +hvshutdown* at vmbus? # Hyper-V Guest Shutdown Service +hvtimesync* at vmbus? # Hyper-V Time Synchronization Service +hvkvp* at vmbus? # Hyper-V Data Exchange Service # Pull in optional local configuration Index: src/sys/dev/hyperv/hvheartbeat.c diff -u src/sys/dev/hyperv/hvheartbeat.c:1.1 src/sys/dev/hyperv/hvheartbeat.c:1.2 --- src/sys/dev/hyperv/hvheartbeat.c:1.1 Fri Feb 15 08:54:01 2019 +++ src/sys/dev/hyperv/hvheartbeat.c Fri Mar 1 08:17:51 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: hvheartbeat.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $ */ +/* $NetBSD: hvheartbeat.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $ */ /*- * Copyright (c) 2014,2016 Microsoft Corp. @@ -28,7 +28,7 @@ #include <sys/cdefs.h> #ifdef __KERNEL_RCSID -__KERNEL_RCSID(0, "$NetBSD: hvheartbeat.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hvheartbeat.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $"); #endif #ifdef __FBSDID __FBSDID("$FreeBSD: head/sys/dev/hyperv/utilities/vmbus_heartbeat.c 310324 2016-12-20 09:46:14Z sephe $"); @@ -80,7 +80,7 @@ hvheartbeat_attach(device_t parent, devi int error; aprint_naive("\n"); - aprint_normal(": Hyper-V Heartbeat\n"); + aprint_normal(": Hyper-V Heartbeat Service\n"); error = vmbusic_attach(self, aa, hvheartbeat_channel_cb); if (error) Index: src/sys/dev/hyperv/hvshutdown.c diff -u src/sys/dev/hyperv/hvshutdown.c:1.1 src/sys/dev/hyperv/hvshutdown.c:1.2 --- src/sys/dev/hyperv/hvshutdown.c:1.1 Fri Feb 15 08:54:01 2019 +++ src/sys/dev/hyperv/hvshutdown.c Fri Mar 1 08:17:51 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: hvshutdown.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $ */ +/* $NetBSD: hvshutdown.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $ */ /*- * Copyright (c) 2014,2016 Microsoft Corp. @@ -28,7 +28,7 @@ #include <sys/cdefs.h> #ifdef __KERNEL_RCSID -__KERNEL_RCSID(0, "$NetBSD: hvshutdown.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hvshutdown.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $"); #endif #ifdef __FBSDID __FBSDID("$FreeBSD: head/sys/dev/hyperv/utilities/vmbus_shutdown.c 310324 2016-12-20 09:46:14Z sephe $"); @@ -86,7 +86,7 @@ hvshutdown_attach(device_t parent, devic int error; aprint_naive("\n"); - aprint_normal(": Hyper-V Shutdown\n"); + aprint_normal(": Hyper-V Guest Shutdown Service\n"); error = vmbusic_attach(self, aa, hvshutdown_channel_cb); if (error) Index: src/sys/dev/hyperv/hvtimesync.c diff -u src/sys/dev/hyperv/hvtimesync.c:1.1 src/sys/dev/hyperv/hvtimesync.c:1.2 --- src/sys/dev/hyperv/hvtimesync.c:1.1 Fri Feb 15 08:54:01 2019 +++ src/sys/dev/hyperv/hvtimesync.c Fri Mar 1 08:17:51 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: hvtimesync.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $ */ +/* $NetBSD: hvtimesync.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $ */ /*- * Copyright (c) 2014,2016-2017 Microsoft Corp. @@ -28,7 +28,7 @@ #include <sys/cdefs.h> #ifdef __KERNEL_RCSID -__KERNEL_RCSID(0, "$NetBSD: hvtimesync.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hvtimesync.c,v 1.2 2019/03/01 08:17:51 nonaka Exp $"); #endif #ifdef __FBSDID __FBSDID("$FreeBSD: head/sys/dev/hyperv/utilities/vmbus_timesync.c 322488 2017-08-14 06:00:50Z sephe $"); @@ -93,7 +93,7 @@ hvtimesync_attach(device_t parent, devic int error; aprint_naive("\n"); - aprint_normal(": Hyper-V Timesync\n"); + aprint_normal(": Hyper-V Time Synchronization Service\n"); error = vmbusic_attach(self, aa, hvtimesync_channel_cb); if (error)