From noreply at github.com Thu May 30 12:08:05 2024 From: noreply at github.com (Lucas Holt) Date: Thu, 30 May 2024 09:08:05 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 706fb4: Add support for 4 com ports to bhyve. Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 706fb403bd56c492790424d41d37377c4e2f5c8b https://github.com/MidnightBSD/src/commit/706fb403bd56c492790424d41d37377c4e2f5c8b Author: Lucas Holt Date: 2024-05-30 (Thu, 30 May 2024) Changed paths: M usr.sbin/bhyve/bhyve.8 M usr.sbin/bhyve/pci_lpc.c M usr.sbin/bhyve/uart_emul.c Log Message: ----------- Add support for 4 com ports to bhyve. Obtained from: FreeBSD, https://cgit.freebsd.org/src/patch/?id=eed1cc6cdfa743e52ac3ea0b788e95b069a5f2f3 To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Thu May 30 12:54:01 2024 From: noreply at github.com (Lucas Holt) Date: Thu, 30 May 2024 09:54:01 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 43e280: Add support for 4 com ports to bhyve. Message-ID: Branch: refs/heads/stable/3.2 Home: https://github.com/MidnightBSD/src Commit: 43e280bb08d08feb0d9958f671b8d0209aa38711 https://github.com/MidnightBSD/src/commit/43e280bb08d08feb0d9958f671b8d0209aa38711 Author: Lucas Holt Date: 2024-05-30 (Thu, 30 May 2024) Changed paths: M usr.sbin/bhyve/bhyve.8 M usr.sbin/bhyve/pci_lpc.c M usr.sbin/bhyve/uart_emul.c Log Message: ----------- Add support for 4 com ports to bhyve. Obtained from: FreeBSD, https://cgit.freebsd.org/src/patch/?id=eed1cc6cdfa743e52ac3ea0b788e95b069a5f2f3 Commit: f42ce31e8f6f2b75cc287892af9321376bb86d0d https://github.com/MidnightBSD/src/commit/f42ce31e8f6f2b75cc287892af9321376bb86d0d Author: Lucas Holt Date: 2024-05-30 (Thu, 30 May 2024) Changed paths: M usr.sbin/bhyve/rfb.c Log Message: ----------- Fix issues with various VNC clients. - support VNC version 3.3 (macos "Screen Sharing" builtin client) - wait until client has requested an update prior to sending framebuffer data - don't send an update if no framebuffer updates detected - increase framebuffer poll frequency to 30Hz, and double that when kbd/mouse input detected - zero uninitialized array elements in rfb_send_server_init_msg() - fix overly large allocation in rfb_init() - use atomics for flags shared between input and output threads - use #defines for constants Obtained from: FreeBSD Compare: https://github.com/MidnightBSD/src/compare/27c98c7a2d1e...f42ce31e8f6f To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Thu May 30 12:54:01 2024 From: noreply at github.com (Lucas Holt) Date: Thu, 30 May 2024 09:54:01 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] d628be: Fix issues with various VNC clients. Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: d628be5ddc7082fdbe165c98341ada5f9ad7d258 https://github.com/MidnightBSD/src/commit/d628be5ddc7082fdbe165c98341ada5f9ad7d258 Author: Lucas Holt Date: 2024-05-30 (Thu, 30 May 2024) Changed paths: M usr.sbin/bhyve/rfb.c Log Message: ----------- Fix issues with various VNC clients. - support VNC version 3.3 (macos "Screen Sharing" builtin client) - wait until client has requested an update prior to sending framebuffer data - don't send an update if no framebuffer updates detected - increase framebuffer poll frequency to 30Hz, and double that when kbd/mouse input detected - zero uninitialized array elements in rfb_send_server_init_msg() - fix overly large allocation in rfb_init() - use atomics for flags shared between input and output threads - use #defines for constants Obtained from: FreeBSD To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Thu May 30 13:12:06 2024 From: noreply at github.com (Lucas Holt) Date: Thu, 30 May 2024 10:12:06 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 582a09: bhyve(8): Add VM Generation Counter ACPI device Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 582a0940bec459c9bef6ce0237a1538249facc1f https://github.com/MidnightBSD/src/commit/582a0940bec459c9bef6ce0237a1538249facc1f Author: Lucas Holt Date: 2024-05-30 (Thu, 30 May 2024) Changed paths: M usr.sbin/bhyve/Makefile M usr.sbin/bhyve/acpi.c M usr.sbin/bhyve/acpi.h M usr.sbin/bhyve/bhyverun.c M usr.sbin/bhyve/pm.c A usr.sbin/bhyve/vmgenc.c A usr.sbin/bhyve/vmgenc.h Log Message: ----------- bhyve(8): Add VM Generation Counter ACPI device Add an implementatation of the 'Virtual Machine Generation ID' spec to Bhyve. The spec provides a randomly generated GUID (at bhyve start) in device memory, along with an ACPI device with _CID VM_Gen_Counter and ADDR evaluating to a Package pointing at that GUID. A GPE is defined which Notifies the ACPI Device when the generation changes (such as when a snapshot is rolled back). At this time, Bhyve does not support snapshotting, so the GPE is never actually raised. Obtained from:FreeBSD 13 To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun Jun 2 08:49:14 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 02 Jun 2024 05:49:14 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 574e7d: cleanup Message-ID: Branch: refs/heads/stable/3.1 Home: https://github.com/MidnightBSD/src Commit: 574e7d0c5c5305f5c4c28e2649d4eef873cd9389 https://github.com/MidnightBSD/src/commit/574e7d0c5c5305f5c4c28e2649d4eef873cd9389 Author: Lucas Holt Date: 2024-06-02 (Sun, 02 Jun 2024) Changed paths: M release/release.sh Log Message: ----------- cleanup Commit: f16b8c5e6edf5ee20a0763598cc870494c623805 https://github.com/MidnightBSD/src/commit/f16b8c5e6edf5ee20a0763598cc870494c623805 Author: Lucas Holt Date: 2024-06-02 (Sun, 02 Jun 2024) Changed paths: M share/dtrace/Makefile M share/dtrace/README M share/dtrace/blocking M share/dtrace/disklatency M share/dtrace/disklatencycmd M share/dtrace/hotopen M share/dtrace/nfsattrstats M share/dtrace/nfsclienttime M share/dtrace/retval M share/dtrace/siftr M share/dtrace/tcpconn M share/dtrace/tcpdebug M share/dtrace/tcpstate M share/dtrace/tcptrack M share/dtrace/udptrack Log Message: ----------- cleanup Compare: https://github.com/MidnightBSD/src/compare/39431c0c74c2...f16b8c5e6edf To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun Jun 2 08:50:21 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 02 Jun 2024 12:50:21 +0000 (UTC) Subject: [Midnightbsd-cvs] [MidnightBSD/src] dc8355: cleanup Message-ID: Branch: refs/heads/stable/3.2 Home: https://github.com/MidnightBSD/src Commit: dc8355fd1d92627f10e63603fe82346bea567dca https://github.com/MidnightBSD/src/commit/dc8355fd1d92627f10e63603fe82346bea567dca Author: Lucas Holt Date: 2024-06-02 (Sun, 02 Jun 2024) Changed paths: M share/dtrace/Makefile M share/dtrace/README M share/dtrace/blocking M share/dtrace/disklatency M share/dtrace/disklatencycmd M share/dtrace/hotopen M share/dtrace/nfsattrstats M share/dtrace/nfsclienttime M share/dtrace/retval M share/dtrace/siftr M share/dtrace/tcpconn M share/dtrace/tcpdebug M share/dtrace/tcpstate M share/dtrace/tcptrack M share/dtrace/udptrack Log Message: ----------- cleanup To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications From noreply at github.com Sun Jun 2 08:50:33 2024 From: noreply at github.com (Lucas Holt) Date: Sun, 02 Jun 2024 05:50:33 -0700 Subject: [Midnightbsd-cvs] [MidnightBSD/src] 20a8ca: cleanup Message-ID: Branch: refs/heads/master Home: https://github.com/MidnightBSD/src Commit: 20a8ca458e58c60c492bc773187ae6644b17fa15 https://github.com/MidnightBSD/src/commit/20a8ca458e58c60c492bc773187ae6644b17fa15 Author: Lucas Holt Date: 2024-06-02 (Sun, 02 Jun 2024) Changed paths: M share/dtrace/Makefile M share/dtrace/README M share/dtrace/blocking M share/dtrace/disklatency M share/dtrace/disklatencycmd M share/dtrace/hotopen M share/dtrace/nfsattrstats M share/dtrace/nfsclienttime M share/dtrace/retval M share/dtrace/siftr M share/dtrace/tcpconn M share/dtrace/tcpdebug M share/dtrace/tcpstate M share/dtrace/tcptrack M share/dtrace/udptrack Log Message: ----------- cleanup To unsubscribe from these emails, change your notification settings at https://github.com/MidnightBSD/src/settings/notifications