Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Aug 2016 02:02:02 +0000
From:      Hongjiang Zhang <honzhan@microsoft.com>
To:        Scott Long <scott4long@yahoo.com>
Cc:        "freebsd-scsi@freebsd.org" <freebsd-scsi@freebsd.org>
Subject:   RE: How to disable ata driver on Hyper-V
Message-ID:  <SN2PR03MB2224BD971948AC61F25D2A95B5160@SN2PR03MB2224.namprd03.prod.outlook.com>
In-Reply-To: <1E246524-3A4D-42A0-A2F6-AF51D4CD6CC3@yahoo.com>
References:  <CO2PR03MB22158E9C579D7F0F256EA2ECB5140@CO2PR03MB2215.namprd03.prod.outlook.com> <258CDD7F-7D2B-46D9-B4BE-1A1D35C7D23C@yahoo.com> <SN2PR03MB22242FF40A67A282C905C504B5150@SN2PR03MB2224.namprd03.prod.outlook.com> <1E246524-3A4D-42A0-A2F6-AF51D4CD6CC3@yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
Hi Scott,

I did some hardcode modifications to achieve what I want: disable ata driver but let cd/dvd show up. See the attachment. The boot log is also attached. 

hv_ata_pci_disengage.c is the ata driver of FreeBSD for Hyperv.

In the log file, I can see message for ata0 and ata1 together with my dumped PCI information.

Aug 19 09:45:01 hz_BSD11 kernel: ata0: PCI class: 1, PCI subclass: 1
Aug 19 09:45:01 hz_BSD11 kernel: ata0: <ATA channel> at channel 0 on atapci0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 0 vector 51
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from ata0
Aug 19 09:45:01 hz_BSD11 kernel: ata1: PCI class: 1, PCI subclass: 1
Aug 19 09:45:01 hz_BSD11 kernel: ata1: <ATA channel> at channel 1 on atapci0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 0 vector 52

Thanks
Hongjiang Zhang

-----Original Message-----
From: Scott Long [mailto:scott4long@yahoo.com] 
Sent: Friday, August 19, 2016 12:48 AM
To: Hongjiang Zhang <honzhan@microsoft.com>
Cc: freebsd-scsi@freebsd.org
Subject: Re: How to disable ata driver on Hyper-V

Hi,

I’m not sure that I understand.  Can you provide an example boot-time output?

Thanks,
Scott

> On Aug 17, 2016, at 10:48 PM, Hongjiang Zhang <honzhan@microsoft.com> wrote:
> 
> Hi Scott,
> 
> FreeBSD on Hyper-V already has a customized ata driver, which returns "BUS_PROBE_DEFAULT" or "EXNIO" for enabling or disabling the driver on ata controller. But this implementation has issues. If the ata controller has a CD/DVD device on it, the /dev/cd0 device failed to be created if I put CD/DVD on an ata controller which has been disabled.
> 
> What I want is disable the /dev/ada device but bypass the /dev/cd device. I found it is difficult for me to determine what type of device will be created in my customized ata probe function. That is why I want to disable ata driver.
> 
> Thanks
> Hongjiang Zhang
> 
> -----Original Message-----
> From: Scott Long [mailto:scott4long@yahoo.com]
> Sent: Thursday, August 18, 2016 12:22 AM
> To: Hongjiang Zhang <honzhan@microsoft.com>
> Cc: freebsd-scsi@freebsd.org
> Subject: Re: How to disable ata driver on Hyper-V
> 
> Hi,
> 
> There’s no direct way to disable a specific driver or specific instance of a driver.  There are ways to disable a particular PCI function, but I’m not sure if that’s what you want.  Are you looking to override the default ata driver with your own custom driver?  The way to do that is have your custom driver provide a higher priority return code from its dev_probe routine.  The way this works is that positive return codes indicate an error.  Negative return codes indicate a priority, with the numbers closer to zero being a higher priority.  Zero is the highest priority, but should be used only with great care.  The priority for the default ahci driver is BUS_PROBE_DEFAULT, which resolves to (-20).  You might consider using BUS_PROBE_VENDOR, which resolves to (-10).  By having your driver look at the PCI bus:device:function tuple, you can selectively override the default driver for specific hardware.
> 
> Scott
> 
>> On Aug 17, 2016, at 2:49 AM, Hongjiang Zhang via freebsd-scsi <freebsd-scsi@freebsd.org> wrote:
>> 
>> Hi all,
>> 
>> I'm want to disable the default ata driver for FreeBSD on Hyper-V. How to do that?
>> 
>> Thanks
>> Hongjiang Zhang
>> _______________________________________________
>> freebsd-scsi@freebsd.org mailing list 
>> https://na01.safelinks.protection.outlook.com/?url=https%3a%2f%2flist
>> s 
>> .freebsd.org%2fmailman%2flistinfo%2ffreebsd-scsi&data=01%7c01%7chonzh
>> a 
>> n%40microsoft.com%7cfba44fbedbf7421bb1a008d3c6bafc76%7c72f988bf86f141
>> a 
>> f91ab2d7cd011db47%7c1&sdata=YuqATsXVz4e4Ohgv%2fYc09SeQ%2fMSLLgpAhro8N
>> c Lm9tI%3d To unsubscribe, send any mail to 
>> "freebsd-scsi-unsubscribe@freebsd.org"


