From owner-freebsd-virtualization@freebsd.org Sun Sep 18 00:31:08 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8EC25BD6210 for ; Sun, 18 Sep 2016 00:31:08 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from mx1.scaleengine.net (mx1.scaleengine.net [209.51.186.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64AF03D3 for ; Sun, 18 Sep 2016 00:31:08 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from [10.1.1.2] (unknown [10.1.1.2]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id E989DDA36 for ; Sun, 18 Sep 2016 00:31:00 +0000 (UTC) Subject: Re: High vCPU Counts in bhyve To: freebsd-virtualization@freebsd.org References: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> From: Allan Jude Message-ID: <4ede10b9-95b2-f5ba-522e-de08a3937068@freebsd.org> Date: Sat, 17 Sep 2016 20:30:57 -0400 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UGNGL4icqnMEjcTvGneWvp6qVMOEBMWSe" X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 00:31:08 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --UGNGL4icqnMEjcTvGneWvp6qVMOEBMWSe Content-Type: multipart/mixed; boundary="VxLd2RLeGfegAfNgJlMKv4cjrpEFMdLbC"; protected-headers="v1" From: Allan Jude To: freebsd-virtualization@freebsd.org Message-ID: <4ede10b9-95b2-f5ba-522e-de08a3937068@freebsd.org> Subject: Re: High vCPU Counts in bhyve References: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> In-Reply-To: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> --VxLd2RLeGfegAfNgJlMKv4cjrpEFMdLbC Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2016-09-17 19:55, Peter Grehan wrote: > Hi Trent, >=20 >> If anyone has any hints on how to get more information from this or id= eas >> on the apparent APIC error would be greatly appreciated. >=20 > Thanks for the boot logs. The bhyve bug can be seen from: >=20 > ACPI BIOS Warning (bug): Incorrect checksum in table [APIC] - 0x1C, > should be 0x0A (20160527/tbprint-229) > [7/1843] > MADT: Ignoring bogus I/O APIC ID 0MADT: Could not find APIC for SCI IRQ= 9 >=20 > .. which is pointing to the MADT table being overwritten. There is onl= y > 256 bytes allocated for this table when it is being created: >=20 > acpi.c > * MADT -> 0xf2500 (depends on #CPUs) > * FADT -> 0xf2600 (268 bytes) > ... > #define MADT_OFFSET 0x100 > #define FADT_OFFSET 0x200 >=20 > The MADT* for bhyve has a 44-byte fixed header, followed by a array of= > 8-byte 'Processor Local APIC' entries, one for each vCPU. The end of th= e > table has a 12-byte 'I/O APIC' entry, 2 10-byte 'Interrupt Source > Override' entries, and a 6-byte 'Local APIC NMI' entry. >=20 > Looking at the max #CPUs that can fit into 256 bytes: >=20 > 256 =3D 44 + N*8 + 12 + 2*10 + 6, which gives N =3D 21. The fact that i= t > worked for slightly larger values is probably due to the table entries > at the end being ignored, until eventually the I/O APIC table entry was= > corrupted by the FADT overwrite. >=20 > A quick fix to get more vCPUs is to bump the addresses of the tables in= > acpi.c following the MADT - adding say 0x500 will give you 128 vCPUs. >=20 > +#define FADT_OFFSET 0x700 > +#define HPET_OFFSET 0x840 > +#define MCFG_OFFSET 0x880 > +#define FACS_OFFSET 0x8C0 > +#define DSDT_OFFSET 0x900 > -#define FADT_OFFSET 0x200 > -#define HPET_OFFSET 0x340 > -#define MCFG_OFFSET 0x380 > -#define FACS_OFFSET 0x3C0 > -#define DSDT_OFFSET 0x400 >=20 > I'll create a bug for this so that the overwrite will be detected at > run-time, and also bump up the space to allow for some growth. >=20 > later, >=20 > Peter. >=20 > * see the ACPI spec at http://www.acpi.info/spec.htm for table details.= > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to > "freebsd-virtualization-unsubscribe@freebsd.org" Ha, so the only reason I didn't run into this, is the biggest VM i've created just happened to be 20 vCPUs on my 24 CPU system. Dodged a bullet, or, delay the discovery of this bug by 2 years. One of the two. --=20 Allan Jude --VxLd2RLeGfegAfNgJlMKv4cjrpEFMdLbC-- --UGNGL4icqnMEjcTvGneWvp6qVMOEBMWSe Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) iQIcBAEBAgAGBQJX3eBEAAoJEBmVNT4SmAt+gqQP/iwcO7EJc8+8CV5RGXwETN4W xfXo1IvOJzKhmJwtUX+3d7UaWH8eLLpK8d0NIhenlcyKCivhJSQcjnTNkvcUVWiB roFCq3cKEZe116h3Y8on/rbjgmpdIjVP5mOOLZ4qulVVY/iogHVZpX0+WdORpt/q 6yGGurYbyoxQ4fZJcIGDI9A1Rjt7ON9bNkfjPvV8iJ66ZNFkOqUFmjifEq6pKW1w thOMBVWcV033BeRpYAQ41NjM56qF6ek2GXi56p7lxeZSif5yUXsCoEs7GhaZnKPs j19gJ0ofaYhsgNzYeiyMDcqDWufCJkUiiMwjpJVwQlG/5x/qWJpnZeHwOthn1mLE FGLHxOgQw3RU3QNop9N0XMEnsdWrmU2Su5ZqeLK2laT/39VTyf7OndSUavtUrPml zrDcnId14WoOSYMFGTZ9noJTUxtmDMTZBMQ0vNRPgNmm0/JTdOylTGnfY/WO0RaI 5oN9G7y9aIIu+DIvXsYI6Ri1IdqY4j2WSj+hbddiTiTmnBGS3/i0c/PkQ15wcRHj eXZYHRUHHdSbjfrXED423r/2pm/FP45OSit+YYBg17wNLqZ6aWWrW5aIKTHqcRV/ ZfksuMIvC3VOVai3McXSPi59pExp13iiaXg6iVnyt6QmxD6nLk0e5yvOPbsJt6UP VMucH+c0VWETOq60oxEy =eMLS -----END PGP SIGNATURE----- --UGNGL4icqnMEjcTvGneWvp6qVMOEBMWSe-- From owner-freebsd-virtualization@freebsd.org Sun Sep 18 02:21:29 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A0AABDDDF4 for ; Sun, 18 Sep 2016 02:21:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69560E2 for ; Sun, 18 Sep 2016 02:21:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I2LTYp039953 for ; Sun, 18 Sep 2016 02:21:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 02:21:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 02:21:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #2 from Sepherosa Ziehau --- Can you post the hyper-v's VM configuration, i.e. get a snapshot of the VM configuration. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 02:31:36 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3599BD6074 for ; Sun, 18 Sep 2016 02:31:36 +0000 (UTC) (envelope-from zhao6014@gmail.com) Received: from mail-yb0-x232.google.com (mail-yb0-x232.google.com [IPv6:2607:f8b0:4002:c09::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A977615 for ; Sun, 18 Sep 2016 02:31:36 +0000 (UTC) (envelope-from zhao6014@gmail.com) Received: by mail-yb0-x232.google.com with SMTP id x93so65839896ybh.1 for ; Sat, 17 Sep 2016 19:31:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=Fk9gxN2oaAqQncAUEhZFbE/edc+MgL7oRGkEuVZG5/Y=; b=z+IQxEJ2aRhlPOn4MHCYxNFJdKdS/v+t7WE44UPoZOI7mNcqUxQ7NjDaSjDG04YAiD dSi5dTBAfyGAIowdihzH7+/l92PPTtj23H8ATXG+qJ1nZhigZ8iHf4rLeyeXiEHgtlrD V1F6cwtCfichAFode1tbXnHyGrcLyc8HHFUPH3OU9jLMmqNW5JZ4m/t5bsV8gvT1FJ0V nhxYlL8DUPpwBwwrO+z1Q10V6UQ2P5HDNVQjNgCrLI3qahAEzZqxWZNC0r/WKvxfrgQD NhhZjHFfYoq+gvXq5B8dXYS7fF2ccpxQvcNwARrJxHnGBuDoGfILKfUdNI0CcX9bj+eK KxfQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=Fk9gxN2oaAqQncAUEhZFbE/edc+MgL7oRGkEuVZG5/Y=; b=UWoYz6Z6H11ypuBWYKoJMW+dqmSn7hdDnIHsI1USkO2ite+CNAIR6O33fkyCTa63jC 3nlilxvxhF3/mGhirNMqgzGFt0lmE5ankx/H5SL7tnFo9bZtpR3ZLDQE1hVdfXWhckFb rpk/YAYe2jvfkseF5ImKg4duT0AwfCc+RkJRhwmOki9urBUDAE0HPsjHIylubeVPnYrB ygvr1xmYUn2X7HbqBmW6rA/tl/WLex9M3ywAGco1YigSaYCdFrQ4168Q8t54IpTh9gmO RZgXWo7GMe+clip2l2lqEwmwDhXvC0+uYTRQIId5E/CzuUPzxIzKFEAlNHZDPwi805xo NBDg== X-Gm-Message-State: AE9vXwN/Rmo7PT1LW24GHQ4sBI/EoqcZUkt/wCoYjnvJK2Ht6jlkRqPA8ySdPVK4+BNzQfqj2LqqRiCatEG8Rw== X-Received: by 10.37.197.138 with SMTP id v132mr4662380ybe.112.1474165895632; Sat, 17 Sep 2016 19:31:35 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.114.197 with HTTP; Sat, 17 Sep 2016 19:31:15 -0700 (PDT) In-Reply-To: References: From: Jov Date: Sun, 18 Sep 2016 10:31:15 +0800 Message-ID: Subject: Fwd: bhyve centos7-64 guest nvidia graphic card passthru get error when load nvidia driver To: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 02:31:36 -0000 Subject: bhyve centos7-64 guest nvidia graphic card passthru get error when load nvidia driver To: freebsd-virtualization@freebsd.org lshw on guest: *-display UNCLAIMED description: VGA compatible controller product: GM107 [GeForce GTX 750] vendor: NVIDIA Corporation physical id: 6 bus info: pci@0000:00:06.0 version: a2 width: 64 bits clock: 33MHz capabilities: pm msi pciexpress vga_controller cap_list configuration: latency=0 resources: iomemory:d00-cff memory:c1000000-c1ffffff memory:c2000000-c3ffffff ioport:2080(size=128) memory:c0080000-c00fffff dmesg on centos7: dmesg | grep -i nv [ 0.762062] rtc_cmos 00:05: alarms up to one day, y3k, 114 bytes nvram [ 1.004666] nvidia: module license 'NVIDIA' taints kernel. [ 1.011149] nvidia: module verification failed: signature and/or required key missing - tainting kernel [ 1.020598] nvidia 0000:00:06.0: can't derive routing for PCI INT A [ 1.021759] nvidia 0000:00:06.0: PCI INT A: no GSI [ 1.022640] NVRM: This PCI I/O region assigned to your NVIDIA device is invalid: NVRM: BAR1 is 0M @ 0x0 (PCI:0000:00:06.0) [ 1.024828] NVRM: The system BIOS may have misconfigured your GPU. [ 1.026083] nvidia: probe of 0000:00:06.0 failed with error -1 [ 1.028015] nvidia-nvlink: Nvlink Core is being initialized, major device number 248 [ 1.030265] NVRM: The NVIDIA probe routine failed for 1 device(s). [ 1.031360] NVRM: None of the NVIDIA graphics adapters were initialized! [ 1.032688] nvidia-nvlink: Unregistered the Nvlink Core, major device number 248 [ 1.036132] NVRM: NVIDIA init module failed! [ 1.054519] NVRM: This PCI I/O region assigned to your NVIDIA device is invalid: I use vm-bhyve,the log is : Sep 17 17:40:00: initialising Sep 17 17:40:00: [loader: grub] Sep 17 17:40:00: [uefi: no] Sep 17 17:40:00: [cpu: 2] Sep 17 17:40:00: [memory: 4096M] Sep 17 17:40:00: [hostbridge: standard] Sep 17 17:40:00: [com ports: com1] Sep 17 17:40:00: [uuid: auto] Sep 17 17:40:00: [utctime: no] Sep 17 17:40:00: [debug mode: no] Sep 17 17:40:00: [primary disk: disk0.img] Sep 17 17:40:00: [primary disk dev: file] Sep 17 17:40:00: initialising network device tap0 Sep 17 17:40:00: adding tap0 -> bridge0 (public) Sep 17 17:40:00: booting Sep 17 17:40:00: create file /stage/vm/centos7/device.map Sep 17 17:40:00: -> (hd0) /stage/vm/centos7/disk0.img Sep 17 17:40:00: create file /stage/vm/centos7/grub.cfg Sep 17 17:40:00: -> timeout=3 Sep 17 17:40:00: -> menuentry 'centos7 (bhyve run)' { Sep 17 17:40:00: -> root=hd0,1 Sep 17 17:40:00: -> linux /vmlinuz-3.10.0-327.el7.x86_64 root=/dev/mapper/centos-root LANG=en_US.UTF-8 KEYTABLE=us SYSFONT=latarcyrheb-sun16 console=ttyS0 Sep 17 17:40:00: -> initrd /initramfs-3.10.0-327.el7.x86_64.img Sep 17 17:40:00: -> } Sep 17 17:40:00: /usr/local/sbin/grub-bhyve -c /dev/nmdm0A -S -m /stage/vm/centos7/device.map -M 4096M -r host -d /stage/vm/centos7 centos7 Sep 17 17:40:52: [bhyve options: -c 2 -m 4096M -AHP -S] Sep 17 17:40:52: [bhyve devices: -s 0,hostbridge -s 31,lpc -s 4:0,virtio-blk,/stage/vm/centos7/disk0.img -s 5:0,virtio-net,tap0,mac=58:9c:fc:00:7f:9b -s 6:0,passthru,1/0/0] Sep 17 17:40:52: [bhyve console: -l com1,/dev/nmdm0A] Sep 17 17:40:52: starting bhyve (run 1) when I try to load the nvidia driver manuly,the error message is : modprobe nvidia [58663.346487] NVRM: This PCI I/O region assigned to your NVIDIA device is invalid: [58663.346487] NVRM: BAR1 is 0M @ 0x0 (PCI:0000:00:06.0) [58663.353385] NVRM: The system BIOS may have misconfigured your GPU. [58663.357700] nvidia: probe of 0000:00:06.0 failed with error -1 [58663.360926] nvidia-nvlink: Nvlink Core is being initialized, major device number 248 [58663.364851] NVRM: The NVIDIA probe routine failed for 1 device(s). [58663.367189] NVRM: None of the NVIDIA graphics adapters were initialized! [58663.369472] nvidia-nvlink: Unregistered the Nvlink Core, major device number 248 [58663.372807] NVRM: NVIDIA init module failed! modprobe: ERROR: could not insert 'nvidia': No such device From owner-freebsd-virtualization@freebsd.org Sun Sep 18 02:43:05 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF7BFBD6324 for ; Sun, 18 Sep 2016 02:43:05 +0000 (UTC) (envelope-from rajil.s@gmail.com) Received: from mail-pf0-x22a.google.com (mail-pf0-x22a.google.com [IPv6:2607:f8b0:400e:c00::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BE1B6C1A for ; Sun, 18 Sep 2016 02:43:05 +0000 (UTC) (envelope-from rajil.s@gmail.com) Received: by mail-pf0-x22a.google.com with SMTP id q2so19156031pfj.3 for ; Sat, 17 Sep 2016 19:43:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:references:to:from:message-id:date:user-agent:mime-version :in-reply-to:content-transfer-encoding; bh=CM1B52EvP+ONDH/Pa3Wy2rpu8J0J9tie4TW1wiey1c8=; b=ZUxsmZ9WKJvoaJYyK/XXUgKIrn+rBlBFKkFgF/HT96log0semooUyKa7Pux+nXoi3l iD36D1PAfaJBDlJRljL9EItibp5qFJm9/eHJNLm3jxk0tW0q6aH8UK3DuYZ/caFQv8hx B0fZ5R4t9jDmxJBhx/8Hj4XwOczehqaF7vEDHnIeKN4i5rQRP/XlnFG6F2RKmvRE2Iv0 guVNI01fmandqi2IVpHgOhRWijRA87OTYyGV+Q4M/T6cXnSbCY+7kV+zBq2P03qo67UT cuQjXc0pkkTWNiYN4Ykt8n18z1WHhDdxO3enluxODs8B0WQWxo054IXQdAxQZ0vpYIYB Ii0w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:references:to:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=CM1B52EvP+ONDH/Pa3Wy2rpu8J0J9tie4TW1wiey1c8=; b=QWDRXU0KyTaWGNaoFfxYtNZpxExs1aK5PDAhVjGG8sm6DPm32WVQqiZQoJesCI9Dt+ H0ae3GFYDt6F1poEbI2bMunFWXtjQN3cLYBIT1lZ9cukPxZifM8GXPolu+1lJtzUdbOr l7iCx22n0PP3QcnVRSSt9TGhsKuNA3oUcT18ijXS1wh8kjJYamsGbrzyAC1OGYaqsbZb TsniC0ZvYaHTLR8ZSBNra5bL8gXrW3F+xhxshJChNZmaXvs7MUHi03ciVPVE9+Teb60E moYSvAki9+fvOKbsmmdZOmg+iCrBZyam7h+OefhIhkBrhQBHqCa9uGq6/kc9fFeHRuCo L61w== X-Gm-Message-State: AE9vXwPVN9Vr09pNyJ+eny4cym2A1LjQOP/Pog7lu0raQ73QClzo0kv3OjljCjYqRbwKDA== X-Received: by 10.98.67.139 with SMTP id l11mr19580035pfi.16.1474166585094; Sat, 17 Sep 2016 19:43:05 -0700 (PDT) Received: from ?IPv6:2601:2c2:200:12c7::2000? ([2601:2c2:200:12c7::2000]) by smtp.gmail.com with ESMTPSA id i68sm61691800pfc.25.2016.09.17.19.43.03 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 17 Sep 2016 19:43:04 -0700 (PDT) Subject: Re: Fwd: bhyve centos7-64 guest nvidia graphic card passthru get error when load nvidia driver References: To: freebsd-virtualization@freebsd.org From: Rajil Saraswat Message-ID: <4b7a4ba1-8d0a-c882-230c-6b06f48a9c68@gmail.com> Date: Sat, 17 Sep 2016 21:43:01 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 02:43:06 -0000 On 09/17/2016 09:31 PM, Jov wrote: > Subject: bhyve centos7-64 guest nvidia graphic card passthru get error when > load nvidia driver > To: freebsd-virtualization@freebsd.org > > > lshw on guest: > *-display UNCLAIMED > description: VGA compatible controller > product: GM107 [GeForce GTX 750] > vendor: NVIDIA Corporation > physical id: 6 > bus info: pci@0000:00:06.0 > version: a2 > width: 64 bits > clock: 33MHz > capabilities: pm msi pciexpress vga_controller cap_list > configuration: latency=0 > resources: iomemory:d00-cff memory:c1000000-c1ffffff Did you try the opensource nouveau driver? From owner-freebsd-virtualization@freebsd.org Sun Sep 18 02:58:08 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8377BD6742 for ; Sun, 18 Sep 2016 02:58:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7916636 for ; Sun, 18 Sep 2016 02:58:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I2w7LP096139 for ; Sun, 18 Sep 2016 02:58:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 02:58:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 02:58:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #3 from Hongjiang --- Created attachment 174898 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174898&action= =3Dedit Install FreeBSD 11 through RC3 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 02:59:05 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3767CBD6794 for ; Sun, 18 Sep 2016 02:59:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26F3A69C for ; Sun, 18 Sep 2016 02:59:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I2x4id020003 for ; Sun, 18 Sep 2016 02:59:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 02:59:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 02:59:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #4 from Hongjiang --- I tried to install FreeBSD 11 through RC3 iso on my 2012 r2, and there is no issue. In my VM settings, HDD locates on "IDE Controller 0" and LUN 0. DVD locates on "IDE Controller 1" and LUN 0. See my attachment. You can see my = 2012 R2 version, and VM settings. But if I exchange the "IDE Controller" for HDD and DVD, then the installati= on will fail. That is a known issue, and patch is under review (https://reviews.freebsd.org/D7693). Could you please tell me what is your VM settings for HDD and DVD? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 03:00:09 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3F1FBD67F0 for ; Sun, 18 Sep 2016 03:00:09 +0000 (UTC) (envelope-from zhao6014@gmail.com) Received: from mail-yb0-x230.google.com (mail-yb0-x230.google.com [IPv6:2607:f8b0:4002:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 91389764 for ; Sun, 18 Sep 2016 03:00:09 +0000 (UTC) (envelope-from zhao6014@gmail.com) Received: by mail-yb0-x230.google.com with SMTP id d69so65517409ybf.2 for ; Sat, 17 Sep 2016 20:00:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=IvehVtAAfxk/jCFra+cWFgErKRSTi8w5LK9FavnkS0o=; b=is4KVD1S6sn9hw8Pjziy9s1Vvvshd+LBRFCJ8MyAyCcM6sC0E36Ui3HJI4uh+n4QOJ CtBm9bm3u/nNp8Pml9CVC2+zC9FJkROn4lF/tPcq9UerI6+HdZbzSzHgM+ON0Gz/rChJ HR+Engj1rJGFsAoHeErlmSx7tHaC0JKQl8wFAGoFjXTPBwSAIH/WB1KfvxaBbRftvMhj IOxV6f5Mgep8h0cyh+B5iVvc8+eTWlJwTJQrN8UqG2njneBb5Oe1nkanp9pptYa0leLQ +tZDCxJbisnlOLWJMpJGUGOoohe8bLA9laCNiXyUgRtY0jclC6xTj5E8jsjcdpi7HjvP r7ig== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=IvehVtAAfxk/jCFra+cWFgErKRSTi8w5LK9FavnkS0o=; b=EUBU1KNNijnFmoDpJf7w1xglHGwIz7NnBsMD5mEuN/FWwXynbNofx1SyXsTdW1tLo9 cf0Zoe1XLe05LDF2YMpvzAYeo/ISE57DQYTst8ZDpqwhRi0stvupprh/ypz/lynMr/fH LMCEu13vpOCEPWywvDBtChiYdfHzpD+GNTiLxdwsrde8nh8OCvCoY3AX76JvvJgu9lRh B8A3fV9QjImgg0X3cUUaOddLKeRUJtTcpLowrWfVI08CSqcP90DlJt7FIDHzoTvs46b6 wah24k2YrXzGCfYKEnc04xu5kQkPI59qB3qfSfos/WX5/9CB81OlEeGqP1/aDLL/wBlT qr7g== X-Gm-Message-State: AE9vXwOmS8+sX55xhkJmiySgM+waHwOZJkA7CkFHJYVQz7bWiPGyg0LhQWqw8AzbikC0Hpzy37FSuI0LLqA1RQ== X-Received: by 10.37.81.136 with SMTP id f130mr19836434ybb.65.1474167608856; Sat, 17 Sep 2016 20:00:08 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.114.197 with HTTP; Sat, 17 Sep 2016 19:59:48 -0700 (PDT) In-Reply-To: <4b7a4ba1-8d0a-c882-230c-6b06f48a9c68@gmail.com> References: <4b7a4ba1-8d0a-c882-230c-6b06f48a9c68@gmail.com> From: Jov Date: Sun, 18 Sep 2016 10:59:48 +0800 Message-ID: Subject: Re: Fwd: bhyve centos7-64 guest nvidia graphic card passthru get error when load nvidia driver To: Rajil Saraswat Cc: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 03:00:09 -0000 the nouveau driver is loaded before I install the nv driver.One step for install the nv driver is to disable the nouveau driver by adding /etc/modprobe.d/blacklist-nouveau.conf. I use the offical driver because I want to use CUDA. Jov blog: http:amutu.com/blog 2016-09-18 10:43 GMT+08:00 Rajil Saraswat : > On 09/17/2016 09:31 PM, Jov wrote: > > Subject: bhyve centos7-64 guest nvidia graphic card passthru get error > when > > load nvidia driver > > To: freebsd-virtualization@freebsd.org > > > > > > lshw on guest: > > *-display UNCLAIMED > > description: VGA compatible controller > > product: GM107 [GeForce GTX 750] > > vendor: NVIDIA Corporation > > physical id: 6 > > bus info: pci@0000:00:06.0 > > version: a2 > > width: 64 bits > > clock: 33MHz > > capabilities: pm msi pciexpress vga_controller cap_list > > configuration: latency=0 > > resources: iomemory:d00-cff memory:c1000000-c1ffffff > > Did you try the opensource nouveau driver? > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to "freebsd-virtualization- > unsubscribe@freebsd.org" > From owner-freebsd-virtualization@freebsd.org Sun Sep 18 03:06:09 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB739BD6C04 for ; Sun, 18 Sep 2016 03:06:09 +0000 (UTC) (envelope-from rajil.s@gmail.com) Received: from mail-pa0-x22d.google.com (mail-pa0-x22d.google.com [IPv6:2607:f8b0:400e:c03::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C16A19A for ; Sun, 18 Sep 2016 03:06:09 +0000 (UTC) (envelope-from rajil.s@gmail.com) Received: by mail-pa0-x22d.google.com with SMTP id oz2so32994189pac.2 for ; Sat, 17 Sep 2016 20:06:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-transfer-encoding; bh=ZL+C0ppCvqgoU3GqWZ49bB7q4IP1nYwx0SDmTHPXD0Q=; b=cFQb3bf/vynU1fMmgIb6jo3n7buuRgw07x/Wrz4W47ehav9ajjAzFjmR1qpbtjBwXm GWG3WEkSveTYjCcmhE9j/MCc+TyVF/IVObl7VwSzyMXQ879ATYN2A0cH7Pa+RylUyeUs sI7FYKMBptR+4fqEtJed1mjB+tIsGkQEs2G0jGQ2RspTe6KMPGDTSxVOP07B60cNcKnI eaY6YryEMfgTU1cjCgcHoYUflHGT/L+/HEZw1wSF306Q9OhaoEL4vHseAo2Z2nTEr87D KNw9qZ3n2x/B93s65iV6hzG9R33JiMqgD56nZ+S9NSa7xdGws75IKCpYBrrsWxi6vdnR OBew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=ZL+C0ppCvqgoU3GqWZ49bB7q4IP1nYwx0SDmTHPXD0Q=; b=ajtJDBsHfmw2p+QI9HuIWnRAC87EVrY7R798gN09Ug8wA1KZTiDQ6D54/Wvj4TF9uU VZBIiH9shSqgVQ/DJO7tmCRwAjaoRgF7PHgo9QMLCdwxfYPbXTD+87pp1M9cGHbcNge3 UMwPt0iKOF/0iUZsVgNCo3f/btH8svLF7ijAzIJdyAInKqUmyu5/WhBUOnwFMGjmKcdC dRIksKq4ayJnaS6wTzoGACxoEfCbOPAnYbMxiada9iWz2bVJht/zG26sodeLWSlyoP2Z 2L+06M7TorrSFz8IhEyvJFh8OzhE1Q5w8p/JpUEq2MEVUXf7zNAtzcTCQMaIxb6M5MNE 9HqQ== X-Gm-Message-State: AE9vXwMCkNBtOny54/xSOh39/ZeNuu0dNh7SM5GFaVB+e+1nkJgaj6ujK+PCjoQ8Fa4FDA== X-Received: by 10.66.123.105 with SMTP id lz9mr36202981pab.56.1474167969145; Sat, 17 Sep 2016 20:06:09 -0700 (PDT) Received: from ?IPv6:2601:2c2:200:12c7::2000? ([2601:2c2:200:12c7::2000]) by smtp.gmail.com with ESMTPSA id sl9sm13730044pab.22.2016.09.17.20.06.07 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 17 Sep 2016 20:06:08 -0700 (PDT) Subject: Re: Fwd: bhyve centos7-64 guest nvidia graphic card passthru get error when load nvidia driver To: Jov References: <4b7a4ba1-8d0a-c882-230c-6b06f48a9c68@gmail.com> Cc: freebsd-virtualization@freebsd.org From: Rajil Saraswat Message-ID: Date: Sat, 17 Sep 2016 22:06:03 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 03:06:09 -0000 On 09/17/2016 09:59 PM, Jov wrote: > the nouveau driver is loaded before I install the nv driver.One step for > install the nv driver is to disable the nouveau driver by adding > /etc/modprobe.d/blacklist-nouveau.conf. > > I use the offical driver because I want to use CUDA. > > Jov > blog: http:amutu.com/blog It seems that nvidia doesnt like consumer card virtualization and linux users are using vfio to get past it (http://vfio.blogspot.ca/2014/08/vfiovga-faq.html). Whether this also holds for FreeBSD i dont know, but it may be worth trying with nouveau. From owner-freebsd-virtualization@freebsd.org Sun Sep 18 04:15:03 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E2BDBDF0CF for ; Sun, 18 Sep 2016 04:15:03 +0000 (UTC) (envelope-from trentnthompson@gmail.com) Received: from mail-yw0-x22c.google.com (mail-yw0-x22c.google.com [IPv6:2607:f8b0:4002:c05::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 178F8EA2; Sun, 18 Sep 2016 04:15:03 +0000 (UTC) (envelope-from trentnthompson@gmail.com) Received: by mail-yw0-x22c.google.com with SMTP id g192so113180852ywh.1; Sat, 17 Sep 2016 21:15:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=s2aYkGr/E8qECQq8WKK10jZR9XM+HKI4P4M3Uis7OK0=; b=yVjFfOyksesbZHliArCEfWuOS1J816qRsA8ZURMs1zaq0/eTZMH50P18qiQiyb4m/9 QqL4mAQbjO7mHw2DFBE4WXlm7tl5u52wwBE6d8J9hSEhZ2LglY/c6SMWlyJmbVf++Ha0 y0sfi8khHDGINbFmI587Zg/YLEpnu7RxsQaeBnBaK4oA4vSqBToTHSaQaELSkGlcP5b1 p2z0r+2HN/yrTAfGn/swWVhjMkVSvyjoo0AWBpD/hCnFFieE3T2gwVQHvWmkiTFyCH2a GC+gddWZZ9yXnBtxvXYvz3JPoyboz4KF/RntHFw2ZmtZq7UAQJnrU5hvYhvSpXUOx+Of bhvA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=s2aYkGr/E8qECQq8WKK10jZR9XM+HKI4P4M3Uis7OK0=; b=TTOu3ZYERvJ4Lo2LFS6f1Fl5FeXI6MQAEhPqoDJw2qR7rKW5d4SD7Tu+Utfddula2t pLD3FHrPRPjcg/iPsnLNW11t5wn5v2DCdYn4GlV+nGHbf+uTLAgOvftK8c6fb/CD0s5C PSjYmSFGaOBCQtKfSLJXUxEAmuPtwfKuXFUlry2QncD6DCzF7l/PaAoTh0gDNCix2nG5 NgUzHJfwxlJvjevwLKVPNsxq7LFgml2Qmv8XxiGKXNy1jzvtYan/TcqxrwiUnb9jFdVx XG1oI/yPU0+VMzgEj0isnk1mfqFEV9Baz/tvO2zgWxdqz1e7/wMXvlMNlF/M0bOR16p+ 4owA== X-Gm-Message-State: AE9vXwPeoMX/xz78b1OBdEs6H8jWgp4VYbBvr50v5axscNIdgXcMvkoujVoHQ7fvGUJ2PjeIGP4bOPJNb/K/2A== X-Received: by 10.13.252.5 with SMTP id m5mr20274215ywf.274.1474172102025; Sat, 17 Sep 2016 21:15:02 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.196.196 with HTTP; Sat, 17 Sep 2016 21:15:01 -0700 (PDT) In-Reply-To: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> References: <2ebbc1f9-4b1e-74f2-60fc-c0976b7924a1@freebsd.org> From: Trent Thompson Date: Sat, 17 Sep 2016 22:15:01 -0600 Message-ID: Subject: Re: High vCPU Counts in bhyve To: Peter Grehan Cc: FreeBSD virtualization Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 04:15:03 -0000 Peter, Thanks for getting back! Patching /usr/src/usr.sbin/bhyve/acpi.c does indeed allow me to run a bhyve VM with 32 vCPUs! root@overkill:~ # sysctl hw.ncpu hw.model hw.ncpu: 32 hw.model: Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz root@overkill:~ # dmesg | grep Hypervisor Hypervisor: Origin = "bhyve bhyve " root@overkill:~ # Thanks for your help and for all of your work on bhyve in general! -Trent @pr1ntf From owner-freebsd-virtualization@freebsd.org Sun Sep 18 07:40:07 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87FC5BDD74D for ; Sun, 18 Sep 2016 07:40:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77388A18 for ; Sun, 18 Sep 2016 07:40:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I7e6or078332 for ; Sun, 18 Sep 2016 07:40:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 07:40:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sa.inbox@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 07:40:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #5 from Alexander --- Created attachment 174900 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174900&action= =3Dedit 11.0-rc3 on diff IDE- error on partitioning step --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 07:41:22 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EA3CBDD8D0 for ; Sun, 18 Sep 2016 07:41:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D7B9B27 for ; Sun, 18 Sep 2016 07:41:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I7fMUl085006 for ; Sun, 18 Sep 2016 07:41:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 07:41:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sa.inbox@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 07:41:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #6 from Alexander --- Created attachment 174901 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174901&action= =3Dedit 11.0-rc3 on same IDE- boot failed --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 07:43:58 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A273BDDCEB for ; Sun, 18 Sep 2016 07:43:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3981CE90 for ; Sun, 18 Sep 2016 07:43:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I7hv5f093658 for ; Sun, 18 Sep 2016 07:43:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 07:43:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sa.inbox@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 07:43:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #7 from Alexander --- I did tests in the following scenario: - 2012r2 Datacenter in failover cluster configuration - VM stored on SMB3 share (2012r2 storage server) - all up-to-date patches installed on 2012r2 machines - Cluster validation configuration reports no errors I tested 2 configurations: FreeBSD 11.0-rc3 VM vhdx (200Gb size) and dvd on the different IDEs: installation failed on disk partitioning step (for fixed sized and dynamica= lly sized disk) FreeBSD 11.0-rc3 VM vhdx (200Gb size) and dvd on same IDEs: boot from cd fa= iled I've uploaded relevant print screens. Are you able to install 11.0-RC3 on large virtual disk? (e.g. 200 Gb) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 07:46:50 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47BE6BDDD8A for ; Sun, 18 Sep 2016 07:46:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 372ABF12 for ; Sun, 18 Sep 2016 07:46:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I7knkV098584 for ; Sun, 18 Sep 2016 07:46:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 07:46:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 07:46:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #8 from Sepherosa Ziehau --- (In reply to Alexander from comment #7) Is the vhdx saved on the SMB3 too? Thanks, sephe --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 07:52:27 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22086BDF027 for ; Sun, 18 Sep 2016 07:52:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 118B7613 for ; Sun, 18 Sep 2016 07:52:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8I7qQTc013514 for ; Sun, 18 Sep 2016 07:52:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Sun, 18 Sep 2016 07:52:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sa.inbox@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 07:52:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #9 from Alexander --- Yes. vxdx and all VM files located smb3. This VM works with FreeBSD 10.3-RELEASE, but 11.0-RC3 failed to install.=20 BR, Alexander --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sun Sep 18 21:00:50 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E636BE036E for ; Sun, 18 Sep 2016 21:00:50 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C9F7993 for ; Sun, 18 Sep 2016 21:00:50 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8IL01a0043760 for ; Sun, 18 Sep 2016 21:00:50 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201609182100.u8IL01a0043760@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-virtualization@FreeBSD.org Subject: Problem reports for freebsd-virtualization@FreeBSD.org that need special attention Date: Sun, 18 Sep 2016 21:00:50 +0000 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2016 21:00:50 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 202322 | [bhyve,patch] add option to have bhyve write its 1 problems total for which you should take action. From owner-freebsd-virtualization@freebsd.org Mon Sep 19 05:47:58 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6079BDFBB8 for ; Mon, 19 Sep 2016 05:47:58 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: from mail-yw0-x231.google.com (mail-yw0-x231.google.com [IPv6:2607:f8b0:4002:c05::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86CCA69B for ; Mon, 19 Sep 2016 05:47:58 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: by mail-yw0-x231.google.com with SMTP id i129so133034953ywb.0 for ; Sun, 18 Sep 2016 22:47:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=mtErZDHonhMepn2G8HC9f0ZLBIrTxHxZFKGqX+169/M=; b=fju7WtxkHopwj4eA7yrlKSEh7eBzlr4IAiJQY2SFNdrPhwuV4D3uC3VO/N0KELVk7r iDpXkjX9lM4qOo8hTiQ9DCt4XNbP7s7In6KkIqfVPFEUOcS1TGGRJjPYLHcAT5TEgm3d NUGA6sjJqErzPGc9iDKpbK/tfpvLgjOtYPgpNjg7AGgK24BEbu8Fl+n/lypnc26x6Ueq aLW0Dkl6dvpHqo3QuvBVrpCaHMQPmdeHLHfTlW/0gyNmkbe/kmBo5StHJdvdkW8d5M51 M+2nsXdq51A/xB+KOHVClk3p1UzNK79rIc1yWOQqvPVDQucBa7gFHIF2R7I03uNyk3FJ uYUA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=mtErZDHonhMepn2G8HC9f0ZLBIrTxHxZFKGqX+169/M=; b=TCmsrfs2k/jXhoCBH+1pJYgJotacXD44F4pFURWCSBJanoC6lrn0glujVhhvqpvWVm AaltrB98pi46rf5SxHCOEfU+D0hLWaVqKln5aH6FLQxPnHIwtzLD/3AXXQtomTaOvv70 kmQZ/YOtZuCGFyh4RAJ2p2WLUQsDE6V1jF3+ft97SRYnI2/ae4An+oNVC2ayXggdOjKN MP6WHKVrGTBLpIrr8gvI3J31e5674tAmCKCj0hN+9zhVCW62a2xPeiEApnNiM8Nq/WMB U2Y5OxklHA0Ha/UXaWce3aQ1TmI1hgKdQfUn3VuuSjZGd03TDGNSe07re/qjUdWvhLxw Xh2g== X-Gm-Message-State: AE9vXwMmzJI5RnI7FwJYhW8q/t9uEUvvRacLTF0lOH8HSXtIHRcFUtDx36vUT1ROPhKw4L3l03OrHa+k4ZjtCw== X-Received: by 10.13.238.6 with SMTP id x6mr24479329ywe.212.1474264077642; Sun, 18 Sep 2016 22:47:57 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.161.37 with HTTP; Sun, 18 Sep 2016 22:47:57 -0700 (PDT) From: Zaphod Beeblebrox Date: Mon, 19 Sep 2016 01:47:57 -0400 Message-ID: Subject: Directions Faulty. To: "freebsd-virtualization@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 05:47:58 -0000 So... I'm trying to boot a debian 8.5 live CD. The directions @ https://www.freebsd.org/doc/handbook/virtualization-host-bhyve.html drive me to booting this with *grub-bhyve -m device.map -r cd0 -M 1024M linuxguest* ... which fails because the cd image doesn't contain /boot/grub. I've tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ... but the magic isn't there. Frustration. From owner-freebsd-virtualization@freebsd.org Mon Sep 19 06:42:36 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0237BE0A90 for ; Mon, 19 Sep 2016 06:42:36 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: from mail-yw0-x230.google.com (mail-yw0-x230.google.com [IPv6:2607:f8b0:4002:c05::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CC247DF for ; Mon, 19 Sep 2016 06:42:36 +0000 (UTC) (envelope-from kitchetech@gmail.com) Received: by mail-yw0-x230.google.com with SMTP id t67so130303950ywg.3 for ; Sun, 18 Sep 2016 23:42:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=lcyJ0Hbq+p27/z7E9iI9I6B7z7plYl5lMqf+areLAYU=; b=si6/2xZY+Abq6U0GJCPEemQm123Bhs8oHaGVFSztk5ubSAzsVS6FW5be2KWtqYdIOy xSUKxPc9gx/LKCHxgYLL+YT/kC5FzrU5RuPCi4MQDIiRHueGavb8X3kgrpj9K0YAdsj7 b0SY9KjaArk3DqGs4ny92GzdvVjp3GMA0XvUOkAW9dQmqavpvM5IUXtkn0QSUDXE+AgZ jbbf1aCD1CDfT+obmAnWt+bROvijDXo6AMp6Rwn04YI5Gq9/RURs2OM0oVb/Wb+dWvNq zmi48fT6xVRVMWDNwu9SIQsQOrUVlQ3dkdxokvl/uEcHJSkjLpCxMICeW+tFF2OVEAkM Ho0A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=lcyJ0Hbq+p27/z7E9iI9I6B7z7plYl5lMqf+areLAYU=; b=fme2eDCis6IZTygwmS9s6mw9ufRVPtSeT6OGloKNVegvr1nifxhoLYghhr3fuFFvA7 bOjrQb1XPd+sQj1Hv5Ma5VmII3hEKuicNaEXkCwE4fw7J4OCITKQZt03FlL1Kgznqh/T 3c6Ja4O49eN2T2a7mVvn48X+vzfPGdtZY8LDuVuYp9gJIHQM7kp1QtkeJIETzHpIcfXx Ez9wkL0GVmEQpQ5Zh7kY6yzLv1MIziiV2RZEI/u3oKa5Z6bWoDok6X4di++4uYyeWvmL exZ/53l+d16flyDI/3u0seZLNAiU/aM2BhlxxPT1HF3ApoljNHOYgjzXAjnqyIegNQ9J 67lQ== X-Gm-Message-State: AE9vXwMHBCf7BU3dRNfQwZ9A+U3eLaWkw6iZJ4s/xhDaYW4LNyR3CRZFv4lGfr5hg4oVLU/tPbR0JfZSvPZKEQ== X-Received: by 10.129.93.86 with SMTP id r83mr24401576ywb.211.1474267355546; Sun, 18 Sep 2016 23:42:35 -0700 (PDT) MIME-Version: 1.0 Received: by 10.31.138.206 with HTTP; Sun, 18 Sep 2016 23:42:34 -0700 (PDT) Received: by 10.31.138.206 with HTTP; Sun, 18 Sep 2016 23:42:34 -0700 (PDT) In-Reply-To: References: From: Matt Donovan Date: Mon, 19 Sep 2016 01:42:34 -0500 Message-ID: Subject: Re: Directions Faulty. To: Zaphod Beeblebrox Cc: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 06:42:36 -0000 Directions are fine have to adjust for version of Linux you are using. I haven't looked at Debian 8.5 but it's probably gonna need some manual commands to get it to boot. On Sep 19, 2016 12:48 AM, "Zaphod Beeblebrox" wrote: So... I'm trying to boot a debian 8.5 live CD. The directions @ https://www.freebsd.org/doc/handbook/virtualization-host-bhyve.html drive me to booting this with *grub-bhyve -m device.map -r cd0 -M 1024M linuxguest* ... which fails because the cd image doesn't contain /boot/grub. I've tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ... but the magic isn't there. Frustration. _______________________________________________ freebsd-virtualization@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization To unsubscribe, send any mail to "freebsd-virtualization- unsubscribe@freebsd.org" From owner-freebsd-virtualization@freebsd.org Mon Sep 19 06:45:10 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D6D81BE0BA6 for ; Mon, 19 Sep 2016 06:45:10 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: from mail-yw0-x22d.google.com (mail-yw0-x22d.google.com [IPv6:2607:f8b0:4002:c05::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 933A0A77 for ; Mon, 19 Sep 2016 06:45:10 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: by mail-yw0-x22d.google.com with SMTP id g192so134087724ywh.1 for ; Sun, 18 Sep 2016 23:45:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=6inu9KnGZZm9PT0oB7496KMLIcsy1nRSmotfwRWXsvs=; b=rufJT6eBdRgBhWvJIeB1mHl8hLh8cs1JwbMrhuI+3XyfTEqzl6JVQDRL3vt/4rkr8R REe1QySwzCW5hfOCmNHcFuL4dRLFnyCkexs09mjBQFa+dIm3sV6qoubQaGj/njXQqloj oQMDrw/zmvjs/RWe0wM0I1sehu+Mq8kWZT/Pl6G2JXNSCTJQU1x8jJHWvS7TQ7gjCtdG PIYBixQyPLILc9ItfUgYaUQVC1xNQE3dS2BQALt1OvbMTrF5aOXbORFp3XLO9Y1TmbQi bVXeQSnrTdmYU7PDdWDz0i1tKsbQlIszVVvkd2w6eZihi/EtLND5dYRAdgYa8MUu9qvo jf+w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=6inu9KnGZZm9PT0oB7496KMLIcsy1nRSmotfwRWXsvs=; b=WJ3u7uL7YDNlxCS45t73P23OMYLTiaFyxRZ2BFCwswTFd0GCjoq69UD0WzBNz2l1is cJN+BJswh2SPs2g5YwAiRb6DOr7wMSdDkFZlNXlHNXETfKNdrqiN8ZfS+kPXg7vlJw4i sE2f7N5zpqNLNhK7GLwlytNXCIFvNveeqRh6E0XeAflGz2XwlCSFAn7Q1J391fiUXjyi pCyfFbg5gXAwsGWuFUpHbzyaYvdiHc+x2DAYE0B9br3q2/mGLb4yzmRfA9eBug8gw5bE qczBFU6FTGRw+e09/r7M6OiIVkXCkTBdD1+tbAD5333FFr+3vkcaoU2ES9Rh3VU7zkoO gB/Q== X-Gm-Message-State: AE9vXwMkxAkXaeqNUF6q36w3qX8Di+/YIXcZvyIsRAWb6xcTN8SWQRJyHV9i1TXnJAKqqQsHnc4HJ0oOBRPQVA== X-Received: by 10.129.108.81 with SMTP id h78mr22375562ywc.292.1474267509859; Sun, 18 Sep 2016 23:45:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.161.37 with HTTP; Sun, 18 Sep 2016 23:45:09 -0700 (PDT) In-Reply-To: References: From: Zaphod Beeblebrox Date: Mon, 19 Sep 2016 02:45:09 -0400 Message-ID: Subject: Re: Directions Faulty. To: Matt Donovan Cc: "freebsd-virtualization@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 06:45:10 -0000 I'm pretty sure that's not true. As an example, it doesn't have a grub.cfg anywhere. There are a few things ending in .cfg in /isolinux, but none of them work passed as the -g argument. Neither does -d /isolinux -d /live or -d /install work. It seems that either grub-bhyve would need to be hacked _or_ we need to think about something that can perform an emulated "boot"... On Mon, Sep 19, 2016 at 2:42 AM, Matt Donovan wrote: > Directions are fine have to adjust for version of Linux you are using. I > haven't looked at Debian 8.5 but it's probably gonna need some manual > commands to get it to boot. > > On Sep 19, 2016 12:48 AM, "Zaphod Beeblebrox" wrote: > > So... I'm trying to boot a debian 8.5 live CD. The directions @ > https://www.freebsd.org/doc/handbook/virtualization-host-bhyve.html drive > me to booting this with > > > > *grub-bhyve -m device.map -r cd0 -M 1024M linuxguest* > > ... which fails because the cd image doesn't contain /boot/grub. I've > tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ... > but the magic isn't there. > > Frustration. > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to "freebsd-virtualization-unsubs > cribe@freebsd.org" > > > From owner-freebsd-virtualization@freebsd.org Mon Sep 19 10:13:55 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F3D4BE0177 for ; Mon, 19 Sep 2016 10:13:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 413731DFB for ; Mon, 19 Sep 2016 10:13:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JADsPb013617 for ; Mon, 19 Sep 2016 10:13:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Mon, 19 Sep 2016 10:13:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 10:13:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 Arkadiy changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |yaruta.arkadiy@gmail.com --- Comment #10 from Arkadiy --- I got the same disk partitioning error while trying to install 11.0-RC3 on 2012r2 hyper-v on local server. 11.0-RC3 fails to install on small (<32Gb) = vhdx and 200Gb vhdx on internal (non smb3) server disk. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Mon Sep 19 10:16:13 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 551AFBE0280 for ; Mon, 19 Sep 2016 10:16:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 444861FA1 for ; Mon, 19 Sep 2016 10:16:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JAGCWb017896 for ; Mon, 19 Sep 2016 10:16:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Mon, 19 Sep 2016 10:16:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 10:16:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #11 from Arkadiy --- Created attachment 174948 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174948&action= =3Dedit 11.0-RC3 Critical install error --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Mon Sep 19 12:52:52 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E880BDF7CD for ; Mon, 19 Sep 2016 12:52:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45C89D0A for ; Mon, 19 Sep 2016 12:52:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JCqqx5027135 for ; Mon, 19 Sep 2016 12:52:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Mon, 19 Sep 2016 12:52:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 12:52:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-virtualization@Free | |BSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Mon Sep 19 14:44:49 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA97ABE174C for ; Mon, 19 Sep 2016 14:44:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9808FDA for ; Mon, 19 Sep 2016 14:44:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JEinJh076175 for ; Mon, 19 Sep 2016 14:44:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Mon, 19 Sep 2016 14:44:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 14:44:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #8 from Glen Barber --- Try turning off Secure Boot in the VM Security settings. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Mon Sep 19 14:46:55 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A13CBE17C5 for ; Mon, 19 Sep 2016 14:46:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED44911A for ; Mon, 19 Sep 2016 14:46:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JEksOn079140 for ; Mon, 19 Sep 2016 14:46:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Mon, 19 Sep 2016 14:46:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gjb@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 14:46:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #9 from Glen Barber --- Actually, no, this isn't the problem. The installer is being detached duri= ng boot, which is what is causing the vm_pager() console spam. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Mon Sep 19 15:27:35 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27737BE0396 for ; Mon, 19 Sep 2016 15:27:35 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from mx1.scaleengine.net (mx1.scaleengine.net [209.51.186.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 006A6B75 for ; Mon, 19 Sep 2016 15:27:34 +0000 (UTC) (envelope-from allanjude@freebsd.org) Received: from [10.1.1.2] (unknown [10.1.1.2]) (Authenticated sender: allanjude.freebsd@scaleengine.com) by mx1.scaleengine.net (Postfix) with ESMTPSA id 5C5A5D513 for ; Mon, 19 Sep 2016 15:27:33 +0000 (UTC) Subject: Re: Directions Faulty. To: freebsd-virtualization@freebsd.org References: From: Allan Jude Message-ID: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> Date: Mon, 19 Sep 2016 11:27:26 -0400 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pEuNIFj7HDr50SpWtS0sj4rOxLnFaIOEP" X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 15:27:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --pEuNIFj7HDr50SpWtS0sj4rOxLnFaIOEP Content-Type: multipart/mixed; boundary="pVHfpSFcsI8nqB25xQlxRvCPDuAixkm01"; protected-headers="v1" From: Allan Jude To: freebsd-virtualization@freebsd.org Message-ID: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> Subject: Re: Directions Faulty. References: In-Reply-To: --pVHfpSFcsI8nqB25xQlxRvCPDuAixkm01 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 2016-09-19 02:45, Zaphod Beeblebrox wrote: > I'm pretty sure that's not true. As an example, it doesn't have a grub= =2Ecfg > anywhere. There are a few things ending in .cfg in /isolinux, but none= of > them work passed as the -g argument. Neither does -d /isolinux -d /liv= e or > -d /install work. >=20 > It seems that either grub-bhyve would need to be hacked _or_ we need to= > think about something that can perform an emulated "boot"... >=20 > On Mon, Sep 19, 2016 at 2:42 AM, Matt Donovan wr= ote: >=20 >> Directions are fine have to adjust for version of Linux you are using.= I >> haven't looked at Debian 8.5 but it's probably gonna need some manual >> commands to get it to boot. >> >> On Sep 19, 2016 12:48 AM, "Zaphod Beeblebrox" wrot= e: >> >> So... I'm trying to boot a debian 8.5 live CD. The directions @ >> https://www.freebsd.org/doc/handbook/virtualization-host-bhyve.html dr= ive >> me to booting this with >> >> >> >> *grub-bhyve -m device.map -r cd0 -M 1024M linuxguest* >> >> ... which fails because the cd image doesn't contain /boot/grub. I've= >> tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ...= >> but the magic isn't there. >> >> Frustration. The earlier instructions for doing the install from the CD, include instructions on using grubs interactive interface to poke around and find the initramfs and kernel and load them manually. --=20 Allan Jude --pVHfpSFcsI8nqB25xQlxRvCPDuAixkm01-- --pEuNIFj7HDr50SpWtS0sj4rOxLnFaIOEP Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) iQIcBAEBAgAGBQJX4APkAAoJEBmVNT4SmAt+T78QAId52rMwD2b2T/Y+rGioo4mo mPPUcKV9DPXRNUrgKXlDx14yz+rYrhL8SUuTIte84dxyVwob/TO2Y52GxeelQsN5 hfDP8FJIcVR6eNTNCA+3rKv6FHaTr98+TJeA3AhNqib1Yi66rTNgCLgKv4NTzwk+ 94RxM4TArRsw+2k1ahD/k+A7Ooi9Q3nFM5TCuZFGkhPcYXu8xNdl/z90xuy48KM5 HzelBBLXoIHGdQA/zt+9ySwdEeaJ48KbtL9Tly9UJHd0X1F8i0VUrCsjPKxnaLT3 TVdC4fc8TExQN/VmtTQlAXxsCH0Q0KumAAok2a4xRPwgKSFAr56A/FrfgWt9AhkP mFnfqP13zTD8/loz3eEaGU7oyYInFt0vAh11B6E+d/t8H5e1HH5SjbZhnE+xlnlO Eu0j3sHwWj5BgjfvSiWIgf6brtY2D4AGCPGMX5eNbmrmvh+w8RJ1j15RxNHRY/iO S4S+9GZaEwapMIKvRL6KhLg1uFrOOHiOFRshQNpOosgwjponUsqbRZnxG0SUGZsz d7rk68oQSKEE3kxX3JkJYTw9pk75/MqhWdWQ7MID0kXbxSKUW2wLJ5A5WWRK1dFZ h9MaTKnG5CMbeE13m97dFyNI+3apTZ8yqC8PKzksLXJ5IZXLQi1fPCp4XbMFYgyF /4q7Ji+3XJeV5L/RWAKE =AmU6 -----END PGP SIGNATURE----- --pEuNIFj7HDr50SpWtS0sj4rOxLnFaIOEP-- From owner-freebsd-virtualization@freebsd.org Mon Sep 19 16:18:35 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61E29BE15FE for ; Mon, 19 Sep 2016 16:18:35 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: from mail-yw0-x232.google.com (mail-yw0-x232.google.com [IPv6:2607:f8b0:4002:c05::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1AA8413CA; Mon, 19 Sep 2016 16:18:35 +0000 (UTC) (envelope-from zbeeble@gmail.com) Received: by mail-yw0-x232.google.com with SMTP id g192so156960224ywh.1; Mon, 19 Sep 2016 09:18:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=IgPomU23HamjSguJq2w8yI/Q7Da7AXVMuk8cPlWJZaY=; b=0ixq3uYFX6sYD46bdr5BXsju5z4wbn+x2iBlhKyM5QbYSk4WtIO1Ka3+XkOwQMe2zX LDvr2HMLV7jCMvakfii+qdLP/eIPLFZ09S203AS0yhRgEbMG87SV7y79/+9UBERUMkc0 tnHtaXvUw1Fa18ueFpo7l2zen2w+RezwgkydByQtJnJgdMbqnaYoqjiX5y+Up5i5yz7j jq/bB5nVQyVqta7abyl5kFx+p/j7ZV0E95AeXwYK5EutKXhcCEDvjKTxSTR2Qo13bYvb bOQqIpUGc/0DjKZMJVnlqmSF7b//f2UWLh2Zdo2uo7L/Uh04Jvi2jOx0FgS4n+e1hXOK BohQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=IgPomU23HamjSguJq2w8yI/Q7Da7AXVMuk8cPlWJZaY=; b=jKJGS4y1nTP19dbIWsSAoEKwZnPKSE4n9xOoYkGVhyn4JP2Cz0yS1bamacn5BCsIaV LWTG0dyEE4Z1es0QJhpBoYY7DTobqxzrzuTXKRVOX5eG5s2MSIFVV7Z2OuD1MJdforIC tsZY4zlCsBTMA+FHBv8ZGruIG6mGXS19BACIsYPOaWZNRFtQ3CsLlpe9EfioHfM2Rw8B wjlsEKiDhj9C6BoSY52Z+SiizhI53KbvKuH/EoLjzoCTH4xJVarOCv0/5HUG4LUzc5Fm 7xGStccgLp3+qKlps4Ju7T/EhyX7UKcX3RC1briMuj3JtfhKkfW8ON24NgPU0+4SlnRU HJGQ== X-Gm-Message-State: AE9vXwOnbqT9ablRLZRgKV0nGEiReTzFDQwDtIbEzvLcsFyBMSVgN0E/GHaCFcYl+8SCo1hMOyM/EHCdepVcPQ== X-Received: by 10.13.238.6 with SMTP id x6mr27158353ywe.212.1474301914147; Mon, 19 Sep 2016 09:18:34 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.161.37 with HTTP; Mon, 19 Sep 2016 09:18:33 -0700 (PDT) In-Reply-To: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> References: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> From: Zaphod Beeblebrox Date: Mon, 19 Sep 2016 12:18:33 -0400 Message-ID: Subject: Re: Directions Faulty. To: Allan Jude Cc: "freebsd-virtualization@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 16:18:35 -0000 On Mon, Sep 19, 2016 at 11:27 AM, Allan Jude wrote: > On 2016-09-19 02:45, Zaphod Beeblebrox wrote: > >> ... which fails because the cd image doesn't contain /boot/grub. I've > >> tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ... > >> but the magic isn't there. > >> > >> Frustration. > > The earlier instructions for doing the install from the CD, include > instructions on using grubs interactive interface to poke around and > find the initramfs and kernel and load them manually. Obviously, since I talked about what was on the disk, I was doing that. The problems are that there are several vmlinuz and several initrd.img on the CD. I've even mounted the cd9660 filesystem and wandered around reading the files. I have tried the kernel and initrd in /isolinux and in /live ... they fail to boot with something about "/sbin/init missing" while iniitrd is still mounted. I gather that some set of kernel boot options is what I'm missing, but I haven't been able to find those yet. From owner-freebsd-virtualization@freebsd.org Mon Sep 19 16:35:44 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DCD3BE1B4E for ; Mon, 19 Sep 2016 16:35:44 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from vm.unsane.co.uk (unsane-pt.tunnel.tserv5.lon1.ipv6.he.net [IPv6:2001:470:1f08:110::2]) by mx1.freebsd.org (Postfix) with ESMTP id 4E0511D48 for ; Mon, 19 Sep 2016 16:35:43 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from Vincents-MacBook-Pro-2.local (lon.namesco.net [195.7.254.102]) by vm.unsane.co.uk (Postfix) with ESMTPSA id 96A8E30005 for ; Mon, 19 Sep 2016 17:35:43 +0100 (BST) Subject: Re: Directions Faulty. To: freebsd-virtualization@freebsd.org References: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> From: Vincent Hoffman-Kazlauskas Message-ID: <5334eb2f-c4ac-7046-5ba4-8e25bf52bcf9@unsane.co.uk> Date: Mon, 19 Sep 2016 17:35:42 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 16:35:44 -0000 On 19/09/2016 17:18, Zaphod Beeblebrox wrote: > On Mon, Sep 19, 2016 at 11:27 AM, Allan Jude wrote: > >> On 2016-09-19 02:45, Zaphod Beeblebrox wrote: >>>> ... which fails because the cd image doesn't contain /boot/grub. I've >>>> tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ... >>>> but the magic isn't there. >>>> >>>> Frustration. >> >> The earlier instructions for doing the install from the CD, include >> instructions on using grubs interactive interface to poke around and >> find the initramfs and kernel and load them manually. > > > Obviously, since I talked about what was on the disk, I was doing that. > > The problems are that there are several vmlinuz and several initrd.img on > the CD. I've even mounted the cd9660 filesystem and wandered around > reading the files. I have tried the kernel and initrd in /isolinux and in > /live ... they fail to boot with something about "/sbin/init missing" while > iniitrd is still mounted. > > I gather that some set of kernel boot options is what I'm missing, but I > haven't been able to find those yet. took a quick gander at the isolinux configs for debian-live-8.6.0-amd64-standard.iso isolinux/live.cfg says kernel: /live/vmlinuz initrd: /live/initrd.img and to append (kernel arguments): boot=live components quiet splash Live (amd64 failsafe) has append (kernel arguments): boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal install.cfg suggests kernel: /install/vmlinuz initrd: /install/initrd.gz append (kernel arguments): vga=788 --- quiet Hope that helps. Vince > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to "freebsd-virtualization-unsubscribe@freebsd.org" > From owner-freebsd-virtualization@freebsd.org Mon Sep 19 23:29:01 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16993BE13E9 for ; Mon, 19 Sep 2016 23:29:01 +0000 (UTC) (envelope-from me@justinholcomb.me) Received: from NAM03-DM3-obe.outbound.protection.outlook.com (mail-dm3nam03on0073.outbound.protection.outlook.com [104.47.41.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BF051229 for ; Mon, 19 Sep 2016 23:28:59 +0000 (UTC) (envelope-from me@justinholcomb.me) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=NETORG622321.onmicrosoft.com; s=selector1-justinholcomb-me; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=/3RynUFeUdxWMwM85QWsWjmdbthVIyMDFXPwyhaCqPc=; b=PxzkvXvtnMuN5xASVUzxfb0Bi/bAN9BWxsuJtu9YApqS3Gmwb+IoNVgKRXJdLk+w3eGOOgR7IwpD9HXeUsRNVVYWPLC7EmWrCgpwmuuHuBeHsRx2VIhSALevVueAtlTckzStx1LzKM0sLS3vYgp1SuvVnxH36D2ihqSWJjP1dtQ= Received: from CY4PR12MB1447.namprd12.prod.outlook.com (10.172.71.139) by CY4PR12MB1447.namprd12.prod.outlook.com (10.172.71.139) with Microsoft SMTP Server (version=TLS1_0, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P384) id 15.1.619.10; Mon, 19 Sep 2016 16:55:31 +0000 Received: from CY4PR12MB1447.namprd12.prod.outlook.com ([10.172.71.139]) by CY4PR12MB1447.namprd12.prod.outlook.com ([10.172.71.139]) with mapi id 15.01.0619.016; Mon, 19 Sep 2016 16:55:31 +0000 From: Justin Holcomb To: Zaphod Beeblebrox CC: "freebsd-virtualization@freebsd.org" Subject: Re: Directions Faulty. Thread-Topic: Directions Faulty. Thread-Index: AQHSEjln5H08/7IukU25cZMIAPia96CAXaGAgAAApoCAAJHsAIAADkmAgAAJR6Y= Date: Mon, 19 Sep 2016 16:55:30 +0000 Message-ID: References: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org>, In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=me@justinholcomb.me; x-originating-ip: [25.163.250.4] x-ms-office365-filtering-correlation-id: 5c7b06b8-6379-4e67-0482-08d3e0adc42c x-microsoft-exchange-diagnostics: 1; CY4PR12MB1447; 6:9J9bmpfBZhBJkua4B+Wr0N1d8eJ8K7ieFwB2U72hBPz6lBvBL726jRQifY1k32RVpgxPp5R0ohF5TjXATbZIkjKL93Ey07ubYpwVqFa4nUZD+xrHQHkiRRq0nFvxxEW+Tf+GdSxpNVhjp++lYmykI6Je5GCMJxO0tABulH/HNpPjhJ49PN5Z961v9OZCsckjKLmxQwcYezJ1oVSJs/plFGsTsvBGnIv2elq2vAAFNSejmradWGvzgUt7voJW1/wHcbhKn8Zz0Vlr2LZ5CeeZHNadx2WS8qBiYYiBnY2M09x8LmNR0KFZ1o1rNRnoUaEM; 5:GDjIH1Oap/Cp2NHXFPT1jvVPVdmkcGtqIYJ0XA7tJqe6js0gaglC2QZOWOC36x549J/+edAMQ+TGTK8g+KaBd+k5l52sqMY/nK7ZQsLl4+xsbZhP21D33+hfb53Yy9Cn9MtpWY43XpVW6GXnWupckQ==; 24:BzLgVzML+e7JDwscZG0tqSUYiIzKMFY1pmUVc0mXVoJ85oGDPvtOgIalnLl96/q74DmdNSuCQ//8Y2Y8iv6jt6d0gSvgXI/B2ACxvks1gsE=; 7:di1+eqXMtkH35ypKTUtmKGivaSmMDexAXyuG02t08x9osHguspKlY3hnwNV5MmDYrwsh9zc9CMJaL9jzPM787ojRDsPlfcZK3JDPXjPRKsDW+ir9t8nD9NlEKYMpyk+2xHI03whZmYblDchQItSzrMGHBcot5VmBzphV+A63F2iuZOReid1+wvd0cT4cKHGypjRTIENk1y9cT6J3YFVfN//1i0jNpa6wH2mhCbOQu/D+ZPKNjWlc6fRvgo7ojelsU5FTOpzw7Agn9VSzkqjB7GPp4brtHTGiJpzaqLN17Xh5NCoUHSWgapvaAEmFBGPh x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:CY4PR12MB1447; x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(6040176)(601004)(2401047)(8121501046)(5005006)(3002001)(10201501046)(6042046)(6043046); SRVR:CY4PR12MB1447; BCL:0; PCL:0; RULEID:; SRVR:CY4PR12MB1447; x-forefront-prvs: 0070A8666B x-forefront-antispam-report: SFV:NSPM; SFS:(10009020)(6009001)(7916002)(377454003)(189002)(20264003)(24454002)(199003)(377424004)(305945005)(586003)(74316002)(7116003)(8676002)(81156014)(81166006)(87936001)(99286002)(106116001)(7846002)(8936002)(86362001)(575784001)(105586002)(106356001)(3846002)(102836003)(6116002)(5660300001)(2906002)(7696004)(19580395003)(5002640100001)(11100500001)(4326007)(19580405001)(76576001)(3660700001)(93886004)(33656002)(9686002)(2900100001)(3280700002)(92566002)(7736002)(77096005)(3480700004)(54356999)(1411001)(50986999)(76176999)(68736007)(74482002)(189998001)(10400500002)(122556002)(97736004)(66066001)(2950100001)(110136003)(101416001); DIR:OUT; SFP:1101; SCL:1; SRVR:CY4PR12MB1447; H:CY4PR12MB1447.namprd12.prod.outlook.com; FPR:; SPF:None; PTR:InfoNoRecords; MX:1; A:1; LANG:en; received-spf: None (protection.outlook.com: justinholcomb.me does not designate permitted sender hosts) spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: justinholcomb.me X-MS-Exchange-CrossTenant-originalarrivaltime: 19 Sep 2016 16:55:30.9941 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: c7d5abe1-1510-4ced-8e7f-cfc5eb7f6997 X-MS-Exchange-Transport-CrossTenantHeadersStamped: CY4PR12MB1447 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 23:29:01 -0000 =A0 =A0 >On Mon, Sep 19, 2016 at 11:27 AM, Allan Jude wrote= : > >> On 2016-09-19 02:45, Zaphod Beeblebrox wrote: >> >> ... which fails because the cd image doesn't contain /boot/grub. =A0I= 've >> >> tried directing it with -d /isolinux and -g /isolinux/isolinux.cfg ..= . >> >> but the magic isn't there. >> >> >> >> Frustration. >> >> The earlier instructions for doing the install from the CD, include >> instructions on using grubs interactive interface to poke around and >> find the initramfs and kernel and load them manually. > > >Obviously, since I talked about what was on the disk, I was doing that. > >The problems are that there are several vmlinuz and several initrd.img on >the CD. =A0I've even mounted the cd9660 filesystem and wandered around >reading the files. =A0I have tried the kernel and initrd in /isolinux and = in >/live ... they fail to boot with something about "/sbin/init missing" whil= e >iniitrd is still mounted. > >I gather that some set of kernel boot options is what I'm missing, but I >haven't been able to find those yet. Zaphod: Try these commands with the following file contents: Installation: # cat device.map (hd0) /dev/zvol/pool/bhyve/guests/debian8/disk0 (cd0) /folder/path/to/debian-8.5.0-amd64-netinst.iso # grub-bhyve -m /folder/path/to/debian8/device.map -r cd0 -c /dev/nmdm0A -M= 1G debian8 # bhyve -A -H -P -c 2 -m 1G -s 0,hostbridge -s 3,ahci-cd,/folder/path/to/de= bian-8.5.0-amd64-netinst.iso =A0-s 4,ahci-hd,/dev/zvol/pool/bhyve/guests/de= bian8/disk0 -s 5,virtio-net,tap0 =A0-l com1,/dev/nmdm0A =A0 -s 31,lpc debia= n8 After installation: # cat device.map (hd0) /dev/zvol/pool/bhyve/guests/debian8/disk0 Non-LVM installation: # grub-bhyve -m /folder/path/to/debian8/device.map -r hd0,msdos1 -c /dev/nm= dm0A -M 1G debian8 LVM installation (Because the grub folder is not in the standard '/boot/gru= b' but '/grub' instead.): # grub-bhyve -m /folder/path/to/debian8/device.map -r hd0,msdos1 -d /grub -= c /dev/nmdm53A -M 1G debian8 # bhyve -A -H -P -c 2 -m 1G -s 0,hostbridge -s 3,ahci-hd,/dev/zvol/pool/bhy= ve/guests/debian8/disk0 =A0-s 4,virtio-net,tap0 =A0-l com1,/dev/nmdm0A -s 3= 1,lpc debian8 -Justin D Holcomb = From owner-freebsd-virtualization@freebsd.org Mon Sep 19 23:53:28 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F613BE1900 for ; Mon, 19 Sep 2016 23:53:28 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id 1ABBEDD5 for ; Mon, 19 Sep 2016 23:53:27 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from iredmail.onthenet.com.au (iredmail.onthenet.com.au [203.13.68.150]) by alto.onthenet.com.au (Postfix) with ESMTPS id A81BC20A40D1 for ; Tue, 20 Sep 2016 09:53:08 +1000 (AEST) Received: from localhost (iredmail.onthenet.com.au [127.0.0.1]) by iredmail.onthenet.com.au (Postfix) with ESMTP id 9BDF0280A51 for ; Tue, 20 Sep 2016 09:53:08 +1000 (AEST) X-Amavis-Modified: Mail body modified (using disclaimer) - iredmail.onthenet.com.au Received: from iredmail.onthenet.com.au ([127.0.0.1]) by localhost (iredmail.onthenet.com.au [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id PDt-BrW_Mxru for ; Tue, 20 Sep 2016 09:53:08 +1000 (AEST) Received: from Peters-MacBook-Pro-2.local (96-82-80-65-static.hfc.comcastbusiness.net [96.82.80.65]) by iredmail.onthenet.com.au (Postfix) with ESMTPSA id 0D66A2809E1; Tue, 20 Sep 2016 09:53:05 +1000 (AEST) Subject: Re: Directions Faulty. To: Justin Holcomb , Zaphod Beeblebrox References: <3a5ded2c-4add-4fda-1168-491b30148768@freebsd.org> Cc: "freebsd-virtualization@freebsd.org" From: Peter Grehan Message-ID: Date: Mon, 19 Sep 2016 16:53:15 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-CMAE-Score: 0 X-CMAE-Analysis: v=2.2 cv=VuVhOK+n c=1 sm=1 tr=0 a=A6CF0fG5TOl4vs6YHvqXgw==:117 a=mwgbnDbW7alINpy3vhoKyg==:17 a=N659UExz7-8A:10 a=GW1xBdLrtEIA:10 a=CUq2dnGqfGREfnAhsYMA:9 a=pILNOxqGKmIA:10 wl=host:3 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 23:53:28 -0000 Hi, >> The problems are that there are several vmlinuz and several initrd.img on >> the CD. I've even mounted the cd9660 filesystem and wandered around >> reading the files. I have tried the kernel and initrd in /isolinux and in >> /live ... they fail to boot with something about "/sbin/init missing" while >> iniitrd is still mounted. >> >> I gather that some set of kernel boot options is what I'm missing, but I >> haven't been able to find those yet. > > > Zaphod: > > Try these commands with the following file contents: The install/netinstall ISOs have grub2 as the boot loader, but strangely the live ISOs use isolinux which requires grub commands. I've booted the 8.6 live ISO by using the following grub2 commands (after extracting them from a maze of nested isolinux cfg files): linux /live/vmlinuz boot=live components initrd /live/initrd.img boot This will drop to a login prompt, with an account/passwd of user/live later, Peter. From owner-freebsd-virtualization@freebsd.org Tue Sep 20 01:19:41 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36B6DBE0F73 for ; Tue, 20 Sep 2016 01:19:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2591E61F for ; Tue, 20 Sep 2016 01:19:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K1JdfF056144 for ; Tue, 20 Sep 2016 01:19:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 01:19:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 01:19:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 Sepherosa Ziehau changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sepherosa@gmail.com --- Comment #10 from Sepherosa Ziehau --- Use gen1 VM, gen2 VM is not really supported yet. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 01:55:55 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8B5BBE1076 for ; Tue, 20 Sep 2016 01:55:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7F57A1C for ; Tue, 20 Sep 2016 01:55:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K1ttNQ044021 for ; Tue, 20 Sep 2016 01:55:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 01:55:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 01:55:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #12 from Hongjiang --- I have tried to install 11.0-RC3 (ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/ISO-IMAGES/11.0/Fre= eBSD-11.0-RC3-amd64-dvd1.iso) on my 2012r2 (Generation 1VM). I used both SMB3 shared storage and local di= sk. Both of them work fine. The vhdx I used is dynamic size. I have tried 30G vhdx and 200G vhdx. I guess that must be caused by some environment or version issue. See my 2012r2 systeminfo. You can compare it with your local 2012r2 details= by the output of cmd "systeminfo". --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 01:56:22 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 044BEBE1123 for ; Tue, 20 Sep 2016 01:56:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7D59AA0 for ; Tue, 20 Sep 2016 01:56:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K1uLDO057206 for ; Tue, 20 Sep 2016 01:56:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 01:56:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 01:56:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #13 from Hongjiang --- Created attachment 174979 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174979&action= =3Dedit Workable 2012R2 systeminfo --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 02:28:22 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D883FBE1E03 for ; Tue, 20 Sep 2016 02:28:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C80A9C63 for ; Tue, 20 Sep 2016 02:28:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K2SMQC010585 for ; Tue, 20 Sep 2016 02:28:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 02:28:22 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 02:28:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #14 from Hongjiang --- Do you mean you install FreeBSD11 RC3 successfully on VHDX > 32G (exclusive 200G)? In other words, is the failure related to VHDX size? (In reply to Arkadiy from comment #10) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 08:01:35 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 614C0BE1A37 for ; Tue, 20 Sep 2016 08:01:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 502EBA39 for ; Tue, 20 Sep 2016 08:01:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K81ZVF069163 for ; Tue, 20 Sep 2016 08:01:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 08:01:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:01:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #11 from fbsd@hmamail.com --- Sure, with V1 working better, but there are still some issues. See the newly attached screenshot. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 08:02:00 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A214BE1A7D for ; Tue, 20 Sep 2016 08:02:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38D15AEB for ; Tue, 20 Sep 2016 08:02:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K81xkH078702 for ; Tue, 20 Sep 2016 08:02:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 08:02:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:02:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #12 from fbsd@hmamail.com --- Created attachment 174989 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174989&action= =3Dedit hyperv-warn1 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 08:05:16 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AD6BBE1B36 for ; Tue, 20 Sep 2016 08:05:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69AB3C0C for ; Tue, 20 Sep 2016 08:05:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K85GJ4094263 for ; Tue, 20 Sep 2016 08:05:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 08:05:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:05:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #13 from fbsd@hmamail.com --- This was at the end of the installer, when it shuts down. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 08:29:23 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 834B1BE007C for ; Tue, 20 Sep 2016 08:29:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 721F3767 for ; Tue, 20 Sep 2016 08:29:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K8TNRT046210 for ; Tue, 20 Sep 2016 08:29:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 08:29:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:29:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #14 from Sepherosa Ziehau --- Hongjiang, Dexuan, please help check the host info and configure. I never = hit the the last warning. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 08:58:41 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F4072BE0D7B for ; Tue, 20 Sep 2016 08:58:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2862CD7 for ; Tue, 20 Sep 2016 08:58:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K8weIj008864 for ; Tue, 20 Sep 2016 08:58:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 08:58:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: decui@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:58:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #15 from Dexuan Cui --- (In reply to Sepherosa Ziehau from comment #14) I installed 10.3 (FreeBSD-10.3-RELEASE-amd64-dvd1.iso) on my Win10 last wee= k. My VM worked fine without the issue in Comment 12. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:02:40 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 582B9BE21AF for ; Tue, 20 Sep 2016 09:02:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 471ED227 for ; Tue, 20 Sep 2016 09:02:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K92dam062395 for ; Tue, 20 Sep 2016 09:02:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:02:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:02:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #16 from Hongjiang --- I installed FreeBSD11 RC3 on my windows 10 Enterprise, and I did not see th= at warning. Could you please check whether your windows 10 version? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:03:18 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C76BBE2221 for ; Tue, 20 Sep 2016 09:03:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AECB2CC for ; Tue, 20 Sep 2016 09:03:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K93HsZ063653 for ; Tue, 20 Sep 2016 09:03:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:03:17 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:03:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #17 from Hongjiang --- Created attachment 174992 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174992&action= =3Dedit systeminfo cmd snapshot --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:04:01 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D32E3BE226A for ; Tue, 20 Sep 2016 09:04:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C20B1362 for ; Tue, 20 Sep 2016 09:04:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K941Of064854 for ; Tue, 20 Sep 2016 09:04:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:04:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:04:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #18 from Hongjiang --- Created attachment 174993 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174993&action= =3Dedit workable windows 10 systeminfo --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:05:51 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9B69BE238B for ; Tue, 20 Sep 2016 09:05:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9216633 for ; Tue, 20 Sep 2016 09:05:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K95ph3068070 for ; Tue, 20 Sep 2016 09:05:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 09:05:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:05:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #15 from Arkadiy --- I was unable to install 11.0-RC3. Installation failed on disk partitioning = step on newly created vhdx (tried 30Gb and 200Gb). Moreover, I tried to install 11.0-RC3, 11.0-RC2 on my laptop with Hyper-V. = I=E2=80=99ve got the same error.=20 If I install 10.3 on my Hyper-V server or laptop with Hyper-V, it work fine. I=E2=80=99ve downloaded all .iso files from ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/ISO-IMAGES/... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:06:11 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D8C5BE2406 for ; Tue, 20 Sep 2016 09:06:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 256827E8 for ; Tue, 20 Sep 2016 09:06:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K96AKP068464 for ; Tue, 20 Sep 2016 09:06:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:06:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:06:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #19 from fbsd@hmamail.com --- PS C:\Users\Training> [System.Environment]::OSVersion.Version Major Minor Build Revision ----- ----- ----- -------- 10 0 10586 0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:07:05 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9C38BE2452 for ; Tue, 20 Sep 2016 09:07:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8C0C876 for ; Tue, 20 Sep 2016 09:07:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K975tw081784 for ; Tue, 20 Sep 2016 09:07:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:07:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:07:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #20 from fbsd@hmamail.com --- Hotfix(s): 9 Hotfix(s) Installed. [01]: KB3116278 [02]: KB3124200 [03]: KB3150513 [04]: KB3161102 [05]: KB3172729 [06]: KB3173428 [07]: KB3181403 [08]: KB3188128 [09]: KB3185614 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:07:34 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F9CDBE248A for ; Tue, 20 Sep 2016 09:07:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2EE758EE for ; Tue, 20 Sep 2016 09:07:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K97X3e089899 for ; Tue, 20 Sep 2016 09:07:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 09:07:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:07:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #16 from Arkadiy --- Created attachment 174994 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174994&action= =3Dedit Systeminfo of my Hyper-V Server --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 09:41:54 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18591BE2F43 for ; Tue, 20 Sep 2016 09:41:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0632CDDF for ; Tue, 20 Sep 2016 09:41:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8K9fqAe044459 for ; Tue, 20 Sep 2016 09:41:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Tue, 20 Sep 2016 09:41:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 09:41:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #21 from fbsd@hmamail.com --- Created attachment 174995 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174995&action= =3Dedit hyperv-warn2 It's reproducible. 1. boot 2. select install 3. select 4. f11r; ok 5. select src and test too; ok 6. auto (ufs); ok 7. enter 8. enter 9. select gpt; enter 10. enter 11. enter 12. on config passwd; a; enter; a; enter 13. enter 14. select no; enter 15. select no; enter 16. end; enter 17. enter 18. enter 19. enter 20. enter 21. enter 22. enter 23. on add user accounts; no; enter 24. enter 25. enter 26. on manual config...; yes; enter 27. init 0; enter --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 10:23:32 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3F31BE1CEB for ; Tue, 20 Sep 2016 10:23:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E1B816CE for ; Tue, 20 Sep 2016 10:23:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8KANUCh077535 for ; Tue, 20 Sep 2016 10:23:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 10:23:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: stryqx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 10:23:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 stryqx@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |stryqx@gmail.com --- Comment #17 from stryqx@gmail.com --- Disk partitioning fails because any virtual disks are enumerated and then detached (and periph destroyed). Escaping to the shell and rescanning the bus(ses) with camcontrol rescan re-attaches the disks which allows partitioning and installation to occur, = but rebooting the installation results in the virtual disks being detached, followed by a subsequent mountroot panic. Can repro this on multiple 2012 R2 systems, clean install, Hyper-V role, up-to-date with all available Automatic Updates installed, new VMs using default configuration. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 10:25:14 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 812C8BE1DDC for ; Tue, 20 Sep 2016 10:25:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7095E86E for ; Tue, 20 Sep 2016 10:25:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8KAPDQX080072 for ; Tue, 20 Sep 2016 10:25:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 10:25:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: stryqx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 10:25:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #18 from stryqx@gmail.com --- Created attachment 174998 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D174998&action= =3Dedit dmesg screenshot of 11.0-RC3 installation boot --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Tue Sep 20 10:59:40 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 017CCBE240A for ; Tue, 20 Sep 2016 10:59:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E51686D2 for ; Tue, 20 Sep 2016 10:59:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8KAxdTL053286 for ; Tue, 20 Sep 2016 10:59:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Tue, 20 Sep 2016 10:59:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: decui@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 10:59:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #19 from Dexuan Cui --- (In reply to Chris K from comment #17) Just now I installed 11-RC3 VM (ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/amd64/ISO-IMAGES/11.0/Fre= eBSD-11.0-RC3-amd64-dvd1.iso) without any issue and the VM worked fine for me. I usd the default VM configure. I tried 20GB and 40GB local vhdx. It's strange I could't reproduce the issue. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 03:19:21 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DB79BE2619 for ; Wed, 21 Sep 2016 03:19:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C71F7D0 for ; Wed, 21 Sep 2016 03:19:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L3JK5M019425 for ; Wed, 21 Sep 2016 03:19:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 03:19:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 03:19:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #22 from Hongjiang --- I followed your steps, but I cannot see any issues. Could you please try the VHDX https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/FreeBSD11R= C3.vhdx on your machine? That is my newly installed VHDX on windows 10. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 03:20:00 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D25B7BE2680 for ; Wed, 21 Sep 2016 03:20:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C13FC84C for ; Wed, 21 Sep 2016 03:20:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L3Jxxo055459 for ; Wed, 21 Sep 2016 03:20:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 03:20:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 03:20:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #23 from Hongjiang --- login user: root login passwd: User@123 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 04:36:10 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8E48BE194B for ; Wed, 21 Sep 2016 04:36:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7B7281A for ; Wed, 21 Sep 2016 04:36:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L4a8JH074947 for ; Wed, 21 Sep 2016 04:36:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 04:36:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 04:36:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #24 from Hongjiang --- Another VHDX was created on win2012R2 with the same login account https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/f11r_2012r= 2.vhdx --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 04:37:47 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22E7FBE19A9 for ; Wed, 21 Sep 2016 04:37:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1266B8A3 for ; Wed, 21 Sep 2016 04:37:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L4bkRe077329 for ; Wed, 21 Sep 2016 04:37:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Wed, 21 Sep 2016 04:37:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 04:37:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #20 from Hongjiang --- I cannot reproduce the issue either. Could you please try my VHDX on your local environment? Both of them are fr= esh install of FreeBSD 11 RC3 on windows 2012r2 and windows 10. https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/f11r_2012r= 2.vhdx https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/FreeBSD11R= C3.vhdx The login account: root passwd: User@123 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 07:27:47 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76C70BE3985 for ; Wed, 21 Sep 2016 07:27:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65AAE80C for ; Wed, 21 Sep 2016 07:27:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L7Rk3d010306 for ; Wed, 21 Sep 2016 07:27:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 07:27:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 07:27:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #25 from fbsd@hmamail.com --- This messages comes at the end of the installer, and not at the end of norm= al installed instance. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 08:33:36 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DC45BE0555 for ; Wed, 21 Sep 2016 08:33:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CCAED9 for ; Wed, 21 Sep 2016 08:33:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8L8XZ7c001312 for ; Wed, 21 Sep 2016 08:33:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 08:33:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 08:33:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #26 from Hongjiang --- (In reply to fbsd from comment #25) All right. Do you encounter any issue when you restart the machine after installation? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 10:11:40 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 745CDBE39D7 for ; Wed, 21 Sep 2016 10:11:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6326ED19 for ; Wed, 21 Sep 2016 10:11:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8LABcWQ087039 for ; Wed, 21 Sep 2016 10:11:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Wed, 21 Sep 2016 10:11:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: fbsd@hmamail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 10:11:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #27 from fbsd@hmamail.com --- Not really, I just see this error message. Otherwise seems like the system = is fully working with V1 install. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Wed Sep 21 15:12:15 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC50DBE47A9 for ; Wed, 21 Sep 2016 15:12:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BB27138A for ; Wed, 21 Sep 2016 15:12:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8LFCFRx066161 for ; Wed, 21 Sep 2016 15:12:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Wed, 21 Sep 2016 15:12:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Sep 2016 15:12:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #21 from Arkadiy --- I figured out that version 11 RC1 and earlier I can install without problem. Version 11 RC2 and RC3 has a problems with installation on my laptop (Windo= ws 8.1 Ent with last updates, Hyper-V, CPU Core i7 2,9G, RAM 6Gb). I do not kn= ow why it happening. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 01:35:57 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3469BE4A55 for ; Thu, 22 Sep 2016 01:35:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A2909DB for ; Thu, 22 Sep 2016 01:35:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8M1Zucr022797 for ; Thu, 22 Sep 2016 01:35:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212858] FreeBSD 11-stable regression in storage IOPS Date: Thu, 22 Sep 2016 01:35:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 01:35:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212858 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-virtualization@Free | |BSD.org CC|freebsd-amd64@FreeBSD.org | --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 03:20:41 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92EC6BE2011 for ; Thu, 22 Sep 2016 03:20:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 824A02E1 for ; Thu, 22 Sep 2016 03:20:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8M3KeKR076211 for ; Thu, 22 Sep 2016 03:20:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212858] FreeBSD 11-stable regression in storage IOPS Date: Thu, 22 Sep 2016 03:20:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 03:20:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212858 Sepherosa Ziehau changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sepherosa@gmail.com --- Comment #1 from Sepherosa Ziehau --- Possible to test current w/o WITNESS and INVARIANTS? Since most perf relat= ed stuffs in current have not been MFC'ed to 11-stable. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 06:28:15 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F13DDBE4E3B for ; Thu, 22 Sep 2016 06:28:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0BC78E3 for ; Thu, 22 Sep 2016 06:28:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8M6SEtl033343 for ; Thu, 22 Sep 2016 06:28:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Thu, 22 Sep 2016 06:28:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: tomas@blueboard.cz X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 06:28:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 Tom=C3=A1=C5=A1 Randa changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tomas@blueboard.cz --- Comment #22 from Tom=C3=A1=C5=A1 Randa --- This problem is related to MS update KB3172614 or KB3179574. Uninstalling t= hem make VPS or installation working again. But I don't know exact reason why. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 07:48:51 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B77A9BE5612 for ; Thu, 22 Sep 2016 07:48:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6DB4EAC for ; Thu, 22 Sep 2016 07:48:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8M7mpd5062761 for ; Thu, 22 Sep 2016 07:48:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212858] FreeBSD 11-stable regression in storage IOPS Date: Thu, 22 Sep 2016 07:48:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sepherosa@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 07:48:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212858 --- Comment #2 from Sepherosa Ziehau --- Sorry, I misread your report thought it was on Hyper-V... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 08:19:12 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B770BBE1AAC for ; Thu, 22 Sep 2016 08:19:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6B1BC1E for ; Thu, 22 Sep 2016 08:19:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8M8JBkf072206 for ; Thu, 22 Sep 2016 08:19:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Thu, 22 Sep 2016 08:19:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: yaruta.arkadiy@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 08:19:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #23 from Arkadiy --- Thank you Tomas for this solution. I uninstalled both updates KB3172614 and KB3179574, after that I installed FreeBSD 11 RC3 on Hyper-V VM on my laptop without problems. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 10:26:31 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E42FCBE5571 for ; Thu, 22 Sep 2016 10:26:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D38CCFD9 for ; Thu, 22 Sep 2016 10:26:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8MAQVq5037531 for ; Thu, 22 Sep 2016 10:26:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212858] FreeBSD 11-stable regression in storage IOPS Date: Thu, 22 Sep 2016 10:26:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: patrick_dkt@yahoo.com.hk X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 10:26:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212858 --- Comment #3 from patrick_dkt@yahoo.com.hk --- (In reply to Sepherosa Ziehau from comment #2) No problem. I did a test on FreeBSD 12-current without witeness and invariant. It is faster than FreeBSD 11-stable but slower than FreeBSD 10... READ bw=3D7191.4KB/s, iops=3D1797 WRITE bw=3D2412.9KB/s, iops=3D603 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 10:43:10 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71B1ABE47E6 for ; Thu, 22 Sep 2016 10:43:10 +0000 (UTC) (envelope-from vas@mpeks.tomsk.su) Received: from relay2.tomsk.ru (mail.sibptus.tomsk.ru [212.73.124.5]) by mx1.freebsd.org (Postfix) with ESMTP id DFD531D8D for ; Thu, 22 Sep 2016 10:43:08 +0000 (UTC) (envelope-from vas@mpeks.tomsk.su) X-Virus-Scanned: by clamd daemon 0.98.5_1 for FreeBSD at relay2.tomsk.ru Received: from [212.73.125.240] (HELO admin.sibptus.transneft.ru) by relay2.tomsk.ru (CommuniGate Pro SMTP 5.1.16) with ESMTPS id 39357049 for freebsd-virtualization@freebsd.org; Thu, 22 Sep 2016 16:42:48 +0600 Received: from admin.sibptus.transneft.ru (sudakov@localhost [127.0.0.1]) by admin.sibptus.transneft.ru (8.14.9/8.14.9) with ESMTP id u8MAh626033512 for ; Thu, 22 Sep 2016 17:43:06 +0700 (KRAT) (envelope-from vas@mpeks.tomsk.su) Received: (from sudakov@localhost) by admin.sibptus.transneft.ru (8.14.9/8.14.9/Submit) id u8MAh3kL033511 for freebsd-virtualization@freebsd.org; Thu, 22 Sep 2016 17:43:03 +0700 (KRAT) (envelope-from vas@mpeks.tomsk.su) X-Authentication-Warning: admin.sibptus.transneft.ru: sudakov set sender to vas@mpeks.tomsk.su using -f Date: Thu, 22 Sep 2016 17:43:03 +0700 From: Victor Sudakov To: freebsd-virtualization@freebsd.org Subject: Time sync Message-ID: <20160922104303.GA33424@admin.sibptus.transneft.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: AO "Svyaztransneft", SibPTUS X-PGP-Key: http://www.dreamwidth.org/pubkey?user=victor_sudakov X-PGP-Fingerprint: 10E3 1171 1273 E007 C2E9 3532 0DA4 F259 9B5E C634 User-Agent: Mutt/1.6.1 (2016-04-27) X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 10:43:10 -0000 Colleagues, Do FreeBSD guests in bhyve need time synchronization (a running ntpd or periodic ntpdate), or do they inherit accurate time from the host system? -- Victor Sudakov, VAS4-RIPE, VAS47-RIPN sip:sudakov@sibptus.tomsk.ru From owner-freebsd-virtualization@freebsd.org Thu Sep 22 10:48:46 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08A81BE4E80 for ; Thu, 22 Sep 2016 10:48:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC2A575A for ; Thu, 22 Sep 2016 10:48:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8MAmjL3089015 for ; Thu, 22 Sep 2016 10:48:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Thu, 22 Sep 2016 10:48:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: sa.inbox@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 10:48:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #24 from Alexander --- Problem with 11.0-RC3 definitely disappears after uninstalling both KB31726= 14 and KB3179574 updates. Why FreeBSD 10.3 works when these updates installed?= =20 On which layer this should be fixed: FreeBSD or Hyper-V? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 14:48:18 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA59DBE542A for ; Thu, 22 Sep 2016 14:48:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9D77E5D for ; Thu, 22 Sep 2016 14:48:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8MEmIMu082171 for ; Thu, 22 Sep 2016 14:48:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Thu, 22 Sep 2016 14:48:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: stryqx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 14:48:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #25 from Chris K --- (In reply to Hongjiang from comment #20) Same mountroot panic. virtual disk is enumerated as da0, then immediately detached. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Thu Sep 22 15:07:38 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41538BE5C63 for ; Thu, 22 Sep 2016 15:07:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30C22872 for ; Thu, 22 Sep 2016 15:07:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8MF7bD6063387 for ; Thu, 22 Sep 2016 15:07:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Thu, 22 Sep 2016 15:07:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: stryqx@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Sep 2016 15:07:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #26 from Chris K --- (In reply to Hongjiang from comment #20) If I uninstall KB3172614 from both my Hyper-V hosts I'm able to successfully install and then boot into FreeBSD 11.0-RC3, as well as successfully boot i= nto the VHDX you supplied. The Windows 8.1 and Windows Server 2012 R2 update history page (https://support.microsoft.com/en-au/help/24717/windows-8-1-windows-server-= 2012-r2-update-history) calls out the following Hyper-V related change: * When you try to configure connecting a SCSI storage device to a Windows Hyper-V Host, the Host will not recognize the SCSI storage device when Logi= cal Unit (LUN) 0 is not present. I suspect this change (along with the Hyper-V code changes in FreeBSD since 10.3) is triggering the virtual disk being detached from the bus. As a reference, FreeBSD 10.3 release installs correctly with or without KB3172614 installed. So there's definitely a regression in the Hyper-V code= base in FreeBSD 11.0-RC3. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Fri Sep 23 02:50:37 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83EBBBE4C71 for ; Fri, 23 Sep 2016 02:50:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73771B06 for ; Fri, 23 Sep 2016 02:50:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8N2obF5066558 for ; Fri, 23 Sep 2016 02:50:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Fri, 23 Sep 2016 02:50:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 02:50:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #27 from Hongjiang --- On my local 2012r2, I did not have applied either KB3172614 or KB3179574 updates. Thanks for your investigation. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Fri Sep 23 08:45:50 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53EBCBE66C3 for ; Fri, 23 Sep 2016 08:45:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42B1AC20 for ; Fri, 23 Sep 2016 08:45:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8N8jmAZ088843 for ; Fri, 23 Sep 2016 08:45:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212820] FreeBSD 10-STABLE from latest HEAD and 11-RELEASE-RC3 fail to boot in Hyper-V on Windows 10 Date: Fri, 23 Sep 2016 08:45:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 08:45:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212820 --- Comment #28 from Hongjiang --- delete the following VHDX since they are not used. https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/FreeBSD11R= C3.vhdx=20 https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/f11r_2012r= 2.vhdx --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Fri Sep 23 08:46:17 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 49AC2BE6708 for ; Fri, 23 Sep 2016 08:46:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39251C87 for ; Fri, 23 Sep 2016 08:46:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u8N8kFfQ089536 for ; Fri, 23 Sep 2016 08:46:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-virtualization@FreeBSD.org Subject: [Bug 212721] FreeBSD 11.0-RC3 fails on Hyper-V 2012r2 Date: Fri, 23 Sep 2016 08:46:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: honzhan@microsoft.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 08:46:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212721 --- Comment #28 from Hongjiang --- delete the following VHDX since they are not used. https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/FreeBSD11R= C3.vhdx=20 https://honzhancustomer.blob.core.windows.net/freebsd11rc3issues/f11r_2012r= 2.vhdx --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-virtualization@freebsd.org Sat Sep 24 06:56:59 2016 Return-Path: Delivered-To: freebsd-virtualization@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A587DBE5565 for ; Sat, 24 Sep 2016 06:56:59 +0000 (UTC) (envelope-from stephan@theched.org) Received: from mail.theched.org (theched.org [91.121.195.242]) by mx1.freebsd.org (Postfix) with ESMTP id 76AB5312 for ; Sat, 24 Sep 2016 06:56:59 +0000 (UTC) (envelope-from stephan@theched.org) Received: from panda.test.me (42-98-98-155.static.netvigator.com [42.98.98.155]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.theched.org (Postfix) with ESMTPSA id 61CDC1744AC for ; Sat, 24 Sep 2016 06:51:20 +0000 (UTC) From: Stephan CHEDLIVILI To: freebsd-virtualization@freebsd.org Subject: UEFI bhyve and EFI shell at boot Date: Sat, 24 Sep 2016 14:50:21 +0800 Message-ID: <9276239.oRRSstIAVb@panda.test.me> User-Agent: KMail/4.14.10 (FreeBSD/11.0-RC3; KDE/4.14.10; amd64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Sep 2016 06:56:59 -0000 Hi gents, I was giving a try to the UEFI-GOP on a FreeBSD 11.0-RC3. Launching the install of, let's say a Debian works fine and I can attach a VNC viewer for the progress. All is fine , even rebooting after the installation is finished I can log in Debian. However, when I do a bhyvectl --destroy --vm=xxxxxxx and I try to reboot the VM and it greets me with the error message "Boot failed, EFI Harddrive" at boot and sends me to the EFI shell. I then have to manually use the shell menu to launch the boot via the ad-hoc file (/boot/efi/efi/debian/grubx64.efi) and it boot flawlessly. And of course, the same error happens after I reboot the FreeBSD host machine Is there somethign I am missing here ? Thanks for this admirable piece of work ! -Stephan