Date: Sat, 28 Nov 2020 04:21:22 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r368119 - head/usr.sbin/bhyve Message-ID: <202011280421.0AS4LMTX014457@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Sat Nov 28 04:21:22 2020 New Revision: 368119 URL: https://svnweb.freebsd.org/changeset/base/368119 Log: Suspend I/O on ahci-cd devices during a snapshot. Submitted by: Vitaliy Gusev <gusev.vitaliy@gmail.com> Modified: head/usr.sbin/bhyve/snapshot.c Modified: head/usr.sbin/bhyve/snapshot.c ============================================================================== --- head/usr.sbin/bhyve/snapshot.c Sat Nov 28 04:06:09 2020 (r368118) +++ head/usr.sbin/bhyve/snapshot.c Sat Nov 28 04:21:22 2020 (r368119) @@ -154,7 +154,7 @@ const struct vm_snapshot_dev_info snapshot_devs[] = { { "e1000", pci_snapshot, NULL, NULL }, { "ahci", pci_snapshot, pci_pause, pci_resume }, { "ahci-hd", pci_snapshot, pci_pause, pci_resume }, - { "ahci-cd", pci_snapshot, NULL, NULL }, + { "ahci-cd", pci_snapshot, pci_pause, pci_resume }, }; const struct vm_snapshot_kern_info snapshot_kern_structs[] = {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011280421.0AS4LMTX014457>