[-- Attachment #2 --]
diff --git a/sys/cam/ata/ata_da.c b/sys/cam/ata/ata_da.c
index b59c649..13d53e4 100644
--- a/sys/cam/ata/ata_da.c
+++ b/sys/cam/ata/ata_da.c
@@ -1654,6 +1654,7 @@ adaregister(struct cam_periph *periph, void *arg)
 	u_int maxio;
 	int quirks;
 
+	return (CAM_SEL_TIMEOUT);
 	cgd = (struct ccb_getdev *)arg;
 	if (cgd == NULL) {
 		printf("adaregister: no getdev CCB, can't register device\n");
diff --git a/sys/cam/ata/ata_xpt.c b/sys/cam/ata/ata_xpt.c
index d2c9760..26c02a9 100644
--- a/sys/cam/ata/ata_xpt.c
+++ b/sys/cam/ata/ata_xpt.c
@@ -837,6 +837,7 @@ noerror:
 		    done_ccb->ccb_h.target_id != 15) {
 			path->device->protocol = PROTO_ATA;
 			PROBE_SET_ACTION(softc, PROBE_IDENTIFY);
+			goto device_fail;
 		} else if (sign == 0x9669 &&
 		    done_ccb->ccb_h.target_id == 15) {
 			/* Report SIM that PM is present. */
diff --git a/sys/dev/hyperv/stordisengage/hv_ata_pci_disengage.c b/sys/dev/hyperv/stordisengage/hv_ata_pci_disengage.c
index 8022026..1d83314 100644
--- a/sys/dev/hyperv/stordisengage/hv_ata_pci_disengage.c
+++ b/sys/dev/hyperv/stordisengage/hv_ata_pci_disengage.c
@@ -86,20 +86,31 @@ static int hv_ata_pci_detach(device_t dev);
 static int
 hv_ata_pci_probe(device_t dev)
 {
+	device_printf(dev, "PCI class: %d, PCI subclass: %d\n",
+		pci_get_class(dev), pci_get_subclass(dev));
+	return (ENXIO);
+#if 0
 	device_t parent = device_get_parent(dev);
 	int ata_disk_enable;
 
 	ata_disk_enable = 0;
 
+	device_printf(dev, "dev desc: %s, unit: %d\n",
+		device_get_desc(dev),
+		device_get_unit(dev));
+	device_printf(dev, "dev parent desc: %s, unit: %d\n",
+		device_get_desc(parent),
+		device_get_unit(parent));
 	/*
 	 * Don't probe if not running in a Hyper-V environment
 	 */
 	if (vm_guest != VM_GUEST_HV)
 		return (ENXIO);
 
-	if (device_get_unit(parent) != 0 || device_get_ivars(dev) != 0)
+	if (device_get_unit(parent) != 0 || device_get_ivars(dev) != 0) {
+		device_printf(dev, "return ENXIO\n");
 		return (ENXIO);
-
+	}
 	/*
 	 * On Hyper-V the default is to use the enlightened driver for
 	 * IDE disks. However, if the user wishes to use the native
@@ -115,8 +126,9 @@ hv_ata_pci_probe(device_t dev)
 	}
 
 	device_set_desc(dev, "Hyper-V ATA storage disengage driver");
-
+	device_printf(dev, "return BUS_PROBE_DEFAULT\n");
 	return (BUS_PROBE_DEFAULT);
+#endif
 }
 
 static int

[-- Attachment #3 --]
Aug 18 18:00:00 hz_BSD11 newsyslog[727]: logfile turned over due to size>100K
Aug 19 09:27:45 hz_BSD11 shutdown: power-down by honzhan: 
Aug 19 09:27:45 hz_BSD11 kernel: .
Aug 19 09:27:46 hz_BSD11 syslogd: exiting on signal 15
Aug 19 09:45:01 hz_BSD11 syslogd: kernel boot file is /boot/kernel/kernel
Aug 19 09:45:01 hz_BSD11 kernel: Table 'FACP' at 0xf7ff0200
Aug 19 09:45:01 hz_BSD11 kernel: Table 'WAET' at 0xf7ff1480
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SLIC' at 0xf7ff14c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'OEM0' at 0xf7ff16c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SRAT' at 0xf7ff0600
Aug 19 09:45:01 hz_BSD11 kernel: Table 'APIC' at 0xf7ff0300
Aug 19 09:45:01 hz_BSD11 kernel: APIC: Found table at 0xf7ff0300
Aug 19 09:45:01 hz_BSD11 kernel: APIC: Using the MADT enumerator.
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 0 ACPI ID 1: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SMP: Added CPU 0 (AP)
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 1 ACPI ID 2: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SMP: Added CPU 1 (AP)
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 2 ACPI ID 3: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SMP: Added CPU 2 (AP)
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 3 ACPI ID 4: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SMP: Added CPU 3 (AP)
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 4 ACPI ID 5: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 5 ACPI ID 6: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 6 ACPI ID 7: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 7 ACPI ID 8: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 8 ACPI ID 9: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 9 ACPI ID 10: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 10 ACPI ID 11: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 11 ACPI ID 12: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 12 ACPI ID 13: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 13 ACPI ID 14: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 14 ACPI ID 15: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 15 ACPI ID 16: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 16 ACPI ID 17: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 17 ACPI ID 18: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 18 ACPI ID 19: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 19 ACPI ID 20: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 20 ACPI ID 21: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 21 ACPI ID 22: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 22 ACPI ID 23: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 23 ACPI ID 24: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 24 ACPI ID 25: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 25 ACPI ID 26: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 26 ACPI ID 27: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 27 ACPI ID 28: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 28 ACPI ID 29: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 29 ACPI ID 30: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 30 ACPI ID 31: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 31 ACPI ID 32: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 32 ACPI ID 33: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 33 ACPI ID 34: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 34 ACPI ID 35: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 35 ACPI ID 36: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 36 ACPI ID 37: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 37 ACPI ID 38: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 38 ACPI ID 39: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 39 ACPI ID 40: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 40 ACPI ID 41: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 41 ACPI ID 42: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 42 ACPI ID 43: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 43 ACPI ID 44: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 44 ACPI ID 45: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 45 ACPI ID 46: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 46 ACPI ID 47: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 47 ACPI ID 48: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 48 ACPI ID 49: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 49 ACPI ID 50: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 50 ACPI ID 51: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 51 ACPI ID 52: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 52 ACPI ID 53: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 53 ACPI ID 54: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 54 ACPI ID 55: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 55 ACPI ID 56: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 56 ACPI ID 57: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 57 ACPI ID 58: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 58 ACPI ID 59: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 59 ACPI ID 60: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 60 ACPI ID 61: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 61 ACPI ID 62: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 62 ACPI ID 63: disabled
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found CPU APIC ID 63 ACPI ID 64: disabled
Aug 19 09:45:01 hz_BSD11 kernel: Copyright (c) 1992-2016 The FreeBSD Project.
Aug 19 09:45:01 hz_BSD11 kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
Aug 19 09:45:01 hz_BSD11 kernel: The Regents of the University of California. All rights reserved.
Aug 19 09:45:01 hz_BSD11 kernel: FreeBSD is a registered trademark of The FreeBSD Foundation.
Aug 19 09:45:01 hz_BSD11 kernel: FreeBSD 12.0-CURRENT #11 572ce92(cd_disappear_on_head)-dirty: Thu Aug 18 17:43:09 CST 2016
Aug 19 09:45:01 hz_BSD11 kernel: root@hz_BSD11:/usr/obj/usr/home/honzhan/clovetrail_freebsd/sys/GENERIC-NODEBUG amd64
Aug 19 09:45:01 hz_BSD11 kernel: FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0)
Aug 19 09:45:01 hz_BSD11 kernel: Table 'FACP' at 0xf7ff0200
Aug 19 09:45:01 hz_BSD11 kernel: Table 'WAET' at 0xf7ff1480
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SLIC' at 0xf7ff14c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'OEM0' at 0xf7ff16c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SRAT' at 0xf7ff0600
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found table at 0xf7ff0600
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found CPU APIC ID 0 domain 0: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found CPU APIC ID 1 domain 0: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found CPU APIC ID 2 domain 0: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found CPU APIC ID 3 domain 0: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found memory domain 0 addr 0 len f8000000: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found memory domain 0 addr 100000000 len 8000000: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found memory domain 0 addr 108200000 len ed7e00000: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Ignoring memory at addr 108200000
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Found memory domain 0 addr 1000000000 len f000000000: enabled
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: Ignoring memory at addr 1000000000
Aug 19 09:45:01 hz_BSD11 kernel: Table 'FACP' at 0xf7ff0200
Aug 19 09:45:01 hz_BSD11 kernel: Table 'WAET' at 0xf7ff1480
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SLIC' at 0xf7ff14c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'OEM0' at 0xf7ff16c0
Aug 19 09:45:01 hz_BSD11 kernel: Table 'SRAT' at 0xf7ff0600
Aug 19 09:45:01 hz_BSD11 kernel: Table 'APIC' at 0xf7ff0300
Aug 19 09:45:01 hz_BSD11 kernel: Table 'OEMB' at 0xf7fff040
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: No SLIT table found
Aug 19 09:45:01 hz_BSD11 kernel: PPIM 0: PA=0xb8000, VA=0xffffffff82410000, size=0x8000, mode=0
Aug 19 09:45:01 hz_BSD11 kernel: VT(vga): text 80x25
Aug 19 09:45:01 hz_BSD11 kernel: Hyper-V Version: 10.0.10586 [SP0]
Aug 19 09:45:01 hz_BSD11 kernel: Features=0xe7f<VPRUNTIME,TMREFCNT,SYNIC,SYNTM,APIC,HYPERCALL,VPINDEX,REFTSC,IDLE,TMFREQ>
Aug 19 09:45:01 hz_BSD11 kernel: PM Features=0x0 [C2]
Aug 19 09:45:01 hz_BSD11 kernel: Features3=0x6d7b2<DEBUG,XMMHC,IDLE,NUMA,TMFREQ,SYNCMC,CRASH,NPIEP>
Aug 19 09:45:01 hz_BSD11 kernel: Recommends: 0000042c 00000fff
Aug 19 09:45:01 hz_BSD11 kernel: Limits: Vcpu:64 Lcpu:512 Int:6432
Aug 19 09:45:01 hz_BSD11 kernel: HW Features: 0000000f, AMD: 00000000
Aug 19 09:45:01 hz_BSD11 kernel: Timecounter "Hyper-V" frequency 10000000 Hz quality 2000
Aug 19 09:45:01 hz_BSD11 kernel: Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff821f0000.
Aug 19 09:45:01 hz_BSD11 kernel: Preloaded /boot/entropy "/boot/entropy" at 0xffffffff821f0d70.
Aug 19 09:45:01 hz_BSD11 kernel: Calibrating TSC clock ... TSC clock: 2600005635 Hz
Aug 19 09:45:01 hz_BSD11 kernel: CPU: Intel(R) Xeon(R) CPU E5-2650 v2 @ 2.60GHz (2600.01-MHz K8-class CPU)
Aug 19 09:45:01 hz_BSD11 kernel: Origin="GenuineIntel"  Id=0x306e4  Family=0x6  Model=0x3e  Stepping=4
Aug 19 09:45:01 hz_BSD11 kernel: Features=0x1f83fbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE,SSE2,SS,HTT>
Aug 19 09:45:01 hz_BSD11 kernel: Features2=0xfe982203<SSE3,PCLMULQDQ,SSSE3,CX16,SSE4.1,SSE4.2,POPCNT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND,HV>
Aug 19 09:45:01 hz_BSD11 kernel: AMD Features=0x20100800<SYSCALL,NX,LM>
Aug 19 09:45:01 hz_BSD11 kernel: AMD Features2=0x1<LAHF>
Aug 19 09:45:01 hz_BSD11 kernel: Structured Extended Features=0x200<ERMS>
Aug 19 09:45:01 hz_BSD11 kernel: XSAVE Features=0x1<XSAVEOPT>
Aug 19 09:45:01 hz_BSD11 kernel: Data TLB: 2 MByte or 4 MByte pages, 4-way set associative, 32 entries and a separate array with 1 GByte pages, 4-way set associative, 4 entries
Aug 19 09:45:01 hz_BSD11 kernel: Data TLB: 4 KB pages, 4-way set associative, 64 entries
Aug 19 09:45:01 hz_BSD11 kernel: Instruction TLB: 2M/4M pages, fully associative, 8 entries
Aug 19 09:45:01 hz_BSD11 kernel: Instruction TLB: 4KByte pages, 4-way set associative, 64 entries
Aug 19 09:45:01 hz_BSD11 kernel: 64-Byte prefetching
Aug 19 09:45:01 hz_BSD11 kernel: Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries
Aug 19 09:45:01 hz_BSD11 kernel: L2 cache: 256 kbytes, 8-way associative, 64 bytes/line
Aug 19 09:45:01 hz_BSD11 kernel: Hypervisor: Origin = "Microsoft Hv"
Aug 19 09:45:01 hz_BSD11 kernel: real memory  = 4294967296 (4096 MB)
Aug 19 09:45:01 hz_BSD11 kernel: Physical memory chunk(s):
Aug 19 09:45:01 hz_BSD11 kernel: 0x0000000000001000 - 0x000000000009bfff, 634880 bytes (155 pages)
Aug 19 09:45:01 hz_BSD11 kernel: 0x0000000000100000 - 0x00000000001fffff, 1048576 bytes (256 pages)
Aug 19 09:45:01 hz_BSD11 kernel: 0x0000000002237000 - 0x00000000f140cfff, 4011679744 bytes (979414 pages)
Aug 19 09:45:01 hz_BSD11 kernel: 0x0000000100000000 - 0x0000000107fe7fff, 134119424 bytes (32744 pages)
Aug 19 09:45:01 hz_BSD11 kernel: avail memory = 4114100224 (3923 MB)
Aug 19 09:45:01 hz_BSD11 kernel: Event timer "LAPIC" quality 400
Aug 19 09:45:01 hz_BSD11 kernel: LAPIC: ipi_wait() us multiplier 1 (r 339955047 tsc 2600005635)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI APIC Table: <VRTUAL MICROSFT>
Aug 19 09:45:01 hz_BSD11 kernel: Package ID shift: 2
Aug 19 09:45:01 hz_BSD11 kernel: L3 cache ID shift: 0
Aug 19 09:45:01 hz_BSD11 kernel: L2 cache ID shift: 0
Aug 19 09:45:01 hz_BSD11 kernel: L1 cache ID shift: 0
Aug 19 09:45:01 hz_BSD11 kernel: Core ID shift: 0
Aug 19 09:45:01 hz_BSD11 kernel: INTR: Adding local APIC 1 as a target
Aug 19 09:45:01 hz_BSD11 kernel: INTR: Adding local APIC 2 as a target
Aug 19 09:45:01 hz_BSD11 kernel: INTR: Adding local APIC 3 as a target
Aug 19 09:45:01 hz_BSD11 kernel: FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
Aug 19 09:45:01 hz_BSD11 kernel: FreeBSD/SMP: 1 package(s) x 4 core(s)
Aug 19 09:45:01 hz_BSD11 kernel: Package HW ID = 0
Aug 19 09:45:01 hz_BSD11 kernel: Core HW ID = 0
Aug 19 09:45:01 hz_BSD11 kernel: CPU0 (BSP): APIC ID: 0
Aug 19 09:45:01 hz_BSD11 kernel: Core HW ID = 1
Aug 19 09:45:01 hz_BSD11 kernel: CPU1 (AP): APIC ID: 1
Aug 19 09:45:01 hz_BSD11 kernel: Core HW ID = 2
Aug 19 09:45:01 hz_BSD11 kernel: CPU2 (AP): APIC ID: 2
Aug 19 09:45:01 hz_BSD11 kernel: Core HW ID = 3
Aug 19 09:45:01 hz_BSD11 kernel: CPU3 (AP): APIC ID: 3
Aug 19 09:45:01 hz_BSD11 kernel: APIC: CPU 0 has ACPI ID 1
Aug 19 09:45:01 hz_BSD11 kernel: APIC: CPU 1 has ACPI ID 2
Aug 19 09:45:01 hz_BSD11 kernel: APIC: CPU 2 has ACPI ID 3
Aug 19 09:45:01 hz_BSD11 kernel: APIC: CPU 3 has ACPI ID 4
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: CPU 0 has memory domain 0
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: CPU 1 has memory domain 0
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: CPU 2 has memory domain 0
Aug 19 09:45:01 hz_BSD11 kernel: SRAT: CPU 3 has memory domain 0
Aug 19 09:45:01 hz_BSD11 kernel: x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
Aug 19 09:45:01 hz_BSD11 kernel: x86bios: SSEG 0x001000-0x001fff at 0xfffffe00f7791000
Aug 19 09:45:01 hz_BSD11 kernel: x86bios: EBDA 0x09f000-0x09ffff at 0xfffff8000009f000
Aug 19 09:45:01 hz_BSD11 kernel: x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
Aug 19 09:45:01 hz_BSD11 kernel: random: read 4096 bytes from preloaded cache
Aug 19 09:45:01 hz_BSD11 kernel: random: unblocking device.
Aug 19 09:45:01 hz_BSD11 kernel: ULE: setup cpu 0
Aug 19 09:45:01 hz_BSD11 kernel: ULE: setup cpu 1
Aug 19 09:45:01 hz_BSD11 kernel: ULE: setup cpu 2
Aug 19 09:45:01 hz_BSD11 kernel: ULE: setup cpu 3
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: RSDP 0x00000000000F56F0 000014 (v00 ACPIAM)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: RSDT 0x00000000F7FF0000 000040 (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: FACP 0x00000000F7FF0200 000081 (v02 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: DSDT 0x00000000F7FF1724 0032C8 (v01 MSFTVM MSFTVM02 00000002 INTL 02002026)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: FACS 0x00000000F7FFF000 000040
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: WAET 0x00000000F7FF1480 000028 (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: SLIC 0x00000000F7FF14C0 000176 (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: OEM0 0x00000000F7FF16C0 000064 (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: SRAT 0x00000000F7FF0600 000110 (v02 VRTUAL MICROSFT 00000001 MSFT 00000001)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: APIC 0x00000000F7FF0300 00024C (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: OEMB 0x00000000F7FFF040 000064 (v01 VRTUAL MICROSFT 10001507 MSFT 00000097)
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Found IO APIC ID 0, Interrupt 0 at 0xfec00000
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: Changing APIC ID to 0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: ver 0x11 maxredir 0x17
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: Routing external 8259A's -> intpin 0
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Interrupt override: source 0, irq 2
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: Routing IRQ 0 -> intpin 2
Aug 19 09:45:01 hz_BSD11 kernel: MADT: Interrupt override: source 9, irq 9
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: intpin 9 trigger: level
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0 <Version 1.1> irqs 0-23 on motherboard
Aug 19 09:45:01 hz_BSD11 kernel: cpu0 BSP:
Aug 19 09:45:01 hz_BSD11 kernel: ID: 0x00000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
Aug 19 09:45:01 hz_BSD11 kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
Aug 19 09:45:01 hz_BSD11 kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
Aug 19 09:45:01 hz_BSD11 kernel: snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
Aug 19 09:45:01 hz_BSD11 kernel: feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=5 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
Aug 19 09:45:01 hz_BSD11 kernel: random: entropy device external interface
Aug 19 09:45:01 hz_BSD11 kernel: hyperv: Hypercall created
Aug 19 09:45:01 hz_BSD11 kernel: wlan: <802.11 Link Layer>
Aug 19 09:45:01 hz_BSD11 kernel: kbd: new array size 4
Aug 19 09:45:01 hz_BSD11 kernel: kbd1 at kbdmux0
Aug 19 09:45:01 hz_BSD11 kernel: mem: <memory>
Aug 19 09:45:01 hz_BSD11 kernel: netmap: loaded module
Aug 19 09:45:01 hz_BSD11 kernel: null: <full device, null device, zero device>
Aug 19 09:45:01 hz_BSD11 kernel: nfslock: pseudo-device
Aug 19 09:45:01 hz_BSD11 kernel: crypto: <crypto core>
Aug 19 09:45:01 hz_BSD11 kernel: module_register_init: MOD_LOAD (vesa, 0xffffffff8103a0b0, 0) error 19
Aug 19 09:45:01 hz_BSD11 kernel: io: <I/O>
Aug 19 09:45:01 hz_BSD11 kernel: random: registering fast source Intel Secure Key RNG
Aug 19 09:45:01 hz_BSD11 kernel: random: fast provider: "Intel Secure Key RNG"
Aug 19 09:45:01 hz_BSD11 kernel: hpt27xx: RocketRAID 27xx controller driver v1.2.7
Aug 19 09:45:01 hz_BSD11 kernel: hptnr: R750/DC7280 controller driver v1.1.4
Aug 19 09:45:01 hz_BSD11 kernel: hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
Aug 19 09:45:01 hz_BSD11 kernel: vtvga0: <VT VGA driver> on motherboard
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from vtvga0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from ram0
Aug 19 09:45:01 hz_BSD11 kernel: cryptosoft0: <software crypto> on motherboard
Aug 19 09:45:01 hz_BSD11 kernel: crypto: assign cryptosoft0 driver id 0, flags 100663296
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from cryptosoft0
Aug 19 09:45:01 hz_BSD11 kernel: acpi0: <VRTUAL MICROSFT> on motherboard
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
Aug 19 09:45:01 hz_BSD11 kernel: 
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
Aug 19 09:45:01 hz_BSD11 kernel: acpi0: Power Button (fixed)
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from acpi_sysresource0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from acpi_sysresource1
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from acpi_sysresource2
Aug 19 09:45:01 hz_BSD11 kernel: acpi0: reservation of 0, a0000 (3) failed
Aug 19 09:45:01 hz_BSD11 kernel: acpi0: reservation of 100000, f7f00000 (3) failed
Aug 19 09:45:01 hz_BSD11 kernel: cpu0: Processor \_SB_.P001 (ACPI ID 1) -> APIC ID 0
Aug 19 09:45:01 hz_BSD11 kernel: cpu0: <ACPI CPU> on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: cpu0: switching to generic Cx mode
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from cpu0
Aug 19 09:45:01 hz_BSD11 kernel: cpu1: Processor \_SB_.P002 (ACPI ID 2) -> APIC ID 1
Aug 19 09:45:01 hz_BSD11 kernel: cpu1: <ACPI CPU> on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from cpu1
Aug 19 09:45:01 hz_BSD11 kernel: cpu2: Processor \_SB_.P003 (ACPI ID 3) -> APIC ID 2
Aug 19 09:45:01 hz_BSD11 kernel: cpu2: <ACPI CPU> on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from cpu2
Aug 19 09:45:01 hz_BSD11 kernel: cpu3: Processor \_SB_.P004 (ACPI ID 4) -> APIC ID 3
Aug 19 09:45:01 hz_BSD11 kernel: cpu3: <ACPI CPU> on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from cpu3
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P005 (ACPI ID 5) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P006 (ACPI ID 6) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P007 (ACPI ID 7) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P008 (ACPI ID 8) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P009 (ACPI ID 9) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P010 (ACPI ID 10) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P011 (ACPI ID 11) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P012 (ACPI ID 12) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P013 (ACPI ID 13) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P014 (ACPI ID 14) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P015 (ACPI ID 15) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P016 (ACPI ID 16) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P017 (ACPI ID 17) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P018 (ACPI ID 18) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P019 (ACPI ID 19) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P020 (ACPI ID 20) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P021 (ACPI ID 21) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P022 (ACPI ID 22) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P023 (ACPI ID 23) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P024 (ACPI ID 24) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P025 (ACPI ID 25) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P026 (ACPI ID 26) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P027 (ACPI ID 27) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P028 (ACPI ID 28) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P029 (ACPI ID 29) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P030 (ACPI ID 30) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P031 (ACPI ID 31) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P032 (ACPI ID 32) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P033 (ACPI ID 33) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P034 (ACPI ID 34) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P035 (ACPI ID 35) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P036 (ACPI ID 36) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P037 (ACPI ID 37) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P038 (ACPI ID 38) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P039 (ACPI ID 39) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P040 (ACPI ID 40) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P041 (ACPI ID 41) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P042 (ACPI ID 42) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P043 (ACPI ID 43) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P044 (ACPI ID 44) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P045 (ACPI ID 45) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P046 (ACPI ID 46) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P047 (ACPI ID 47) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P048 (ACPI ID 48) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P049 (ACPI ID 49) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P050 (ACPI ID 50) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P051 (ACPI ID 51) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P052 (ACPI ID 52) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P053 (ACPI ID 53) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P054 (ACPI ID 54) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P055 (ACPI ID 55) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P056 (ACPI ID 56) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P057 (ACPI ID 57) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P058 (ACPI ID 58) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P059 (ACPI ID 59) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P060 (ACPI ID 60) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P061 (ACPI ID 61) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P062 (ACPI ID 62) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P063 (ACPI ID 63) ignored
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Processor \_SB_.P064 (ACPI ID 64) ignored
Aug 19 09:45:01 hz_BSD11 kernel: attimer0: <AT timer> port 0x40-0x43 irq 0 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: Timecounter "i8254" frequency 1193182 Hz quality 0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 49
Aug 19 09:45:01 hz_BSD11 kernel: Event timer "i8254" frequency 1193182 Hz quality 100
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from attimer0
Aug 19 09:45:01 hz_BSD11 kernel: atrtc0: <AT realtime clock> port 0x70-0x71 irq 8 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment 0.500000000s)
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 50
Aug 19 09:45:01 hz_BSD11 kernel: Event timer "RTC" frequency 32768 Hz quality 0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from atrtc0
Aug 19 09:45:01 hz_BSD11 kernel: ACPI timer: 1/2 1/2 1/2 1/2 1/2 1/2 1/2 1/2 1/2 1/2 -> 10
Aug 19 09:45:01 hz_BSD11 kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
Aug 19 09:45:01 hz_BSD11 kernel: acpi_timer0: <32-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from acpi_timer0
Aug 19 09:45:01 hz_BSD11 kernel: pci_link0:        Index  IRQ  Rtd  Ref  IRQs
Aug 19 09:45:01 hz_BSD11 kernel: Initial Probe       0   11   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: Validation          0   11   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: After Disable       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pci_link0
Aug 19 09:45:01 hz_BSD11 kernel: pci_link1:        Index  IRQ  Rtd  Ref  IRQs
Aug 19 09:45:01 hz_BSD11 kernel: Initial Probe       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: Validation          0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: After Disable       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pci_link1
Aug 19 09:45:01 hz_BSD11 kernel: pci_link2:        Index  IRQ  Rtd  Ref  IRQs
Aug 19 09:45:01 hz_BSD11 kernel: Initial Probe       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: Validation          0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: After Disable       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pci_link2
Aug 19 09:45:01 hz_BSD11 kernel: pci_link3:        Index  IRQ  Rtd  Ref  IRQs
Aug 19 09:45:01 hz_BSD11 kernel: Initial Probe       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: Validation          0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: After Disable       0  255   N     0  3 4 5 7 9 10 11 12 14 15
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pci_link3
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 3 range 0xfe0000000-0xfffefffff
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 5 range 0-0xff
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 4 range 0-0xcf7
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 4 range 0xd00-0xffff
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 3 range 0xa0000-0xbffff
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: decoding 3 range 0xf8000000-0xfffbffff
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Found matching pin for 0.8.INTA at func 0: 11
Aug 19 09:45:01 hz_BSD11 kernel: pci0: <ACPI PCI bus> on pcib0
Aug 19 09:45:01 hz_BSD11 kernel: pci0: domain=0, physical bus=0
Aug 19 09:45:01 hz_BSD11 kernel: found->	vendor=0x8086, dev=0x7192, revid=0x03
Aug 19 09:45:01 hz_BSD11 kernel: domain=0, bus=0, slot=0, func=0
Aug 19 09:45:01 hz_BSD11 kernel: class=06-00-00, hdrtype=0x00, mfdev=0
Aug 19 09:45:01 hz_BSD11 kernel: cmdreg=0x0006, statreg=0x0200, cachelnsz=0 (dwords)
Aug 19 09:45:01 hz_BSD11 kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 09:45:01 hz_BSD11 kernel: found->	vendor=0x8086, dev=0x7110, revid=0x01
Aug 19 09:45:01 hz_BSD11 kernel: domain=0, bus=0, slot=7, func=0
Aug 19 09:45:01 hz_BSD11 kernel: class=06-01-00, hdrtype=0x00, mfdev=1
Aug 19 09:45:01 hz_BSD11 kernel: cmdreg=0x0007, statreg=0x0200, cachelnsz=0 (dwords)
Aug 19 09:45:01 hz_BSD11 kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 09:45:01 hz_BSD11 kernel: found->	vendor=0x8086, dev=0x7111, revid=0x01
Aug 19 09:45:01 hz_BSD11 kernel: domain=0, bus=0, slot=7, func=1
Aug 19 09:45:01 hz_BSD11 kernel: class=01-01-80, hdrtype=0x00, mfdev=0
Aug 19 09:45:01 hz_BSD11 kernel: cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords)
Aug 19 09:45:01 hz_BSD11 kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0x1f0-0x1f7) for rid 10 of pci0:0:7:1
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0x3f6-0x3f6) for rid 14 of pci0:0:7:1
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0x170-0x177) for rid 18 of pci0:0:7:1
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0x376-0x376) for rid 1c of pci0:0:7:1
Aug 19 09:45:01 hz_BSD11 kernel: map[20]: type I/O Port, range 32, base 0xffa0, size  4, enabled
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0xffa0-0xffaf) for rid 20 of pci0:0:7:1
Aug 19 09:45:01 hz_BSD11 kernel: found->	vendor=0x8086, dev=0x7113, revid=0x02
Aug 19 09:45:01 hz_BSD11 kernel: domain=0, bus=0, slot=7, func=3
Aug 19 09:45:01 hz_BSD11 kernel: class=06-80-00, hdrtype=0x00, mfdev=0
Aug 19 09:45:01 hz_BSD11 kernel: cmdreg=0x0001, statreg=0x0280, cachelnsz=0 (dwords)
Aug 19 09:45:01 hz_BSD11 kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 09:45:01 hz_BSD11 kernel: intpin=a, irq=255
Aug 19 09:45:01 hz_BSD11 kernel: found->	vendor=0x1414, dev=0x5353, revid=0x00
Aug 19 09:45:01 hz_BSD11 kernel: domain=0, bus=0, slot=8, func=0
Aug 19 09:45:01 hz_BSD11 kernel: class=03-00-00, hdrtype=0x00, mfdev=0
Aug 19 09:45:01 hz_BSD11 kernel: cmdreg=0x011f, statreg=0x0000, cachelnsz=0 (dwords)
Aug 19 09:45:01 hz_BSD11 kernel: lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 09:45:01 hz_BSD11 kernel: intpin=a, irq=11
Aug 19 09:45:01 hz_BSD11 kernel: map[10]: type Memory, range 32, base 0xf8000000, size 26, enabled
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xf8000000-0xfbffffff) for rid 10 of pci0:0:8:0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: matched entry for 0.8.INTA (src \_SB_.LNKA:0)
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: Changing trigger for pin 11 to level
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: Changing polarity for pin 11 to low
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: slot 8 INTA routed to irq 11 via \_SB_.LNKA
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hostb0
Aug 19 09:45:01 hz_BSD11 kernel: isab0: <PCI-ISA bridge> at device 7.0 on pci0
Aug 19 09:45:01 hz_BSD11 kernel: isa0: <ISA bus> on isab0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from isa0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from isab0
Aug 19 09:45:01 hz_BSD11 kernel: atapci0: <Intel PIIX4 UDMA33 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 7.1 on pci0
Aug 19 09:45:01 hz_BSD11 kernel: ata0: PCI class: 1, PCI subclass: 1
Aug 19 09:45:01 hz_BSD11 kernel: ata0: <ATA channel> at channel 0 on atapci0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 0 vector 51
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from ata0
Aug 19 09:45:01 hz_BSD11 kernel: ata1: PCI class: 1, PCI subclass: 1
Aug 19 09:45:01 hz_BSD11 kernel: ata1: <ATA channel> at channel 1 on atapci0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 0 vector 52
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from ata1
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from atapci0
Aug 19 09:45:01 hz_BSD11 kernel: pci0: <bridge> at device 7.3 (no driver attached)
Aug 19 09:45:01 hz_BSD11 kernel: vgapci0: <VGA-compatible display> mem 0xf8000000-0xfbffffff irq 11 at device 8.0 on pci0
Aug 19 09:45:01 hz_BSD11 kernel: vgapci0: Boot video device
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from vgapci0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pci0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from pcib0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from atdma0
Aug 19 09:45:01 hz_BSD11 kernel: atkbdc0: <Keyboard controller (i8042)> port 0x60,0x64 irq 1 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: atkbd0: <AT Keyboard> irq 1 on atkbdc0
Aug 19 09:45:01 hz_BSD11 kernel: atkbd: the current kbd controller command byte 0065
Aug 19 09:45:01 hz_BSD11 kernel: atkbd: keyboard ID 0x41ab (2)
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_KBD return code:00fa
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_KBD status:00aa
Aug 19 09:45:01 hz_BSD11 kernel: kbd0 at atkbd0
Aug 19 09:45:01 hz_BSD11 kernel: kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 53
Aug 19 09:45:01 hz_BSD11 kernel: atkbd0: [GIANT-LOCKED]
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from atkbd0
Aug 19 09:45:01 hz_BSD11 kernel: psm0: unable to allocate IRQ
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from atkbdc0
Aug 19 09:45:01 hz_BSD11 kernel: psmcpnp0: <PS/2 mouse port> irq 12 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: psm0: current command byte:0065
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: TEST_AUX_PORT status:0000
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX return code:00fa
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX status:00aa
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX ID:0000
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX return code:00fa
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX status:00aa
Aug 19 09:45:01 hz_BSD11 kernel: kbdc: RESET_AUX ID:0000
Aug 19 09:45:01 hz_BSD11 kernel: psm: status 02 02 64
Aug 19 09:45:01 hz_BSD11 kernel: psm: status 02 00 64
Aug 19 09:45:01 hz_BSD11 kernel: psm: status 02 03 64
Aug 19 09:45:01 hz_BSD11 kernel: psm: status 02 03 64
Aug 19 09:45:01 hz_BSD11 kernel: psm: data 08 00 00
Aug 19 09:45:01 hz_BSD11 kernel: psm: status 02 02 64
Aug 19 09:45:01 hz_BSD11 kernel: psm0: <PS/2 Mouse> irq 12 on atkbdc0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 54
Aug 19 09:45:01 hz_BSD11 kernel: psm0: [GIANT-LOCKED]
Aug 19 09:45:01 hz_BSD11 kernel: psm0: model IntelliMouse Explorer, device ID 4-00, 5 buttons
Aug 19 09:45:01 hz_BSD11 kernel: psm0: config:00000000, flags:00000008, packet size:4
Aug 19 09:45:01 hz_BSD11 kernel: psm0: syncmask:08, syncbits:00
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from psm0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from psmcpnp0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from fpupnp0
Aug 19 09:45:01 hz_BSD11 kernel: uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 0 vector 55
Aug 19 09:45:01 hz_BSD11 kernel: uart0: fast interrupt
Aug 19 09:45:01 hz_BSD11 kernel: uart0: PPS capture mode: DCDinvalid
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from uart0
Aug 19 09:45:01 hz_BSD11 kernel: uart1: <16550 or compatible> port 0x2f8-0x2ff irq 3 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 0 vector 56
Aug 19 09:45:01 hz_BSD11 kernel: uart1: fast interrupt
Aug 19 09:45:01 hz_BSD11 kernel: uart1: PPS capture mode: DCDinvalid
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from uart1
Aug 19 09:45:01 hz_BSD11 kernel: fdc0: <floppy drive controller (FDE)> port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: fdc0: ic_type 90 part_id 01
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 6 (ISA IRQ 6) to lapic 0 vector 57
Aug 19 09:45:01 hz_BSD11 kernel: fd0: <1440-KB 3.5" drive> on fdc0 drive 0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from fd0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from fdc0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: <Hyper-V Vmbus> irq 5,7 on acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: ACPI: Enabled 1 GPEs in block 00 to 0F
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from acpi0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from apic0
Aug 19 09:45:01 hz_BSD11 kernel: acpi0: wakeup code va 0xfffffe011c940000 pa 0x2000
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from nexus0
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 0: ioport 0xc00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 1: ioport 0x1c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 2: ioport 0x2c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 3: ioport 0x3c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 4: ioport 0x4c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 5: ioport 0x5c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 6: ioport 0x6c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 7: ioport 0x7c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 8: ioport 0x8c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 9: ioport 0x9c00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 10: ioport 0xac00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 11: ioport 0xbc00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 12: ioport 0xcc00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 13: ioport 0xdc00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: ahc_isa_identify 14: ioport 0xec00 alloc failed
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0
Aug 19 09:45:01 hz_BSD11 kernel: isa_probe_children: disabling PnP devices
Aug 19 09:45:01 hz_BSD11 kernel: atkbdc: atkbdc0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: atrtc: atrtc0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: attimer: attimer0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: fdc: fdc0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: sc: sc0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: uart: uart0 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: uart: uart1 already exists; skipping it
Aug 19 09:45:01 hz_BSD11 kernel: isa_probe_children: probing non-PnP devices
Aug 19 09:45:01 hz_BSD11 kernel: orm0: <ISA Option ROM> at iomem 0xc0000-0xcbfff on isa0
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from orm0
Aug 19 09:45:01 hz_BSD11 kernel: sc0 failed to probe on isa0
Aug 19 09:45:01 hz_BSD11 kernel: vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
Aug 19 09:45:01 hz_BSD11 kernel: pcib0: allocated type 4 (0x3c0-0x3df) for rid 0 of vga0
Aug 19 09:45:01 hz_BSD11 kernel: VESA: INT 0x10 vector 0xc800:0x1148
Aug 19 09:45:01 hz_BSD11 kernel: VESA: information block
Aug 19 09:45:01 hz_BSD11 kernel: 0000   56 45 53 41 00 02 e3 10 00 c8 00 00 00 01 1e 01
Aug 19 09:45:01 hz_BSD11 kernel: 0010   00 c8 40 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0020   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0030   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0040   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0050   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0060   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0070   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0080   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0090   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00a0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00b0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00c0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00d0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00e0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 00f0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0100   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0110   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0120   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0130   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0140   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0150   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0160   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0170   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0180   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 0190   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01a0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01b0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01c0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01d0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01e0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: 01f0   00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
Aug 19 09:45:01 hz_BSD11 kernel: VESA: 35 mode(s) found
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from vga0
Aug 19 09:45:01 hz_BSD11 kernel: ppc0: cannot reserve I/O port range
Aug 19 09:45:01 hz_BSD11 kernel: ppc0 failed to probe at irq 7 on isa0
Aug 19 09:45:01 hz_BSD11 kernel: isa_probe_children: probing PnP devices
Aug 19 09:45:01 hz_BSD11 kernel: Device configuration finished.
Aug 19 09:45:01 hz_BSD11 kernel: procfs registered
Aug 19 09:45:01 hz_BSD11 kernel: lapic: Divisor 2, Frequency 100001440 Hz
Aug 19 09:45:01 hz_BSD11 kernel: Timecounters tick every 1.000 msec
Aug 19 09:45:01 hz_BSD11 kernel: vlan: initialized, using hash tables with chaining
Aug 19 09:45:01 hz_BSD11 kernel: lo0: bpf attached
Aug 19 09:45:01 hz_BSD11 kernel: IPsec: Initialized Security Association Processing.
Aug 19 09:45:01 hz_BSD11 kernel: tcp_init: net.inet.tcp.tcbhashsize auto tuned to 32768
Aug 19 09:45:01 hz_BSD11 kernel: hpt27xx: no controller detected.
Aug 19 09:45:01 hz_BSD11 kernel: hptnr: no controller detected.
Aug 19 09:45:01 hz_BSD11 kernel: hptrr: no controller detected.
Aug 19 09:45:01 hz_BSD11 kernel: ata0: reset tp1 mask=03 ostat0=50 ostat1=50
Aug 19 09:45:01 hz_BSD11 kernel: ata0: stat0=0x50 err=0x01 lsb=0x00 msb=0x00
Aug 19 09:45:01 hz_BSD11 kernel: ata0: stat1=0x50 err=0x01 lsb=0x14 msb=0xeb
Aug 19 09:45:01 hz_BSD11 kernel: ata0: reset tp2 stat0=50 stat1=50 devices=0x20001
Aug 19 09:45:01 hz_BSD11 kernel: ata1: reset tp1 mask=00 ostat0=ff ostat1=ff
Aug 19 09:45:01 hz_BSD11 kernel: pass0 at ata0 bus 0 scbus0 target 1 lun 0
Aug 19 09:45:01 hz_BSD11 kernel: pass0: <Msft Virtual CD/ROM 1.0> Removable CD-ROM SPC-3 SCSI device
Aug 19 09:45:01 hz_BSD11 kernel: pass0: 16.700MB/s transfers (WDMA2, ATAPI 12bytes, PIO 65534bytes)
Aug 19 09:45:01 hz_BSD11 kernel: cd0 at ata0 bus 0 scbus0 target 1 lun 0
Aug 19 09:45:01 hz_BSD11 kernel: cd0: <Msft Virtual CD/ROM 1.0> Removable CD-ROM SPC-3 SCSI device
Aug 19 09:45:01 hz_BSD11 kernel: cd0: 16.700MB/s transfers (WDMA2, ATAPI 12bytes, PIO 65534bytes)
Aug 19 09:45:01 hz_BSD11 kernel: cd0: Attempt to query device size failed: NOT READY, Medium not present
Aug 19 09:45:01 hz_BSD11 kernel: SMP: AP CPU #3 Launched!
Aug 19 09:45:01 hz_BSD11 kernel: cpu3 AP:
Aug 19 09:45:01 hz_BSD11 kernel: ID: 0x03000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
Aug 19 09:45:01 hz_BSD11 kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
Aug 19 09:45:01 hz_BSD11 kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
Aug 19 09:45:01 hz_BSD11 kernel: SMP: AP CPU #1 Launched!
Aug 19 09:45:01 hz_BSD11 kernel: cpu1 AP:
Aug 19 09:45:01 hz_BSD11 kernel: ID: 0x01000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
Aug 19 09:45:01 hz_BSD11 kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
Aug 19 09:45:01 hz_BSD11 kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
Aug 19 09:45:01 hz_BSD11 kernel: SMP: AP CPU #2 Launched!
Aug 19 09:45:01 hz_BSD11 kernel: cpu2 AP:
Aug 19 09:45:01 hz_BSD11 kernel: ID: 0x02000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
Aug 19 09:45:01 hz_BSD11 kernel: lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
Aug 19 09:45:01 hz_BSD11 kernel: timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 1 vector 48
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 2 vector 48
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 3 vector 48
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 1 vector 49
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 2 vector 49
Aug 19 09:45:01 hz_BSD11 kernel: ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 3 vector 49
Aug 19 09:45:01 hz_BSD11 kernel: GEOM: new disk cd0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: vmbus IDT vector 251
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: smp_started = 1
Aug 19 09:45:01 hz_BSD11 kernel: Trying to mount root from ufs:/dev/da0p2 [rw]...
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: version 3.0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan1: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan1 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan2: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan2 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan3: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan3 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan4: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan4 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan5: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan5 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan6: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan6 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan7: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan7 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan8: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan8 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan9: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan9 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan10: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan10 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan11: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan11 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan12: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan12 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan13: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan13 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan14: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan14 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan15: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan15 subidx0 offer
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: DRIVER_BLKVSC-Emulated ATA/IDE probe
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: Enlightened ATA/IDE detected
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: DRIVER_BLKVSC-Emulated ATA/IDE probe
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: Enlightened ATA/IDE detected
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: <Hyper-V IDE Storage Interface> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan2: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: channel2 update cpu0 flag_cnt to 1
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan2 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan2 opened
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: cpu0 -> chan2
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: cpu1 -> chan2
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: cpu2 -> chan2
Aug 19 09:45:01 hz_BSD11 kernel: storvsc0: cpu3 -> chan2
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from storvsc0
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:blkvsc0:0:0:0): Down reving Protocol Version from 4 to 2?
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:blkvsc0:0:0:0): storvsc has passed inquiry response (36) validation
Aug 19 09:45:01 hz_BSD11 kernel: (probe1:blkvsc0:0:1:0): Down reving Protocol Version from 4 to 2?
Aug 19 09:45:01 hz_BSD11 kernel: (probe1:blkvsc0:0:1:0): storvsc uninstalled invalid device [7f 0 5 2 1f]
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:blkvsc0:0:0:0): storvsc scsi_status = 2
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:blkvsc0:0:0:0): storvsc skips the validation for short inquiry (5) [0 0 0 8 0]
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:blkvsc0:0:0:0): storvsc skips the validation for short inquiry (6) [0 83 0 30 1]
Aug 19 09:45:01 hz_BSD11 kernel: (da0:blkvsc0:0:0:0): UNMAPPED
Aug 19 09:45:01 hz_BSD11 kernel: GEOM: new disk da0
Aug 19 09:45:01 hz_BSD11 kernel: pass1 at blkvsc0 bus 0 scbus2 target 0 lun 0
Aug 19 09:45:01 hz_BSD11 kernel: pass1: <Msft Virtual Disk 1.0> Fixed Direct Access SPC-3 SCSI device
Aug 19 09:45:01 hz_BSD11 kernel: pass1: 300.000MB/s transfers
Aug 19 09:45:01 hz_BSD11 kernel: pass1: Command Queueing enabled
Aug 19 09:45:01 hz_BSD11 kernel: da0 at blkvsc0 bus 0 scbus2 target 0 lun 0
Aug 19 09:45:01 hz_BSD11 kernel: da0: <Msft Virtual Disk 1.0> Fixed Direct Access SPC-3 SCSI device
Aug 19 09:45:01 hz_BSD11 kernel: da0: 300.000MB/s transfers
Aug 19 09:45:01 hz_BSD11 kernel: da0: Command Queueing enabled
Aug 19 09:45:01 hz_BSD11 kernel: da0: 32768MB (67108864 512 byte sectors)
Aug 19 09:45:01 hz_BSD11 kernel: (da0:blkvsc0:0:0:0): storvsc skips the validation for short inquiry (6) [0 b2 0 4 1]
Aug 19 09:45:01 hz_BSD11 kernel: (da0:blkvsc0:0:0:0): storvsc skips the validation for short inquiry (5) [0 b0 0 3c 0]
Aug 19 09:45:01 hz_BSD11 kernel: (da0:blkvsc0:0:0:0): storvsc skips the validation for short inquiry (5) [0 b1 0 3c 0]
Aug 19 09:45:01 hz_BSD11 kernel: da0: Delete methods: <UNMAP(*),ZERO>
Aug 19 09:45:01 hz_BSD11 kernel: hvheartbeat0: <Hyper-V Heartbeat Service> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan8 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan8 opened
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hvheartbeat0
Aug 19 09:45:01 hz_BSD11 kernel: hvkvp0: <Hyper-V KVP Service> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan9 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan9 opened
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hvkvp0
Aug 19 09:45:01 hz_BSD11 kernel: hvshutdown0: <Hyper-V Shutdown Service> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan10 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan10 opened
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hvshutdown0
Aug 19 09:45:01 hz_BSD11 kernel: hvtimesync0: <Hyper-V Time Synch Service> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan11 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan11 opened
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hvtimesync0
Aug 19 09:45:01 hz_BSD11 kernel: hn0: <Hyper-V Network Interface> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: hn0: LRO: entry count 128
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link RX ring 0 to channel14
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link TX ring 0 to channel14
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan14: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan14 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan14 opened
Aug 19 09:45:01 hz_BSD11 kernel: hn0: Netvsc: got version 0x50000
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan14 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan14 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: hn0: unknown status 1073872902 received
Aug 19 09:45:01 hz_BSD11 kernel: hn0: unknown status 1073872902 received
Aug 19 09:45:01 hz_BSD11 kernel: hn0: hv send offload request succeeded
Aug 19 09:45:01 hz_BSD11 kernel: hn0: channel, offered 64, requested 4
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan16: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan16 subidx1 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan17: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan17 subidx2 offer
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan18: assigned to cpu0 [vcpu0]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan18 subidx3 offer
Aug 19 09:45:01 hz_BSD11 kernel: Netvsc: Successfully set vRSS parameters.
Aug 19 09:45:01 hz_BSD11 kernel: hn0: 4 TX ring, 4 RX ring
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link RX ring 1 to channel16
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link TX ring 1 to channel16
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan16: assigned to cpu1 [vcpu1]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: channel16 update cpu1 flag_cnt to 1
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan16 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan16 opened
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link RX ring 2 to channel17
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link TX ring 2 to channel17
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan17: assigned to cpu2 [vcpu2]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: channel17 update cpu2 flag_cnt to 1
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan17 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan17 opened
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link RX ring 3 to channel18
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link TX ring 3 to channel18
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan18: assigned to cpu3 [vcpu3]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: channel18 update cpu3 flag_cnt to 1
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan18 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan18 opened
Aug 19 09:45:01 hz_BSD11 kernel: hn0: 3 sub-channels setup done
Aug 19 09:45:01 hz_BSD11 kernel: hn0: bpf attached
Aug 19 09:45:01 hz_BSD11 kernel: hn0: Ethernet address: 00:15:5d:4c:73:0f
Aug 19 09:45:01 hz_BSD11 kernel: hn0: TSO: 65517/31/4096
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hn0
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: Enlightened SCSI device detected
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: Enlightened SCSI device detected
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: <Hyper-V SCSI Storage Interface> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus_chan15: assigned to cpu1 [vcpu1]
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: gpadl->chan15 succeeded
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: chan15 opened
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: cpu0 -> chan15
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: cpu1 -> chan15
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: cpu2 -> chan15
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1: cpu3 -> chan15
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from storvsc1
Aug 19 09:45:01 hz_BSD11 kernel: hvet0: <Hyper-V event timer> on vmbus0
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:storvsc1:0:0:0): Down reving Protocol Version from 4 to 2?
Aug 19 09:45:01 hz_BSD11 kernel: Event timer "Hyper-V" frequency 10000000 Hz quality 1000
Aug 19 09:45:01 hz_BSD11 kernel: random: harvesting attach, 8 bytes (4 bits) from hvet0
Aug 19 09:45:01 hz_BSD11 kernel: vmbus0: device scan, probe and attach done
Aug 19 09:45:01 hz_BSD11 kernel: TSC timecounter discards lower 1 bit(s)
Aug 19 09:45:01 hz_BSD11 kernel: (probe0:Timecounter "TSC-low" frequency 1300002817 Hz quality -100
Aug 19 09:45:01 hz_BSD11 kernel: storvsc1:0:0:0): storvsc uninstalled invalid device [7f 0 5 2 1f]
Aug 19 09:45:01 hz_BSD11 kernel: (probe1:storvsc1:0:1:0): Down reving Protocol Version from 4 to 2?
Aug 19 09:45:01 hz_BSD11 kernel: (probe1:storvsc1:0:1:0): storvsc uninstalled invalid device [7f 0 5 2 1f]
Aug 19 09:45:01 hz_BSD11 kernel: mountroot: waiting for device /dev/da0p2...
Aug 19 09:45:01 hz_BSD11 kernel: start_init: trying /sbin/init
Aug 19 09:45:01 hz_BSD11 kernel: hn0: link state changed to UP

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?SN2PR03MB2224BD971948AC61F25D2A95B5160>