All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
@ 2014-08-11  2:54 Yijing Wang
       [not found] ` <1407725674-27271-1-git-send-email-wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Yijing Wang @ 2014-08-11  2:54 UTC (permalink / raw)
  To: Joerg Roedel, David Woodhouse
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Jiang Liu

We found some strange devices in HP C7000 and Huawei Server. These devices
can not be enumerated by OS, but they still did DMA read/write without OS 
management. Because iommu will not create the DMA mapping for these devices,
the DMA read/write will be blocked by iommu hardware.

Eg.
 \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
             +-01.0-[11]--
			 +-01.1-[02]--
			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
	         +-02.1-[12]--
Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.

[ 1438.477262] DRHD: handling fault status reg 402
[ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear

Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
---
 arch/x86/include/asm/iommu.h |    2 ++
 arch/x86/kernel/pci-dma.c    |    8 ++++++++
 drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
index 345c99c..5e3a2d8 100644
--- a/arch/x86/include/asm/iommu.h
+++ b/arch/x86/include/asm/iommu.h
@@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
 extern int force_iommu, no_iommu;
 extern int iommu_detected;
 extern int iommu_pass_through;
+extern int iommu_pt_force_bus;
+extern int iommu_pt_force_domain;
 
 /* 10 seconds */
 #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
index a25e202..bf21d97 100644
--- a/arch/x86/kernel/pci-dma.c
+++ b/arch/x86/kernel/pci-dma.c
@@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
  * guests and not for driver dma translation.
  */
 int iommu_pass_through __read_mostly;
+int iommu_pt_force_bus = -1;
+int iommu_pt_force_domain = -1;
 
 extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
 
@@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
  */
 static __init int iommu_setup(char *p)
 {
+	char *end;
 	iommu_merge = 1;
 
 	if (!p)
@@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
 #endif
 		if (!strncmp(p, "pt", 2))
 			iommu_pass_through = 1;
+		if (!strncmp(p, "pt_force=", 9)) {
+			iommu_pass_through = 1;
+			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
+			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
+		}
 
 		gart_parse_options(p);
 
diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index d1f5caa..49757f1 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
 				return ret;
 		}
 
+	/* We found some strange devices in HP c7000 and other platforms that
+	 * can not be enumerated by OS, but they did DMA read/write without
+	 * driver management, so we should create the pt mapping for these
+	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
+	 * force to do pt context mapping in the bus number.
+	 */
+	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
+		int found = 0;
+
+		iommu = NULL;
+		for_each_active_iommu(iommu, drhd) {
+			if (iommu_pt_force_domain != drhd->segment)
+				continue;
+
+			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
+				if (!dev_is_pci(dev))
+					continue;
+
+				pdev = to_pci_dev(dev);
+				if (pdev->bus->number == iommu_pt_force_bus ||
+						(pdev->subordinate
+						 && pdev->subordinate->number <= iommu_pt_force_bus
+						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
+					found = 1;
+					break;
+				}
+			}
+
+			if (drhd->include_all) {
+				found = 1;
+				break;
+			}
+		}
+
+		if (found && iommu)
+			for (i = 0; i < 256; i++)
+				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
+						i,  hw ? CONTEXT_TT_PASS_THROUGH :
+						CONTEXT_TT_MULTI_LEVEL);
+	}
+
 	return 0;
 }
 
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found] ` <1407725674-27271-1-git-send-email-wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
@ 2014-08-11  3:15   ` Jiang Liu
       [not found]     ` <53E8355C.4010906-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
  2014-08-11  4:43   ` Alex Williamson
  1 sibling, 1 reply; 17+ messages in thread
From: Jiang Liu @ 2014-08-11  3:15 UTC (permalink / raw)
  To: Yijing Wang, Joerg Roedel, David Woodhouse
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Hi Yijing,
	Could you please help to provide detail information about the
PCI device, such as "lscpi -vvv"? It seems like that "Phantom
Functions" is enabled with these PCI devices.
Thanks!
Gerry

On 2014/8/11 10:54, Yijing Wang wrote:
> We found some strange devices in HP C7000 and Huawei Server. These devices
> can not be enumerated by OS, but they still did DMA read/write without OS 
> management. Because iommu will not create the DMA mapping for these devices,
> the DMA read/write will be blocked by iommu hardware.
> 
> Eg.
>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>              +-01.0-[11]--
> 			 +-01.1-[02]--
> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
> 	         +-02.1-[12]--
> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
> 
> [ 1438.477262] DRHD: handling fault status reg 402
> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
> 
> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
> ---
>  arch/x86/include/asm/iommu.h |    2 ++
>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>  3 files changed, 51 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
> index 345c99c..5e3a2d8 100644
> --- a/arch/x86/include/asm/iommu.h
> +++ b/arch/x86/include/asm/iommu.h
> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>  extern int force_iommu, no_iommu;
>  extern int iommu_detected;
>  extern int iommu_pass_through;
> +extern int iommu_pt_force_bus;
> +extern int iommu_pt_force_domain;
>  
>  /* 10 seconds */
>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
> index a25e202..bf21d97 100644
> --- a/arch/x86/kernel/pci-dma.c
> +++ b/arch/x86/kernel/pci-dma.c
> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>   * guests and not for driver dma translation.
>   */
>  int iommu_pass_through __read_mostly;
> +int iommu_pt_force_bus = -1;
> +int iommu_pt_force_domain = -1;
>  
>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>  
> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>   */
>  static __init int iommu_setup(char *p)
>  {
> +	char *end;
>  	iommu_merge = 1;
>  
>  	if (!p)
> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>  #endif
>  		if (!strncmp(p, "pt", 2))
>  			iommu_pass_through = 1;
> +		if (!strncmp(p, "pt_force=", 9)) {
> +			iommu_pass_through = 1;
> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
> +		}
>  
>  		gart_parse_options(p);
>  
> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
> index d1f5caa..49757f1 100644
> --- a/drivers/iommu/intel-iommu.c
> +++ b/drivers/iommu/intel-iommu.c
> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>  				return ret;
>  		}
>  
> +	/* We found some strange devices in HP c7000 and other platforms that
> +	 * can not be enumerated by OS, but they did DMA read/write without
> +	 * driver management, so we should create the pt mapping for these
> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
> +	 * force to do pt context mapping in the bus number.
> +	 */
> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
> +		int found = 0;
> +
> +		iommu = NULL;
> +		for_each_active_iommu(iommu, drhd) {
> +			if (iommu_pt_force_domain != drhd->segment)
> +				continue;
> +
> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
> +				if (!dev_is_pci(dev))
> +					continue;
> +
> +				pdev = to_pci_dev(dev);
> +				if (pdev->bus->number == iommu_pt_force_bus ||
> +						(pdev->subordinate
> +						 && pdev->subordinate->number <= iommu_pt_force_bus
> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
> +					found = 1;
> +					break;
> +				}
> +			}
> +
> +			if (drhd->include_all) {
> +				found = 1;
> +				break;
> +			}
> +		}
> +
> +		if (found && iommu)
> +			for (i = 0; i < 256; i++)
> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
> +						CONTEXT_TT_MULTI_LEVEL);
> +	}
> +
>  	return 0;
>  }
>  
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]     ` <53E8355C.4010906-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
@ 2014-08-11  3:46       ` Yijing Wang
       [not found]         ` <53E83C9E.9060405-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Yijing Wang @ 2014-08-11  3:46 UTC (permalink / raw)
  To: Jiang Liu, Joerg Roedel, David Woodhouse
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On 2014/8/11 11:15, Jiang Liu wrote:
> Hi Yijing,
> 	Could you please help to provide detail information about the
> PCI device, such as "lscpi -vvv"? It seems like that "Phantom
> Functions" is enabled with these PCI devices.
> Thanks!
> Gerry

My pleasure!

Gerry, the lspci info is below:

HP C7000 Server:  The problem devices id: 04:00.4 04:00.5 04:00.6 04:00.7

04:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 32
	Region 0: Memory at ebff0000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebfc0000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebfa0000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc000000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, NIC PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 0
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 42 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy+
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 00
		VF offset: 0, stride: 1, Device ID: 0710
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 1
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2net
	Kernel modules: be2net

04:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 36
	Region 0: Memory at ebf90000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebf60000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebf40000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc040000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, NIC PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 1
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 42 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 01
		VF offset: 0, stride: 1, Device ID: 0710
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 2
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2net
	Kernel modules: be2net

04:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 37
	Region 0: Memory at ebf30000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebf00000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebee0000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc080000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, iSCSI PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 0
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 40 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 02
		VF offset: 0, stride: 1, Device ID: 0712
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 3
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2iscsi
	Kernel modules: be2iscsi

04:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 38
	Region 0: Memory at ebed0000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebea0000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebe80000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc0c0000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, iSCSI PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 1
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 40 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 03
		VF offset: 0, stride: 1, Device ID: 0712
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 0
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2iscsi
	Kernel modules: be2iscsi

Huawei Storage Server: devices id: 03:07.1 03:07.2 03:07.3

03:00.0 Bridge: PLX Technology, Inc. Device 8725 (rev ca)
	Subsystem: PLX Technology, Inc. Device 87b0
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 94
	Region 0: Memory at 94100000 (32-bit, non-prefetchable) [size=256K]
	Region 2: Memory at 180000000000 (64-bit, prefetchable) [size=4T]
	Region 4: Memory at 90000000 (32-bit, non-prefetchable) [size=64M]
	Region 5: Memory at 94000000 (32-bit, non-prefetchable) [size=1M]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+
		Address: 00000000fee00000  Data: 4063
		Masking: 000000fe  Pending: 00000000
	Capabilities: [68] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 8GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <4us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x8, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [c8] Vendor Specific Information: Len=00 <?>
	Capabilities: [100 v1] Device Serial Number ca-87-00-10-b5-df-0e-00
	Capabilities: [fb4 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 1f, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [148 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [c34 v1] Vendor Specific Information: ID=0003 Rev=0 Len=078 <?>
	Capabilities: [b70 v1] Vendor Specific Information: ID=0001 Rev=0 Len=010 <?>

Thanks!
Yijing.


> 
> On 2014/8/11 10:54, Yijing Wang wrote:
>> We found some strange devices in HP C7000 and Huawei Server. These devices
>> can not be enumerated by OS, but they still did DMA read/write without OS 
>> management. Because iommu will not create the DMA mapping for these devices,
>> the DMA read/write will be blocked by iommu hardware.
>>
>> Eg.
>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>              +-01.0-[11]--
>> 			 +-01.1-[02]--
>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>> 	         +-02.1-[12]--
>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>
>> [ 1438.477262] DRHD: handling fault status reg 402
>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>
>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>> ---
>>  arch/x86/include/asm/iommu.h |    2 ++
>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>> index 345c99c..5e3a2d8 100644
>> --- a/arch/x86/include/asm/iommu.h
>> +++ b/arch/x86/include/asm/iommu.h
>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>  extern int force_iommu, no_iommu;
>>  extern int iommu_detected;
>>  extern int iommu_pass_through;
>> +extern int iommu_pt_force_bus;
>> +extern int iommu_pt_force_domain;
>>  
>>  /* 10 seconds */
>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>> index a25e202..bf21d97 100644
>> --- a/arch/x86/kernel/pci-dma.c
>> +++ b/arch/x86/kernel/pci-dma.c
>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>   * guests and not for driver dma translation.
>>   */
>>  int iommu_pass_through __read_mostly;
>> +int iommu_pt_force_bus = -1;
>> +int iommu_pt_force_domain = -1;
>>  
>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>  
>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>   */
>>  static __init int iommu_setup(char *p)
>>  {
>> +	char *end;
>>  	iommu_merge = 1;
>>  
>>  	if (!p)
>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>  #endif
>>  		if (!strncmp(p, "pt", 2))
>>  			iommu_pass_through = 1;
>> +		if (!strncmp(p, "pt_force=", 9)) {
>> +			iommu_pass_through = 1;
>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>> +		}
>>  
>>  		gart_parse_options(p);
>>  
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index d1f5caa..49757f1 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>  				return ret;
>>  		}
>>  
>> +	/* We found some strange devices in HP c7000 and other platforms that
>> +	 * can not be enumerated by OS, but they did DMA read/write without
>> +	 * driver management, so we should create the pt mapping for these
>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>> +	 * force to do pt context mapping in the bus number.
>> +	 */
>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>> +		int found = 0;
>> +
>> +		iommu = NULL;
>> +		for_each_active_iommu(iommu, drhd) {
>> +			if (iommu_pt_force_domain != drhd->segment)
>> +				continue;
>> +
>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>> +				if (!dev_is_pci(dev))
>> +					continue;
>> +
>> +				pdev = to_pci_dev(dev);
>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>> +						(pdev->subordinate
>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>> +					found = 1;
>> +					break;
>> +				}
>> +			}
>> +
>> +			if (drhd->include_all) {
>> +				found = 1;
>> +				break;
>> +			}
>> +		}
>> +
>> +		if (found && iommu)
>> +			for (i = 0; i < 256; i++)
>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>> +						CONTEXT_TT_MULTI_LEVEL);
>> +	}
>> +
>>  	return 0;
>>  }
>>  
>>
> 
> .
> 


-- 
Thanks!
Yijing

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found] ` <1407725674-27271-1-git-send-email-wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  2014-08-11  3:15   ` Jiang Liu
@ 2014-08-11  4:43   ` Alex Williamson
       [not found]     ` <1407732187.9800.11.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Alex Williamson @ 2014-08-11  4:43 UTC (permalink / raw)
  To: Yijing Wang
  Cc: David Woodhouse,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Jiang Liu

On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
> We found some strange devices in HP C7000 and Huawei Server. These devices
> can not be enumerated by OS, but they still did DMA read/write without OS 
> management. Because iommu will not create the DMA mapping for these devices,
> the DMA read/write will be blocked by iommu hardware.
> 
> Eg.
>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>              +-01.0-[11]--
> 			 +-01.1-[02]--
> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
> 	         +-02.1-[12]--
> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
> 
> [ 1438.477262] DRHD: handling fault status reg 402
> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
> 
> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
> ---
>  arch/x86/include/asm/iommu.h |    2 ++
>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>  3 files changed, 51 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
> index 345c99c..5e3a2d8 100644
> --- a/arch/x86/include/asm/iommu.h
> +++ b/arch/x86/include/asm/iommu.h
> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>  extern int force_iommu, no_iommu;
>  extern int iommu_detected;
>  extern int iommu_pass_through;
> +extern int iommu_pt_force_bus;
> +extern int iommu_pt_force_domain;
>  
>  /* 10 seconds */
>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
> index a25e202..bf21d97 100644
> --- a/arch/x86/kernel/pci-dma.c
> +++ b/arch/x86/kernel/pci-dma.c
> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>   * guests and not for driver dma translation.
>   */
>  int iommu_pass_through __read_mostly;
> +int iommu_pt_force_bus = -1;
> +int iommu_pt_force_domain = -1;
>  
>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>  
> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>   */
>  static __init int iommu_setup(char *p)
>  {
> +	char *end;
>  	iommu_merge = 1;
>  
>  	if (!p)
> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>  #endif
>  		if (!strncmp(p, "pt", 2))
>  			iommu_pass_through = 1;
> +		if (!strncmp(p, "pt_force=", 9)) {
> +			iommu_pass_through = 1;
> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);

Documentation/kernel-parameters.txt?

> +		}
>  
>  		gart_parse_options(p);
>  
> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
> index d1f5caa..49757f1 100644
> --- a/drivers/iommu/intel-iommu.c
> +++ b/drivers/iommu/intel-iommu.c
> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>  				return ret;
>  		}
>  
> +	/* We found some strange devices in HP c7000 and other platforms that
> +	 * can not be enumerated by OS, but they did DMA read/write without
> +	 * driver management, so we should create the pt mapping for these
> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
> +	 * force to do pt context mapping in the bus number.
> +	 */

So best case with this patch is that the user needs to discover that
this option exists, figure out the undocumented parameters, be running
on VT-d, permanently add a kernel commandline option, and never have any
intention of assigning the device to userspace or a VM...

Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
can the vendor fix this with a firmware update?  This device behavior is
really quite broken for this kind of server class product.  Thanks,

Alex

> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
> +		int found = 0;
> +
> +		iommu = NULL;
> +		for_each_active_iommu(iommu, drhd) {
> +			if (iommu_pt_force_domain != drhd->segment)
> +				continue;
> +
> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
> +				if (!dev_is_pci(dev))
> +					continue;
> +
> +				pdev = to_pci_dev(dev);
> +				if (pdev->bus->number == iommu_pt_force_bus ||
> +						(pdev->subordinate
> +						 && pdev->subordinate->number <= iommu_pt_force_bus
> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
> +					found = 1;
> +					break;
> +				}
> +			}
> +
> +			if (drhd->include_all) {
> +				found = 1;
> +				break;
> +			}
> +		}
> +
> +		if (found && iommu)
> +			for (i = 0; i < 256; i++)
> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
> +						CONTEXT_TT_MULTI_LEVEL);
> +	}
> +
>  	return 0;
>  }
>  

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]         ` <53E83C9E.9060405-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
@ 2014-08-11  4:56           ` Jiang Liu
       [not found]             ` <53E84CEA.7080402-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Jiang Liu @ 2014-08-11  4:56 UTC (permalink / raw)
  To: Yijing Wang, Joerg Roedel, David Woodhouse
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

Hi Yijing,
	These devices don't support Phantom Function (PhantFunc 0).
Could you please help to provide full dmesg, /proc/iomem, and ACPI
DMAR table? You may get DMAR table by:
acpidump > acpi.bin
acpixtract -a acpib.bin
iasl -d DMAR.dat
Thanks!
Gerry

On 2014/8/11 11:46, Yijing Wang wrote:
> On 2014/8/11 11:15, Jiang Liu wrote:
>> Hi Yijing,
>> 	Could you please help to provide detail information about the
>> PCI device, such as "lscpi -vvv"? It seems like that "Phantom
>> Functions" is enabled with these PCI devices.
>> Thanks!
>> Gerry
> 
> My pleasure!
> 
> Gerry, the lspci info is below:
> 
> HP C7000 Server:  The problem devices id: 04:00.4 04:00.5 04:00.6 04:00.7
> 
> 04:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
> 	Subsystem: Hewlett-Packard Company Device 337b
> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 64 bytes
> 	Interrupt: pin A routed to IRQ 32
> 	Region 0: Memory at ebff0000 (64-bit, non-prefetchable) [size=16K]
> 	Region 2: Memory at ebfc0000 (64-bit, non-prefetchable) [size=128K]
> 	Region 4: Memory at ebfa0000 (64-bit, non-prefetchable) [size=128K]
> 	[virtual] Expansion ROM at dc000000 [disabled] [size=256K]
> 	Capabilities: [40] Power Management version 3
> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
> 	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
> 		Vector table: BAR=0 offset=00002000
> 		PBA: BAR=0 offset=00003000
> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
> 			ClockPM- Surprise- LLActRep- BwNot-
> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> 		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
> 			 Compliance De-emphasis: -6dB
> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
> 	Capabilities: [b8] Vital Product Data
> 		Product Name: 647586-B21, NIC PF
> 		Read-only fields:
> 			[PN] Part number: 647584-001
> 			[SN] Serial number: H3534360ZX
> 			[V0] Vendor specific: VA00000000
> 			[EC] Engineering changes: A-5120
> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
> 			[VA] Vendor specific: 649940-001\x0d
> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
> 			[V2] Vendor specific: 554FLB
> 			[V4] Vendor specific: 0
> 			[V5] Vendor specific: OCl11102-F4-HP
> 			[V6] Vendor specific: A0:1,D0:1
> 			[RV] Reserved: checksum good, 42 byte(s) reserved
> 		End
> 	Capabilities: [100 v1] Advanced Error Reporting
> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
> 		IOVCap:	Migration-, Interrupt Message Number: 000
> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy+
> 		IOVSta:	Migration-
> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 00
> 		VF offset: 0, stride: 1, Device ID: 0710
> 		Supported Page Size: 00000557, System Page Size: 00000001
> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
> 		VF Migration: offset: 00000000, BIR: 0
> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
> 		ARICap:	MFVC- ACS-, Next Function: 1
> 		ARICtl:	MFVC- ACS-, Function Group: 0
> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
> 	Capabilities: [12c v1] Transaction Processing Hints
> 		No steering table available
> 	Kernel driver in use: be2net
> 	Kernel modules: be2net
> 
> 04:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
> 	Subsystem: Hewlett-Packard Company Device 337b
> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 64 bytes
> 	Interrupt: pin B routed to IRQ 36
> 	Region 0: Memory at ebf90000 (64-bit, non-prefetchable) [size=16K]
> 	Region 2: Memory at ebf60000 (64-bit, non-prefetchable) [size=128K]
> 	Region 4: Memory at ebf40000 (64-bit, non-prefetchable) [size=128K]
> 	[virtual] Expansion ROM at dc040000 [disabled] [size=256K]
> 	Capabilities: [40] Power Management version 3
> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
> 	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
> 		Vector table: BAR=0 offset=00002000
> 		PBA: BAR=0 offset=00003000
> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
> 			ClockPM- Surprise- LLActRep- BwNot-
> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
> 			 Compliance De-emphasis: -6dB
> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
> 	Capabilities: [b8] Vital Product Data
> 		Product Name: 647586-B21, NIC PF
> 		Read-only fields:
> 			[PN] Part number: 647584-001
> 			[SN] Serial number: H3534360ZX
> 			[V0] Vendor specific: VA00000000
> 			[EC] Engineering changes: A-5120
> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
> 			[VA] Vendor specific: 649940-001\x0d
> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
> 			[V2] Vendor specific: 554FLB
> 			[V4] Vendor specific: 1
> 			[V5] Vendor specific: OCl11102-F4-HP
> 			[V6] Vendor specific: A0:1,D0:1
> 			[RV] Reserved: checksum good, 42 byte(s) reserved
> 		End
> 	Capabilities: [100 v1] Advanced Error Reporting
> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
> 		IOVCap:	Migration-, Interrupt Message Number: 000
> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
> 		IOVSta:	Migration-
> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 01
> 		VF offset: 0, stride: 1, Device ID: 0710
> 		Supported Page Size: 00000557, System Page Size: 00000001
> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
> 		VF Migration: offset: 00000000, BIR: 0
> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
> 		ARICap:	MFVC- ACS-, Next Function: 2
> 		ARICtl:	MFVC- ACS-, Function Group: 0
> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
> 	Capabilities: [12c v1] Transaction Processing Hints
> 		No steering table available
> 	Kernel driver in use: be2net
> 	Kernel modules: be2net
> 
> 04:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
> 	Subsystem: Hewlett-Packard Company Device 337b
> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 64 bytes
> 	Interrupt: pin C routed to IRQ 37
> 	Region 0: Memory at ebf30000 (64-bit, non-prefetchable) [size=16K]
> 	Region 2: Memory at ebf00000 (64-bit, non-prefetchable) [size=128K]
> 	Region 4: Memory at ebee0000 (64-bit, non-prefetchable) [size=128K]
> 	[virtual] Expansion ROM at dc080000 [disabled] [size=256K]
> 	Capabilities: [40] Power Management version 3
> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
> 	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
> 		Vector table: BAR=0 offset=00002000
> 		PBA: BAR=0 offset=00003000
> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
> 		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
> 			ClockPM- Surprise- LLActRep- BwNot-
> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
> 			 Compliance De-emphasis: -6dB
> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
> 	Capabilities: [b8] Vital Product Data
> 		Product Name: 647586-B21, iSCSI PF
> 		Read-only fields:
> 			[PN] Part number: 647584-001
> 			[SN] Serial number: H3534360ZX
> 			[V0] Vendor specific: VA00000000
> 			[EC] Engineering changes: A-5120
> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
> 			[VA] Vendor specific: 649940-001\x0d
> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
> 			[V2] Vendor specific: 554FLB
> 			[V4] Vendor specific: 0
> 			[V5] Vendor specific: OCl11102-F4-HP
> 			[V6] Vendor specific: A0:1,D0:1
> 			[RV] Reserved: checksum good, 40 byte(s) reserved
> 		End
> 	Capabilities: [100 v1] Advanced Error Reporting
> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
> 		IOVCap:	Migration-, Interrupt Message Number: 000
> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
> 		IOVSta:	Migration-
> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 02
> 		VF offset: 0, stride: 1, Device ID: 0712
> 		Supported Page Size: 00000557, System Page Size: 00000001
> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
> 		VF Migration: offset: 00000000, BIR: 0
> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
> 		ARICap:	MFVC- ACS-, Next Function: 3
> 		ARICtl:	MFVC- ACS-, Function Group: 0
> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
> 	Capabilities: [12c v1] Transaction Processing Hints
> 		No steering table available
> 	Kernel driver in use: be2iscsi
> 	Kernel modules: be2iscsi
> 
> 04:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
> 	Subsystem: Hewlett-Packard Company Device 337b
> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 64 bytes
> 	Interrupt: pin D routed to IRQ 38
> 	Region 0: Memory at ebed0000 (64-bit, non-prefetchable) [size=16K]
> 	Region 2: Memory at ebea0000 (64-bit, non-prefetchable) [size=128K]
> 	Region 4: Memory at ebe80000 (64-bit, non-prefetchable) [size=128K]
> 	[virtual] Expansion ROM at dc0c0000 [disabled] [size=256K]
> 	Capabilities: [40] Power Management version 3
> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
> 	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
> 		Vector table: BAR=0 offset=00002000
> 		PBA: BAR=0 offset=00003000
> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
> 		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
> 			ClockPM- Surprise- LLActRep- BwNot-
> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
> 			 Compliance De-emphasis: -6dB
> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
> 	Capabilities: [b8] Vital Product Data
> 		Product Name: 647586-B21, iSCSI PF
> 		Read-only fields:
> 			[PN] Part number: 647584-001
> 			[SN] Serial number: H3534360ZX
> 			[V0] Vendor specific: VA00000000
> 			[EC] Engineering changes: A-5120
> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
> 			[VA] Vendor specific: 649940-001\x0d
> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
> 			[V2] Vendor specific: 554FLB
> 			[V4] Vendor specific: 1
> 			[V5] Vendor specific: OCl11102-F4-HP
> 			[V6] Vendor specific: A0:1,D0:1
> 			[RV] Reserved: checksum good, 40 byte(s) reserved
> 		End
> 	Capabilities: [100 v1] Advanced Error Reporting
> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
> 		IOVCap:	Migration-, Interrupt Message Number: 000
> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
> 		IOVSta:	Migration-
> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 03
> 		VF offset: 0, stride: 1, Device ID: 0712
> 		Supported Page Size: 00000557, System Page Size: 00000001
> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
> 		VF Migration: offset: 00000000, BIR: 0
> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
> 		ARICap:	MFVC- ACS-, Next Function: 0
> 		ARICtl:	MFVC- ACS-, Function Group: 0
> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
> 	Capabilities: [12c v1] Transaction Processing Hints
> 		No steering table available
> 	Kernel driver in use: be2iscsi
> 	Kernel modules: be2iscsi
> 
> Huawei Storage Server: devices id: 03:07.1 03:07.2 03:07.3
> 
> 03:00.0 Bridge: PLX Technology, Inc. Device 8725 (rev ca)
> 	Subsystem: PLX Technology, Inc. Device 87b0
> 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
> 	Latency: 0, Cache Line Size: 64 bytes
> 	Interrupt: pin A routed to IRQ 94
> 	Region 0: Memory at 94100000 (32-bit, non-prefetchable) [size=256K]
> 	Region 2: Memory at 180000000000 (64-bit, prefetchable) [size=4T]
> 	Region 4: Memory at 90000000 (32-bit, non-prefetchable) [size=64M]
> 	Region 5: Memory at 94000000 (32-bit, non-prefetchable) [size=1M]
> 	Capabilities: [40] Power Management version 3
> 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
> 	Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+
> 		Address: 00000000fee00000  Data: 4063
> 		Masking: 000000fe  Pending: 00000000
> 	Capabilities: [68] Express (v2) Endpoint, MSI 00
> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
> 			MaxPayload 256 bytes, MaxReadReq 128 bytes
> 		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
> 		LnkCap:	Port #1, Speed 8GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <4us
> 			ClockPM- Surprise- LLActRep- BwNot-
> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> 		LnkSta:	Speed 8GT/s, Width x8, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
> 			 Compliance De-emphasis: -6dB
> 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
> 	Capabilities: [c8] Vendor Specific Information: Len=00 <?>
> 	Capabilities: [100 v1] Device Serial Number ca-87-00-10-b5-df-0e-00
> 	Capabilities: [fb4 v1] Advanced Error Reporting
> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
> 		AERCap:	First Error Pointer: 1f, GenCap+ CGenEn- ChkCap+ ChkEn-
> 	Capabilities: [148 v1] Virtual Channel
> 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
> 		Arb:	Fixed- WRR32- WRR64- WRR128-
> 		Ctrl:	ArbSelect=Fixed
> 		Status:	InProgress-
> 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
> 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
> 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
> 			Status:	NegoPending- InProgress-
> 	Capabilities: [c34 v1] Vendor Specific Information: ID=0003 Rev=0 Len=078 <?>
> 	Capabilities: [b70 v1] Vendor Specific Information: ID=0001 Rev=0 Len=010 <?>
> 
> Thanks!
> Yijing.
> 
> 
>>
>> On 2014/8/11 10:54, Yijing Wang wrote:
>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>> management. Because iommu will not create the DMA mapping for these devices,
>>> the DMA read/write will be blocked by iommu hardware.
>>>
>>> Eg.
>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>              +-01.0-[11]--
>>> 			 +-01.1-[02]--
>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>> 	         +-02.1-[12]--
>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>
>>> [ 1438.477262] DRHD: handling fault status reg 402
>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>
>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>> ---
>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>> index 345c99c..5e3a2d8 100644
>>> --- a/arch/x86/include/asm/iommu.h
>>> +++ b/arch/x86/include/asm/iommu.h
>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>  extern int force_iommu, no_iommu;
>>>  extern int iommu_detected;
>>>  extern int iommu_pass_through;
>>> +extern int iommu_pt_force_bus;
>>> +extern int iommu_pt_force_domain;
>>>  
>>>  /* 10 seconds */
>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>> index a25e202..bf21d97 100644
>>> --- a/arch/x86/kernel/pci-dma.c
>>> +++ b/arch/x86/kernel/pci-dma.c
>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>   * guests and not for driver dma translation.
>>>   */
>>>  int iommu_pass_through __read_mostly;
>>> +int iommu_pt_force_bus = -1;
>>> +int iommu_pt_force_domain = -1;
>>>  
>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>  
>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>   */
>>>  static __init int iommu_setup(char *p)
>>>  {
>>> +	char *end;
>>>  	iommu_merge = 1;
>>>  
>>>  	if (!p)
>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>  #endif
>>>  		if (!strncmp(p, "pt", 2))
>>>  			iommu_pass_through = 1;
>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>> +			iommu_pass_through = 1;
>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>> +		}
>>>  
>>>  		gart_parse_options(p);
>>>  
>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>> index d1f5caa..49757f1 100644
>>> --- a/drivers/iommu/intel-iommu.c
>>> +++ b/drivers/iommu/intel-iommu.c
>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>  				return ret;
>>>  		}
>>>  
>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>> +	 * driver management, so we should create the pt mapping for these
>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>> +	 * force to do pt context mapping in the bus number.
>>> +	 */
>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>> +		int found = 0;
>>> +
>>> +		iommu = NULL;
>>> +		for_each_active_iommu(iommu, drhd) {
>>> +			if (iommu_pt_force_domain != drhd->segment)
>>> +				continue;
>>> +
>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>> +				if (!dev_is_pci(dev))
>>> +					continue;
>>> +
>>> +				pdev = to_pci_dev(dev);
>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>> +						(pdev->subordinate
>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>> +					found = 1;
>>> +					break;
>>> +				}
>>> +			}
>>> +
>>> +			if (drhd->include_all) {
>>> +				found = 1;
>>> +				break;
>>> +			}
>>> +		}
>>> +
>>> +		if (found && iommu)
>>> +			for (i = 0; i < 256; i++)
>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>> +						CONTEXT_TT_MULTI_LEVEL);
>>> +	}
>>> +
>>>  	return 0;
>>>  }
>>>  
>>>
>>
>> .
>>
> 
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]             ` <53E84CEA.7080402-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
@ 2014-08-11  8:26               ` Yijing Wang
  0 siblings, 0 replies; 17+ messages in thread
From: Yijing Wang @ 2014-08-11  8:26 UTC (permalink / raw)
  To: Jiang Liu, Joerg Roedel, David Woodhouse
  Cc: wuhonghui (A), iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

[-- Attachment #1: Type: text/plain, Size: 36419 bytes --]

On 2014/8/11 12:56, Jiang Liu wrote:
> Hi Yijing,
> 	These devices don't support Phantom Function (PhantFunc 0).
> Could you please help to provide full dmesg, /proc/iomem, and ACPI
> DMAR table? You may get DMAR table by:
> acpidump > acpi.bin
> acpixtract -a acpib.bin
> iasl -d DMAR.dat

Hi Gerry,
   There is some wrong with our HP C7000(actually the machine is in product department),
so I send the Huawei Storage Server info first. There maybe something different in dmesg,
because the kernel has been changed, but we also can find the DMA errors from that,
I think the DMAR info and /proc/iomem info is same as before(the time we found the issue).


/proc/iomem:

00000000-0000ffff : reserved
00010000-0009cbff : System RAM
0009cc00-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
000c0000-000c7fff : Video ROM
000e0000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-6a6fefff : System RAM
  01000000-01474b7f : Kernel code
  01474b80-018878ff : Kernel data
  01939000-01a3cfff : Kernel bss
  24000000-2cffffff : Crash kernel
6a6ff000-726fefff : pbs
726ff000-7a6fefff : vos memory
7a6ff000-7aafefff : reserved
7aaff000-7aefefff : ACPI Non-volatile Storage
7aeff000-7affefff : ACPI Tables
7afff000-7affffff : reserved
7b000000-7effffff : os nvram
7f000000-8fffffff : reserved
  80000000-8fffffff : PCI MMCONFIG 0000 [bus 00-ff]
90000000-fbffefff : PCI Bus 0000:00
  90000000-942fffff : PCI Bus 0000:01
    90000000-941fffff : PCI Bus 0000:02
      90000000-941fffff : PCI Bus 0000:03
        90000000-93ffffff : 0000:03:00.0
        94000000-940fffff : 0000:03:00.0
        94100000-9413ffff : 0000:03:00.0
    94200000-9423ffff : 0000:01:00.0
    94240000-94241fff : 0000:01:00.4
    94242000-94243fff : 0000:01:00.3
    94244000-94245fff : 0000:01:00.2
    94246000-94247fff : 0000:01:00.1
  94300000-943fffff : PCI Bus 0000:0a
    94300000-943fffff : 0000:0a:00.0
  95000000-95ffffff : PCI Bus 0000:25
  96000000-96ffffff : PCI Bus 0000:1c
  97000000-97ffffff : PCI Bus 0000:13
  98000000-980fffff : PCI Bus 0000:34
    98000000-9801ffff : 0000:34:00.0
      98000000-9801ffff : e1000e
    98020000-98023fff : 0000:34:00.0
      98020000-98023fff : e1000e
  98100000-981fffff : PCI Bus 0000:32
    98100000-9811ffff : 0000:32:00.0
      98100000-9811ffff : e1000e
    98120000-98123fff : 0000:32:00.0
      98120000-98123fff : e1000e
  98200000-982fffff : PCI Bus 0000:30
    98200000-9821ffff : 0000:30:00.0
      98200000-9821ffff : e1000e
    98220000-98223fff : 0000:30:00.0
      98220000-98223fff : e1000e
  98300000-983fffff : PCI Bus 0000:2e
  98400000-984fffff : PCI Bus 0000:0a
    98400000-9840ffff : 0000:0a:00.0
    98410000-9841ffff : 0000:0a:00.0
  98500000-98503fff : 0000:00:04.0
  98504000-98507fff : 0000:00:04.1
  98508000-9850bfff : 0000:00:04.2
  9850c000-9850ffff : 0000:00:04.3
  98510000-98513fff : 0000:00:04.4
  98514000-98517fff : 0000:00:04.5
  98518000-9851bfff : 0000:00:04.6
  9851c000-9851ffff : 0000:00:04.7
  98522000-985220ff : 0000:00:1f.3
  98524000-985247ff : 0000:00:1f.2
    98524000-985247ff : ahci
  98525000-985253ff : 0000:00:1d.0
    98525000-985253ff : ehci_hcd
  98526000-985263ff : 0000:00:1a.0
    98526000-985263ff : ehci_hcd
  98527000-98527fff : 0000:00:05.4
  fbffc000-fbffdfff : pnp 00:01
fbfff000-fbffffff : pnp 00:01
feb00000-feb03fff : reserved
fec00000-fec00fff : reserved
  fec00000-fec003ff : IOAPIC 0
fec01000-fec013ff : IOAPIC 1
fed00000-fed003ff : HPET 0
fed18000-fed18fff : reserved
fed1c000-fed8ffff : reserved
  fed1c000-fed1ffff : pnp 00:01
  fed20000-fed3ffff : pnp 00:01
fee00000-fee00fff : Local APIC
  fee00000-fee00fff : reserved
ffc00000-ffffffff : reserved
100000000-3bfffffff : System RAM
3c0000000-67fffffff : cache
180000000000-1fffffffffff : PCI Bus 0000:00
  180000000000-1bffffffffff : mirror memory
    180000000000-1bffffffffff : PCI Bus 0000:01
      180000000000-1bffffffffff : PCI Bus 0000:02
        180000000000-1bffffffffff : PCI Bus 0000:03
          180000000000-1bffffffffff : 0000:03:00.0
  1c0000000000-1c0000ffffff : PCI Bus 0000:13
    1c0000000000-1c000000ffff : 0000:13:00.3
      1c0000000000-1c000000ffff : tg3
    1c0000010000-1c000001ffff : 0000:13:00.3
      1c0000010000-1c000001ffff : tg3
    1c0000020000-1c000002ffff : 0000:13:00.3
      1c0000020000-1c000002ffff : tg3
    1c0000030000-1c000003ffff : 0000:13:00.2
      1c0000030000-1c000003ffff : tg3
    1c0000040000-1c000004ffff : 0000:13:00.2
      1c0000040000-1c000004ffff : tg3
    1c0000050000-1c000005ffff : 0000:13:00.2
      1c0000050000-1c000005ffff : tg3
    1c0000060000-1c000006ffff : 0000:13:00.1
      1c0000060000-1c000006ffff : tg3
    1c0000070000-1c000007ffff : 0000:13:00.1
      1c0000070000-1c000007ffff : tg3
    1c0000080000-1c000008ffff : 0000:13:00.1
      1c0000080000-1c000008ffff : tg3
    1c0000090000-1c000009ffff : 0000:13:00.0
      1c0000090000-1c000009ffff : tg3
    1c00000a0000-1c00000affff : 0000:13:00.0
      1c00000a0000-1c00000affff : tg3
    1c00000b0000-1c00000bffff : 0000:13:00.0
      1c00000b0000-1c00000bffff : tg3
  1c0001000000-1c0001ffffff : PCI Bus 0000:1c
  1c0002000000-1c0002ffffff : PCI Bus 0000:25
  1c0003000000-1c00034fffff : PCI Bus 0000:2e
    1c0003000000-1c00033fffff : 0000:2e:00.0
    1c0003400000-1c000347bfff : 0000:2e:00.0
    1c000347c000-1c000347ffff : 0000:2e:00.0

DMAR talbe:

/*
 * Intel ACPI Component Architecture
 * AML Disassembler version 20081031
 *
 * Disassembly of DMAR.dat, Mon Aug 11 15:46:03 2014
 *
 * ACPI Data Table [DMAR]
 *
 * Format: [HexOffset DecimalOffset ByteLength]  FieldName : FieldValue
 */

[000h 000  4]                    Signature : "DMAR"    /* DMA Remapping table */
[004h 004  4]                 Table Length : 00000080
[008h 008  1]                     Revision : 01
[009h 009  1]                     Checksum : 83
[00Ah 010  6]                       Oem ID : "INSYDE"
[010h 016  8]                 Oem Table ID : "Romley  "
[018h 024  4]                 Oem Revision : 00000001
[01Ch 028  4]              Asl Compiler ID : "ACPI"
[020h 032  4]        Asl Compiler Revision : 00040000

[024h 036  1]           Host Address Width : 2D
[025h 037  1]                        Flags : 01

[030h 048  2]                Subtable Type : 0000 <Hardware Unit Definition>
[032h 050  2]                       Length : 0028
[034h 052  1]                        Flags : 01
[035h 053  1]                     Reserved : 00
[036h 054  2]           PCI Segment Number : 0000
[038h 056  8]        Register Base Address : 00000000FBFFC000

[040h 064  1]      Device Scope Entry Type : 03
[041h 065  1]                 Entry Length : 08
[042h 066  2]                     Reserved : 0000
[044h 068  1]               Enumeration ID : 08
[045h 069  1]               PCI Bus Number : F0
[046h 070  2]                     PCI Path : [1F, 00]

[048h 072  1]      Device Scope Entry Type : 03
[049h 073  1]                 Entry Length : 08
[04Ah 074  2]                     Reserved : 0000
[04Ch 076  1]               Enumeration ID : 09
[04Dh 077  1]               PCI Bus Number : 00
[04Eh 078  2]                     PCI Path : [05, 04]

[050h 080  1]      Device Scope Entry Type : 04
[051h 081  1]                 Entry Length : 08
[052h 082  2]                     Reserved : 0000
[054h 084  1]               Enumeration ID : 00
[055h 085  1]               PCI Bus Number : F0
[056h 086  2]                     PCI Path : [0F, 00]

[058h 088  2]                Subtable Type : 0001 <Reserved Memory Region>
[05Ah 090  2]                       Length : 0028
[05Ch 092  2]                     Reserved : 0000
[05Eh 094  2]           PCI Segment Number : 0000
[060h 096  8]                 Base Address : 000000007AA9F000
[068h 104  8]          End Address (limit) : 000000007AAA2FFF

[070h 112  1]      Device Scope Entry Type : 01
[071h 113  1]                 Entry Length : 08
[072h 114  2]                     Reserved : 0000
[074h 116  1]               Enumeration ID : 00
[075h 117  1]               PCI Bus Number : 00
[076h 118  2]                     PCI Path : [1A, 00]

[078h 120  1]      Device Scope Entry Type : 01
[079h 121  1]                 Entry Length : 08
[07Ah 122  2]                     Reserved : 0000
[07Ch 124  1]               Enumeration ID : 00
[07Dh 125  1]               PCI Bus Number : 00
[07Eh 126  2]                     PCI Path : [1D, 00]

Raw Table Data

  0000: 44 4D 41 52 80 00 00 00 01 83 49 4E 53 59 44 45  DMAR......INSYDE
  0010: 52 6F 6D 6C 65 79 20 20 01 00 00 00 41 43 50 49  Romley  ....ACPI
  0020: 00 00 04 00 2D 01 00 00 00 00 00 00 00 00 00 00  ....-...........
  0030: 00 00 28 00 01 00 00 00 00 C0 FF FB 00 00 00 00  ..(.............
  0040: 03 08 00 00 08 F0 1F 00 03 08 00 00 09 00 05 04  ................
  0050: 04 08 00 00 00 F0 0F 00 01 00 28 00 00 00 00 00  ..........(.....
  0060: 00 F0 A9 7A 00 00 00 00 FF 2F AA 7A 00 00 00 00  ...z...../.z....
  0070: 01 08 00 00 00 00 1A 00 01 08 00 00 00 00 1D 00  ................


dmesg attached.



> Thanks!
> Gerry
> 
> On 2014/8/11 11:46, Yijing Wang wrote:
>> On 2014/8/11 11:15, Jiang Liu wrote:
>>> Hi Yijing,
>>> 	Could you please help to provide detail information about the
>>> PCI device, such as "lscpi -vvv"? It seems like that "Phantom
>>> Functions" is enabled with these PCI devices.
>>> Thanks!
>>> Gerry
>>
>> My pleasure!
>>
>> Gerry, the lspci info is below:
>>
>> HP C7000 Server:  The problem devices id: 04:00.4 04:00.5 04:00.6 04:00.7
>>
>> 04:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
>> 	Subsystem: Hewlett-Packard Company Device 337b
>> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
>> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
>> 	Latency: 0, Cache Line Size: 64 bytes
>> 	Interrupt: pin A routed to IRQ 32
>> 	Region 0: Memory at ebff0000 (64-bit, non-prefetchable) [size=16K]
>> 	Region 2: Memory at ebfc0000 (64-bit, non-prefetchable) [size=128K]
>> 	Region 4: Memory at ebfa0000 (64-bit, non-prefetchable) [size=128K]
>> 	[virtual] Expansion ROM at dc000000 [disabled] [size=256K]
>> 	Capabilities: [40] Power Management version 3
>> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
>> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
>> 	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
>> 		Vector table: BAR=0 offset=00002000
>> 		PBA: BAR=0 offset=00003000
>> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
>> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
>> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
>> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
>> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
>> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
>> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
>> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
>> 			ClockPM- Surprise- LLActRep- BwNot-
>> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
>> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
>> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
>> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
>> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
>> 		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
>> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
>> 			 Compliance De-emphasis: -6dB
>> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
>> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
>> 	Capabilities: [b8] Vital Product Data
>> 		Product Name: 647586-B21, NIC PF
>> 		Read-only fields:
>> 			[PN] Part number: 647584-001
>> 			[SN] Serial number: H3534360ZX
>> 			[V0] Vendor specific: VA00000000
>> 			[EC] Engineering changes: A-5120
>> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
>> 			[VA] Vendor specific: 649940-001\x0d
>> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
>> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
>> 			[V2] Vendor specific: 554FLB
>> 			[V4] Vendor specific: 0
>> 			[V5] Vendor specific: OCl11102-F4-HP
>> 			[V6] Vendor specific: A0:1,D0:1
>> 			[RV] Reserved: checksum good, 42 byte(s) reserved
>> 		End
>> 	Capabilities: [100 v1] Advanced Error Reporting
>> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
>> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
>> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
>> 		IOVCap:	Migration-, Interrupt Message Number: 000
>> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy+
>> 		IOVSta:	Migration-
>> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 00
>> 		VF offset: 0, stride: 1, Device ID: 0710
>> 		Supported Page Size: 00000557, System Page Size: 00000001
>> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
>> 		VF Migration: offset: 00000000, BIR: 0
>> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
>> 		ARICap:	MFVC- ACS-, Next Function: 1
>> 		ARICtl:	MFVC- ACS-, Function Group: 0
>> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
>> 	Capabilities: [12c v1] Transaction Processing Hints
>> 		No steering table available
>> 	Kernel driver in use: be2net
>> 	Kernel modules: be2net
>>
>> 04:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
>> 	Subsystem: Hewlett-Packard Company Device 337b
>> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
>> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
>> 	Latency: 0, Cache Line Size: 64 bytes
>> 	Interrupt: pin B routed to IRQ 36
>> 	Region 0: Memory at ebf90000 (64-bit, non-prefetchable) [size=16K]
>> 	Region 2: Memory at ebf60000 (64-bit, non-prefetchable) [size=128K]
>> 	Region 4: Memory at ebf40000 (64-bit, non-prefetchable) [size=128K]
>> 	[virtual] Expansion ROM at dc040000 [disabled] [size=256K]
>> 	Capabilities: [40] Power Management version 3
>> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
>> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
>> 	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
>> 		Vector table: BAR=0 offset=00002000
>> 		PBA: BAR=0 offset=00003000
>> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
>> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
>> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
>> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
>> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
>> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
>> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
>> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
>> 			ClockPM- Surprise- LLActRep- BwNot-
>> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
>> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
>> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
>> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
>> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
>> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
>> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
>> 			 Compliance De-emphasis: -6dB
>> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
>> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
>> 	Capabilities: [b8] Vital Product Data
>> 		Product Name: 647586-B21, NIC PF
>> 		Read-only fields:
>> 			[PN] Part number: 647584-001
>> 			[SN] Serial number: H3534360ZX
>> 			[V0] Vendor specific: VA00000000
>> 			[EC] Engineering changes: A-5120
>> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
>> 			[VA] Vendor specific: 649940-001\x0d
>> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
>> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
>> 			[V2] Vendor specific: 554FLB
>> 			[V4] Vendor specific: 1
>> 			[V5] Vendor specific: OCl11102-F4-HP
>> 			[V6] Vendor specific: A0:1,D0:1
>> 			[RV] Reserved: checksum good, 42 byte(s) reserved
>> 		End
>> 	Capabilities: [100 v1] Advanced Error Reporting
>> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
>> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
>> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
>> 		IOVCap:	Migration-, Interrupt Message Number: 000
>> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
>> 		IOVSta:	Migration-
>> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 01
>> 		VF offset: 0, stride: 1, Device ID: 0710
>> 		Supported Page Size: 00000557, System Page Size: 00000001
>> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
>> 		VF Migration: offset: 00000000, BIR: 0
>> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
>> 		ARICap:	MFVC- ACS-, Next Function: 2
>> 		ARICtl:	MFVC- ACS-, Function Group: 0
>> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
>> 	Capabilities: [12c v1] Transaction Processing Hints
>> 		No steering table available
>> 	Kernel driver in use: be2net
>> 	Kernel modules: be2net
>>
>> 04:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
>> 	Subsystem: Hewlett-Packard Company Device 337b
>> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
>> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
>> 	Latency: 0, Cache Line Size: 64 bytes
>> 	Interrupt: pin C routed to IRQ 37
>> 	Region 0: Memory at ebf30000 (64-bit, non-prefetchable) [size=16K]
>> 	Region 2: Memory at ebf00000 (64-bit, non-prefetchable) [size=128K]
>> 	Region 4: Memory at ebee0000 (64-bit, non-prefetchable) [size=128K]
>> 	[virtual] Expansion ROM at dc080000 [disabled] [size=256K]
>> 	Capabilities: [40] Power Management version 3
>> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
>> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
>> 	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
>> 		Vector table: BAR=0 offset=00002000
>> 		PBA: BAR=0 offset=00003000
>> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
>> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
>> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
>> 		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
>> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
>> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
>> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
>> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
>> 			ClockPM- Surprise- LLActRep- BwNot-
>> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
>> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
>> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
>> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
>> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
>> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
>> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
>> 			 Compliance De-emphasis: -6dB
>> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
>> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
>> 	Capabilities: [b8] Vital Product Data
>> 		Product Name: 647586-B21, iSCSI PF
>> 		Read-only fields:
>> 			[PN] Part number: 647584-001
>> 			[SN] Serial number: H3534360ZX
>> 			[V0] Vendor specific: VA00000000
>> 			[EC] Engineering changes: A-5120
>> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
>> 			[VA] Vendor specific: 649940-001\x0d
>> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
>> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
>> 			[V2] Vendor specific: 554FLB
>> 			[V4] Vendor specific: 0
>> 			[V5] Vendor specific: OCl11102-F4-HP
>> 			[V6] Vendor specific: A0:1,D0:1
>> 			[RV] Reserved: checksum good, 40 byte(s) reserved
>> 		End
>> 	Capabilities: [100 v1] Advanced Error Reporting
>> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
>> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
>> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
>> 		IOVCap:	Migration-, Interrupt Message Number: 000
>> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
>> 		IOVSta:	Migration-
>> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 02
>> 		VF offset: 0, stride: 1, Device ID: 0712
>> 		Supported Page Size: 00000557, System Page Size: 00000001
>> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
>> 		VF Migration: offset: 00000000, BIR: 0
>> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
>> 		ARICap:	MFVC- ACS-, Next Function: 3
>> 		ARICtl:	MFVC- ACS-, Function Group: 0
>> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
>> 	Capabilities: [12c v1] Transaction Processing Hints
>> 		No steering table available
>> 	Kernel driver in use: be2iscsi
>> 	Kernel modules: be2iscsi
>>
>> 04:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
>> 	Subsystem: Hewlett-Packard Company Device 337b
>> 	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
>> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
>> 	Latency: 0, Cache Line Size: 64 bytes
>> 	Interrupt: pin D routed to IRQ 38
>> 	Region 0: Memory at ebed0000 (64-bit, non-prefetchable) [size=16K]
>> 	Region 2: Memory at ebea0000 (64-bit, non-prefetchable) [size=128K]
>> 	Region 4: Memory at ebe80000 (64-bit, non-prefetchable) [size=128K]
>> 	[virtual] Expansion ROM at dc0c0000 [disabled] [size=256K]
>> 	Capabilities: [40] Power Management version 3
>> 		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
>> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
>> 	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
>> 		Vector table: BAR=0 offset=00002000
>> 		PBA: BAR=0 offset=00003000
>> 	Capabilities: [c0] Express (v2) Endpoint, MSI 00
>> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
>> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
>> 		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
>> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
>> 			MaxPayload 256 bytes, MaxReadReq 4096 bytes
>> 		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
>> 		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
>> 			ClockPM- Surprise- LLActRep- BwNot-
>> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
>> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
>> 		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
>> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
>> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
>> 		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
>> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
>> 			 Compliance De-emphasis: -6dB
>> 		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
>> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
>> 	Capabilities: [b8] Vital Product Data
>> 		Product Name: 647586-B21, iSCSI PF
>> 		Read-only fields:
>> 			[PN] Part number: 647584-001
>> 			[SN] Serial number: H3534360ZX
>> 			[V0] Vendor specific: VA00000000
>> 			[EC] Engineering changes: A-5120
>> 			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
>> 			[VA] Vendor specific: 649940-001\x0d
>> 			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
>> 			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
>> 			[V2] Vendor specific: 554FLB
>> 			[V4] Vendor specific: 1
>> 			[V5] Vendor specific: OCl11102-F4-HP
>> 			[V6] Vendor specific: A0:1,D0:1
>> 			[RV] Reserved: checksum good, 40 byte(s) reserved
>> 		End
>> 	Capabilities: [100 v1] Advanced Error Reporting
>> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
>> 		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
>> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
>> 	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
>> 		IOVCap:	Migration-, Interrupt Message Number: 000
>> 		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
>> 		IOVSta:	Migration-
>> 		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 03
>> 		VF offset: 0, stride: 1, Device ID: 0712
>> 		Supported Page Size: 00000557, System Page Size: 00000001
>> 		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
>> 		VF Migration: offset: 00000000, BIR: 0
>> 	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
>> 		ARICap:	MFVC- ACS-, Next Function: 0
>> 		ARICtl:	MFVC- ACS-, Function Group: 0
>> 	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
>> 	Capabilities: [12c v1] Transaction Processing Hints
>> 		No steering table available
>> 	Kernel driver in use: be2iscsi
>> 	Kernel modules: be2iscsi
>>
>> Huawei Storage Server: devices id: 03:07.1 03:07.2 03:07.3
>>
>> 03:00.0 Bridge: PLX Technology, Inc. Device 8725 (rev ca)
>> 	Subsystem: PLX Technology, Inc. Device 87b0
>> 	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
>> 	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
>> 	Latency: 0, Cache Line Size: 64 bytes
>> 	Interrupt: pin A routed to IRQ 94
>> 	Region 0: Memory at 94100000 (32-bit, non-prefetchable) [size=256K]
>> 	Region 2: Memory at 180000000000 (64-bit, prefetchable) [size=4T]
>> 	Region 4: Memory at 90000000 (32-bit, non-prefetchable) [size=64M]
>> 	Region 5: Memory at 94000000 (32-bit, non-prefetchable) [size=1M]
>> 	Capabilities: [40] Power Management version 3
>> 		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
>> 		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
>> 	Capabilities: [48] MSI: Enable+ Count=1/8 Maskable+ 64bit+
>> 		Address: 00000000fee00000  Data: 4063
>> 		Masking: 000000fe  Pending: 00000000
>> 	Capabilities: [68] Express (v2) Endpoint, MSI 00
>> 		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
>> 			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
>> 		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
>> 			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
>> 			MaxPayload 256 bytes, MaxReadReq 128 bytes
>> 		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
>> 		LnkCap:	Port #1, Speed 8GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <4us
>> 			ClockPM- Surprise- LLActRep- BwNot-
>> 		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
>> 			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
>> 		LnkSta:	Speed 8GT/s, Width x8, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
>> 		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
>> 		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
>> 		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
>> 			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
>> 			 Compliance De-emphasis: -6dB
>> 		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
>> 			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
>> 	Capabilities: [c8] Vendor Specific Information: Len=00 <?>
>> 	Capabilities: [100 v1] Device Serial Number ca-87-00-10-b5-df-0e-00
>> 	Capabilities: [fb4 v1] Advanced Error Reporting
>> 		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
>> 		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
>> 		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
>> 		AERCap:	First Error Pointer: 1f, GenCap+ CGenEn- ChkCap+ ChkEn-
>> 	Capabilities: [148 v1] Virtual Channel
>> 		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
>> 		Arb:	Fixed- WRR32- WRR64- WRR128-
>> 		Ctrl:	ArbSelect=Fixed
>> 		Status:	InProgress-
>> 		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
>> 			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
>> 			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
>> 			Status:	NegoPending- InProgress-
>> 	Capabilities: [c34 v1] Vendor Specific Information: ID=0003 Rev=0 Len=078 <?>
>> 	Capabilities: [b70 v1] Vendor Specific Information: ID=0001 Rev=0 Len=010 <?>
>>
>> Thanks!
>> Yijing.
>>
>>
>>>
>>> On 2014/8/11 10:54, Yijing Wang wrote:
>>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>>> management. Because iommu will not create the DMA mapping for these devices,
>>>> the DMA read/write will be blocked by iommu hardware.
>>>>
>>>> Eg.
>>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>>              +-01.0-[11]--
>>>> 			 +-01.1-[02]--
>>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         +-02.1-[12]--
>>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>>
>>>> [ 1438.477262] DRHD: handling fault status reg 402
>>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>
>>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>>> ---
>>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>>
>>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>>> index 345c99c..5e3a2d8 100644
>>>> --- a/arch/x86/include/asm/iommu.h
>>>> +++ b/arch/x86/include/asm/iommu.h
>>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>>  extern int force_iommu, no_iommu;
>>>>  extern int iommu_detected;
>>>>  extern int iommu_pass_through;
>>>> +extern int iommu_pt_force_bus;
>>>> +extern int iommu_pt_force_domain;
>>>>  
>>>>  /* 10 seconds */
>>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>>> index a25e202..bf21d97 100644
>>>> --- a/arch/x86/kernel/pci-dma.c
>>>> +++ b/arch/x86/kernel/pci-dma.c
>>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>>   * guests and not for driver dma translation.
>>>>   */
>>>>  int iommu_pass_through __read_mostly;
>>>> +int iommu_pt_force_bus = -1;
>>>> +int iommu_pt_force_domain = -1;
>>>>  
>>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>>  
>>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>>   */
>>>>  static __init int iommu_setup(char *p)
>>>>  {
>>>> +	char *end;
>>>>  	iommu_merge = 1;
>>>>  
>>>>  	if (!p)
>>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>>  #endif
>>>>  		if (!strncmp(p, "pt", 2))
>>>>  			iommu_pass_through = 1;
>>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>>> +			iommu_pass_through = 1;
>>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>>> +		}
>>>>  
>>>>  		gart_parse_options(p);
>>>>  
>>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>>> index d1f5caa..49757f1 100644
>>>> --- a/drivers/iommu/intel-iommu.c
>>>> +++ b/drivers/iommu/intel-iommu.c
>>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>>  				return ret;
>>>>  		}
>>>>  
>>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>>> +	 * driver management, so we should create the pt mapping for these
>>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>>> +	 * force to do pt context mapping in the bus number.
>>>> +	 */
>>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>>> +		int found = 0;
>>>> +
>>>> +		iommu = NULL;
>>>> +		for_each_active_iommu(iommu, drhd) {
>>>> +			if (iommu_pt_force_domain != drhd->segment)
>>>> +				continue;
>>>> +
>>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>>> +				if (!dev_is_pci(dev))
>>>> +					continue;
>>>> +
>>>> +				pdev = to_pci_dev(dev);
>>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>>> +						(pdev->subordinate
>>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>>> +					found = 1;
>>>> +					break;
>>>> +				}
>>>> +			}
>>>> +
>>>> +			if (drhd->include_all) {
>>>> +				found = 1;
>>>> +				break;
>>>> +			}
>>>> +		}
>>>> +
>>>> +		if (found && iommu)
>>>> +			for (i = 0; i < 256; i++)
>>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>>> +						CONTEXT_TT_MULTI_LEVEL);
>>>> +	}
>>>> +
>>>>  	return 0;
>>>>  }
>>>>  
>>>>
>>>
>>> .
>>>
>>
>>
> 
> .
> 


-- 
Thanks!
Yijing

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: messages --]
[-- Type: text/plain; charset="gb18030"; name="messages", Size: 1231358 bytes --]

[2014-07-17 23:43:32]syslog-ng starting up; version='2.0.9'
[2014-07-17 23:43:32][    0.000000] Initializing cgroup subsys cpuset
[2014-07-17 23:43:32][    0.000000] Initializing cgroup subsys cpu
[2014-07-17 23:43:32][    0.000000] Linux version 3.4.24.15-0.11-default (root@linux) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #14 SMP Thu Jul 17 15:35:22 CST 2014
[2014-07-17 23:43:32][    0.000000] Command line: user_root=tmpfs,1G rw console=tty0 console=ttyS0,115200 elevator=noop showopts pci=hpiosize=0,hpmemsize=0 ide=nodma apic acpi_wake_gpes_always_on no_8508 os_only mce vos_reserve_size=128M pbs_size=128M loglevel=8 log_nvram_redirect=on oops=panic cache_auto_enable=1 RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] cmd_str=vos_reserve_size=128M pbs_size=128M loglevel=8 log_nvram_redirect=on oops=panic cache_auto_enable=1 RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] cmd_str=128M
[2014-07-17 23:43:32][    0.000000] ulsize = 8000000
[2014-07-17 23:43:32][    0.000000] parse result return 8000000
[2014-07-17 23:43:32][    0.000000] cmd_str=pbs_size=128M loglevel=8 log_nvram_redirect=on oops=panic cache_auto_enable=1 RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] cmd_str=128M
[2014-07-17 23:43:32][    0.000000] ulsize = 8000000
[2014-07-17 23:43:32][    0.000000] parse result return 8000000
[2014-07-17 23:43:32][    0.000000] cmd_str=cache_auto_enable=1 RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] cmd_str=1
[2014-07-17 23:43:32][    0.000000] ulsize = 1
[2014-07-17 23:43:32][    0.000000] parse result return 1
[2014-07-17 23:43:32][    0.000000] cmd_str=RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] cmd_str=32
[2014-07-17 23:43:32][    0.000000] ulsize = 20
[2014-07-17 23:43:32][    0.000000] parse result return 20
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/chargen [file=/etc/xinetd.conf] [line=27]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/chargen-udp [file=/etc/xinetd.d/chargen-udp] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/daytime [file=/etc/xinetd.d/daytime] [line=15]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/daytime-udp [file=/etc/xinetd.d/daytime-udp] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/discard [file=/etc/xinetd.d/discard] [line=15]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/discard-udp [file=/etc/xinetd.d/discard-udp] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/echo [file=/etc/xinetd.d/echo] [line=15]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/echo-udp [file=/etc/xinetd.d/echo-udp] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/netstat [file=/etc/xinetd.d/netstat] [line=15]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/rsync [file=/etc/xinetd.d/rsync] [line=16]
[2014-07-17 23:43:32][    0.000000] System has round about 25743182848 bytes memory.
[2014-07-17 23:43:32][    0.000000] BIOS-provided physical RAM map:
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 0000000000000000 - 000000000009cc00 (usable)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000000009cc00 - 00000000000a0000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 0000000000100000 - 000000006a6ff000 (usable)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000006a6ff000 - 00000000726ff000 (pbs)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000726ff000 - 000000007a6ff000 (vos memory)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007a6ff000 - 000000007aaff000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007aaff000 - 000000007aeff000 (ACPI NVS)
[2014-07-17 23:43:32]Server /usr/sbin/rsyncd is not executable [file=/etc/xinetd.d/rsync] [line=9]
[2014-07-17 23:43:32]Error parsing attribute server - DISABLING SERVICE [file=/etc/xinetd.d/rsync] [line=9]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/servers [file=/etc/xinetd.d/servers] [line=12]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/services [file=/etc/xinetd.d/services] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/systat [file=/etc/xinetd.d/systat] [line=14]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/tftp [file=/etc/xinetd.d/tftp] [line=17]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/time [file=/etc/xinetd.d/time] [line=20]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/time-udp [file=/etc/xinetd.d/time-udp] [line=15]
[2014-07-17 23:43:32]Reading included configuration file: /etc/xinetd.d/vsftpd [file=/etc/xinetd.d/vsftpd] [line=15]
[2014-07-17 23:43:32]xinetd Version 2.3.14 started with libwrap loadavg options compiled in.
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007aeff000 - 000000007afff000 (ACPI data)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007afff000 - 000000007b000000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007b000000 - 000000007f000000 (os nvram)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000007f000000 - 0000000090000000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000feb00000 - 00000000feb04000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000fed18000 - 00000000fed19000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved)
[2014-07-17 23:43:32]Started working: 1 available service
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 0000000100000000 - 000000012c000000 (usable)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 000000012c000000 - 0000000680000000 (cache)
[2014-07-17 23:43:32][    0.000000]  BIOS-e820: 0000180000000000 - 00001c0000000000 (mirror memory)
[2014-07-17 23:43:32][    0.000000] NX (Execute Disable) protection: active
[2014-07-17 23:43:32][    0.000000] SMBIOS 2.7 present.
[2014-07-17 23:43:32][    0.000000] DMI: Huawei Technologies Co., Ltd. Romley/STL2SPCA., BIOS V100R006C06 02/25/2014
[2014-07-17 23:43:32][    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[2014-07-17 23:43:32][    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[2014-07-17 23:43:32][    0.000000] No AGP bridge found
[2014-07-17 23:43:32][    0.000000] last_pfn = 0x1c0000000 max_arch_pfn = 0x400000000
[2014-07-17 23:43:32][    0.000000] MTRR default type: uncachable
[2014-07-17 23:43:32][    0.000000] MTRR fixed ranges enabled:
[2014-07-17 23:43:32][    0.000000]   00000-9FFFF write-back
[2014-07-17 23:43:32][    0.000000]   A0000-BFFFF uncachable
[2014-07-17 23:43:32][    0.000000]   C0000-EFFFF write-protect
[2014-07-17 23:43:32][    0.000000]   F0000-FFFFF write-combining
[2014-07-17 23:43:32][    0.000000] MTRR variable ranges enabled:
[2014-07-17 23:43:32][    0.000000]   0 base 000000000000 mask 3FFFC0000000 write-back
[2014-07-17 23:43:32][    0.000000]   1 base 0000FFC00000 mask 3FFFFFC00000 write-protect
[2014-07-17 23:43:32][    0.000000]   2 base 000040000000 mask 3FFFC0000000 write-back
[2014-07-17 23:43:32][    0.000000]   3 disabled
[2014-07-17 23:43:32][    0.000000]   4 base 000100000000 mask 3FFF00000000 write-back
[2014-07-17 23:43:32][    0.000000]   5 base 000200000000 mask 3FFE00000000 write-back
[2014-07-17 23:43:32][    0.000000]   6 base 000400000000 mask 3FFC00000000 write-back
[2014-07-17 23:43:32][    0.000000]   7 base 000680000000 mask 3FFF80000000 uncachable
[2014-07-17 23:43:32][    0.000000]   8 base 000700000000 mask 3FFF00000000 uncachable
[2014-07-17 23:43:32][    0.000000]   9 disabled
[2014-07-17 23:43:32][    0.000000] last_pfn = 0x7f000 max_arch_pfn = 0x400000000
[2014-07-17 23:43:32][    0.000000] found SMP MP-table at [ffff8800000fe1b0] fe1b0
[2014-07-17 23:43:32][    0.000000] initial memory mapped : 0 - 20000000
[2014-07-17 23:43:32][    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 20480
[2014-07-17 23:43:32][    0.000000] Using GB pages for direct mapping
[2014-07-17 23:43:32][    0.000000] init_memory_mapping: 0000000000000000-000000007f000000
[2014-07-17 23:43:32][    0.000000]  0000000000 - 0040000000 page 1G
[2014-07-17 23:43:32][    0.000000]  0040000000 - 007f000000 page 2M
[2014-07-17 23:43:32][    0.000000] kernel direct mapping tables up to 0x7effffff @ [mem 0x1fffe000-0x1fffffff]
[2014-07-17 23:43:32][    0.000000] max_pfn_mapped=520192l
[2014-07-17 23:43:32][    0.000000] max_low_pfn=520192l
[2014-07-17 23:43:32][    0.000000] init_memory_mapping: 0000000100000000-0000000680000000
[2014-07-17 23:43:32][    0.000000]  0100000000 - 0680000000 page 1G
[2014-07-17 23:43:32][    0.000000] kernel direct mapping tables up to 0x67fffffff @ [mem 0x6a6fe000-0x6a6fefff]
[2014-07-17 23:43:32][    0.000000] max_pfn_mapped=6815744l
[2014-07-17 23:43:32][    0.000000] init_memory_mapping: 0000000100000000-00001c0000000000
[2014-07-17 23:43:32][    0.000000]  0100000000 - 1c0000000000 page 1G
[2014-07-17 23:43:32][    0.000000] kernel direct mapping tables up to 0x1bffffffffff @ [mem 0x12bfc7000-0x12bffffff]
[2014-07-17 23:43:32][    0.000000] max_pfn_mapped=3221225472l
[2014-07-17 23:43:32][    0.000000] RAMDISK: 2f20a000 - 37ff0000
[2014-07-17 23:43:32][    0.000000] Reserving 144MB of memory at 608MB for crashkernel (System RAM: 24550MB)
[2014-07-17 23:43:32][    0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 INSYDE)
[2014-07-17 23:43:32][    0.000000] ACPI: XSDT 000000007affe170 000AC (v01 INSYDE Romley   00000001      01000013)
[2014-07-17 23:43:32][    0.000000] ACPI: FACP 000000007affb000 0010C (v05 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: DSDT 000000007afeb000 0B9A1 (v01 INSYDE Romley   00000000 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: FACS 000000007adde000 00040
[2014-07-17 23:43:32][    0.000000] ACPI: UEFI 000000007affd000 00236 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: BOOT 000000007affc000 00028 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: APIC 000000007aff9000 0042A (v03 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: MCFG 000000007aff8000 0003C (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: SLIC 000000007aff7000 00176 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: BDAT 000000007afea000 00030 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: PRAD 000000007afe9000 000BC (v02 PRADID  PRADTID 00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: FPDT 000000007afe7000 00044 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: SSDT 000000007af12000 D3050 (v02 INSYDE Romley   00004000 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: HPET 000000007affa000 00038 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: WDAT 000000007af11000 00194 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: DMAR 000000007af10000 00080 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: HEST 000000007af0f000 000A8 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: ERST 000000007af0e000 00230 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: BERT 000000007af0d000 00030 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: EINJ 000000007af0c000 00130 (v01 INSYDE Romley   00000001 ACPI 00040000)
[2014-07-17 23:43:32][    0.000000] ACPI: Local APIC address 0xfee00000
[2014-07-17 23:43:32][    0.000000] No NUMA configuration found
[2014-07-17 23:43:32][    0.000000] Faking a node at 0000000000000000-00001c0000000000
[2014-07-17 23:43:32][    0.000000] Initmem setup node 0 0000000000000000-00001c0000000000
[2014-07-17 23:43:32][    0.000000]   NODE_DATA [mem 0x12bfc3000-0x12bfc6fff]
[2014-07-17 23:43:32][    0.000000]  [ffffea0000000000-ffffea0016bfffff] PMD -> [ffff880113600000-ffff8801285fffff] on node 0
[2014-07-17 23:43:32][    0.000000] Zone PFN ranges:
[2014-07-17 23:43:32][    0.000000]   DMA      0x00000010 -> 0x00001000
[2014-07-17 23:43:32][    0.000000]   DMA32    0x00001000 -> 0x00100000
[2014-07-17 23:43:32][    0.000000]   Normal   0x00100000 -> 0x1c0000000
[2014-07-17 23:43:32][    0.000000] Movable zone start PFN for each node
[2014-07-17 23:43:32][    0.000000] Early memory PFN ranges
[2014-07-17 23:43:32][    0.000000]     0: 0x00000010 -> 0x0000009c
[2014-07-17 23:43:32][    0.000000]     0: 0x00000100 -> 0x0007a6ff
[2014-07-17 23:43:32][    0.000000]     0: 0x0007b000 -> 0x0007f000
[2014-07-17 23:43:32][    0.000000]     0: 0x00100000 -> 0x00680000
[2014-07-17 23:43:32][    0.000000] On node 0 totalpages: 6284939
[2014-07-17 23:43:32][    0.000000]   DMA zone: 56 pages used for memmap
[2014-07-17 23:43:32][    0.000000]   DMA zone: 5 pages reserved
[2014-07-17 23:43:32][    0.000000]   DMA zone: 3919 pages, LIFO batch:0
[2014-07-17 23:43:32][    0.000000]   DMA32 zone: 14280 pages used for memmap
[2014-07-17 23:43:32][    0.000000]   DMA32 zone: 499511 pages, LIFO batch:31
[2014-07-17 23:43:32][    0.000000]   Normal zone: 78848 pages used for memmap
[2014-07-17 23:43:32][    0.000000]   Normal zone: 5688320 pages, LIFO batch:31
[2014-07-17 23:43:32][    0.000000] ACPI: PM-Timer IO Port: 0x408
[2014-07-17 23:43:32][    0.000000] ACPI: Local APIC address 0xfee00000
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x08] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x0a] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x01] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x07] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x3f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x40] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x41] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x42] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x43] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x44] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x45] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x46] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x47] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x48] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x49] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x4f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x50] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x51] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x52] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x53] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x54] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x55] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x56] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x57] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x58] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x59] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x5f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x60] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x61] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x62] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x63] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x64] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x65] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x66] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x67] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x68] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x69] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6a] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6b] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6c] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6d] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6e] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x6f] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x70] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x71] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x72] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x73] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x74] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x75] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x76] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC (acpi_id[0x77] lapic_id[0xff] disabled)
[2014-07-17 23:43:32][    0.000000] ACPI: X2APIC_NMI (uid[0xffffffff] high edge lint[0x1])
[2014-07-17 23:43:32][    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[2014-07-17 23:43:32][    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[2014-07-17 23:43:32][    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[2014-07-17 23:43:32][    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[2014-07-17 23:43:32][    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[2014-07-17 23:43:32][    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[2014-07-17 23:43:32][    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[2014-07-17 23:43:32][    0.000000] ACPI: IRQ0 used by override.
[2014-07-17 23:43:32][    0.000000] ACPI: IRQ2 used by override.
[2014-07-17 23:43:32][    0.000000] ACPI: IRQ9 used by override.
[2014-07-17 23:43:32][    0.000000] Using ACPI (MADT) for SMP configuration information
[2014-07-17 23:43:32][    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[2014-07-17 23:43:32][    0.000000] 120 Processors exceeds NR_CPUS limit of 64
[2014-07-17 23:43:32][    0.000000] SMP: Allowing 64 CPUs, 52 hotplug CPUs
[2014-07-17 23:43:32][    0.000000] nr_irqs_gsi: 64
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000006a6ff000 - 00000000726ff000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000726ff000 - 000000007a6ff000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007a6ff000 - 000000007aaff000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007aaff000 - 000000007aeff000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007aeff000 - 000000007afff000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007afff000 - 000000007b000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007b000000 - 000000007f000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000007f000000 - 0000000090000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 0000000090000000 - 00000000feb00000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed18000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed19000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fed19000 - 00000000fed1c000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed90000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fee00000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffc00000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 000000012c000000 - 0000000680000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 0000000680000000 - 0000180000000000
[2014-07-17 23:43:32][    0.000000] PM: Registered nosave memory: 0000180000000000 - 00001c0000000000
[2014-07-17 23:43:32][    0.000000] Allocating PCI resources starting at 90000000 (gap: 90000000:6eb00000)
[2014-07-17 23:43:32][    0.000000] Booting paravirtualized kernel on bare hardware
[2014-07-17 23:43:32][    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:64 nr_node_ids:1
[2014-07-17 23:43:32][    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88012ae00000 s92032 r8192 d22656 u131072
[2014-07-17 23:43:32][    0.000000] pcpu-alloc: s92032 r8192 d22656 u131072 alloc=1*2097152
[2014-07-17 23:43:32][    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 
[2014-07-17 23:43:32][    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 
[2014-07-17 23:43:32][    0.000000] pcpu-alloc: [0] 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 
[2014-07-17 23:43:32][    0.000000] pcpu-alloc: [0] 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 
[2014-07-17 23:43:32][    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 6191750
[2014-07-17 23:43:32][    0.000000] Policy zone: Normal
[2014-07-17 23:43:32][    0.000000] Kernel command line: user_root=tmpfs,1G rw console=tty0 console=ttyS0,115200 elevator=noop showopts pci=hpiosize=0,hpmemsize=0 ide=nodma apic acpi_wake_gpes_always_on no_8508 os_only mce vos_reserve_size=128M pbs_size=128M loglevel=8 log_nvram_redirect=on oops=panic cache_auto_enable=1 RATIO=32 crashkernel=256M-:144M nohz=off intel_iommu=on iommu=pt
[2014-07-17 23:43:32][    0.000000] the nvram zone init start!
[2014-07-17 23:43:32][    0.000000] end  *g_pullLogStart = 2487728, *g_pullLogEnd = 2510222, *g_pullConStart = 2510222
[2014-07-17 23:43:32][    0.000000] end: log_buf_len = 4194304, new_log_buf = ffff88007b001000, old_log_buf = ffffffff819740e0
[2014-07-17 23:43:32][    0.000000] end: log start = 2487728, log end = 2510433, con start = 2510222
[2014-07-17 23:43:32][    0.000000]  
[2014-07-17 23:43:32][    0.000000] Intel-IOMMU: enabled
[2014-07-17 23:43:32][    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[2014-07-17 23:43:32][    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[2014-07-17 23:43:32][    0.000000] Checking aperture...
[2014-07-17 23:43:32][    0.000000] No AGP bridge found
[2014-07-17 23:43:32][    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[2014-07-17 23:43:32][    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[2014-07-17 23:43:32][    0.000000] Memory: 1742700k/30064771072k available (4539k kernel code, 30039631316k absent, 23397056k reserved, 4197k data, 684k init)
[2014-07-17 23:43:32][    0.000000] Hierarchical RCU implementation.
[2014-07-17 23:43:32][    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[2014-07-17 23:43:32][    0.000000] NR_IRQS:4352 nr_irqs:1600 16
[2014-07-17 23:43:32][    0.000000] Console: colour dummy device 80x25
[2014-07-17 23:43:32][    0.000000] console [tty0] enabled
[2014-07-17 23:43:32][    0.000000] console [ttyS0] enabled
[2014-07-17 23:43:32][    0.000000] allocated 100663296 bytes of page_cgroup
[2014-07-17 23:43:32][    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[2014-07-17 23:43:32][    0.000000] hpet clockevent registered
[2014-07-17 23:43:32][    0.000000] Fast TSC calibration using PIT
[2014-07-17 23:43:32][    0.004000] Detected 2100.090 MHz processor.
[2014-07-17 23:43:32][    0.000008] Calibrating delay loop (skipped), value calculated using timer frequency.. 4200.18 BogoMIPS (lpj=8400360)
[2014-07-17 23:43:32][    0.010579] pid_max: default: 65536 minimum: 512
[2014-07-17 23:43:32][    0.015766] startaddr[0]=ffff88010ec00000 -- ffff88010f000000
[2014-07-17 23:43:32][    0.026146] startaddr[1]=ffff88010e800000 -- ffff88010ec00000
[2014-07-17 23:43:32][    0.033139] startaddr[2]=ffff88010e400000 -- ffff88010e800000
[2014-07-17 23:43:32][    0.040134] startaddr[3]=ffff88010e000000 -- ffff88010e400000
[2014-07-17 23:43:32][    0.047141] startaddr[4]=ffff88010dc00000 -- ffff88010e000000
[2014-07-17 23:43:32][    0.054160] startaddr[5]=ffff88010d800000 -- ffff88010dc00000
[2014-07-17 23:43:32][    0.061179] startaddr[6]=ffff88010d400000 -- ffff88010d800000
[2014-07-17 23:43:32][    0.068192] startaddr[7]=ffff88010d000000 -- ffff88010d400000
[2014-07-17 23:43:32][    0.074742] Security Framework initialized
[2014-07-17 23:43:32][    0.078828] SELinux:  Disabled at boot.
[2014-07-17 23:43:32][    0.082646] AppArmor: AppArmor disabled by boot time parameter
[2014-07-17 23:43:32][    0.090564] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[2014-07-17 23:43:32][    0.105265] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[2014-07-17 23:43:32][    0.115670] Mount-cache hash table entries: 256
[2014-07-17 23:43:32][    0.120296] tmpfs: the ram pages of tmpfs is 262144
[2014-07-17 23:43:32][    0.125307] Initializing cgroup subsys cpuacct
[2014-07-17 23:43:32][    0.129730] Initializing cgroup subsys memory
[2014-07-17 23:43:32][    0.134078] Initializing cgroup subsys devices
[2014-07-17 23:43:32][    0.138499] Initializing cgroup subsys freezer
[2014-07-17 23:43:32][    0.142921] Initializing cgroup subsys net_cls
[2014-07-17 23:43:32][    0.147341] Initializing cgroup subsys blkio
[2014-07-17 23:43:32][    0.151594] Initializing cgroup subsys perf_event
[2014-07-17 23:43:32][    0.156309] CPU: Physical Processor ID: 0
[2014-07-17 23:43:32][    0.160299] CPU: Processor Core ID: 0
[2014-07-17 23:43:32][    0.164937] mce: CPU supports 23 MCE banks
[2014-07-17 23:43:32][    0.169055] CPU0: Thermal monitoring enabled (TM1)
[2014-07-17 23:43:32][    0.173853] using mwait in idle threads.
[2014-07-17 23:43:32][    0.178676] ACPI: Core revision 20120320
[2014-07-17 23:43:32][    0.236162] DMAR: Host address width 46
[2014-07-17 23:43:32][    0.239984] DMAR: DRHD base: 0x000000fbffc000 flags: 0x1
[2014-07-17 23:43:32][    0.245279] IOMMU 0: reg_base_addr fbffc000 ver 1:0 cap d2078c106f0466 ecap f020de
[2014-07-17 23:43:32][    0.252808] DMAR: RMRR base: 0x0000007aa9f000 end: 0x0000007aaa2fff
[2014-07-17 23:43:32][    0.259182] Switched APIC routing to physical flat.
[2014-07-17 23:43:32][    0.264552] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[2014-07-17 23:43:32][    0.310155] CPU0: Intel(R) Xeon(R) CPU E5-2620 v2 @ 2.10GHz stepping 04
[2014-07-17 23:43:32][    0.423981] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[2014-07-17 23:43:32][    0.432417] ... version:                3
[2014-07-17 23:43:32][    0.436401] ... bit width:              48
[2014-07-17 23:43:32][    0.440470] ... generic registers:      4
[2014-07-17 23:43:32][    0.444452] ... value mask:             0000ffffffffffff
[2014-07-17 23:43:32][    0.449730] ... max period:             000000007fffffff
[2014-07-17 23:43:32][    0.455009] ... fixed-purpose events:   3
[2014-07-17 23:43:32][    0.458991] ... event mask:             000000070000000f
[2014-07-17 23:43:32][    0.471657] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.477405] Booting Node   0, Processors  #1
[2014-07-17 23:43:32][    0.496345] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.502280]  #2
[2014-07-17 23:43:32][    0.518083] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.524021]  #3
[2014-07-17 23:43:32][    0.539721] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.545660]  #4
[2014-07-17 23:43:32][    0.561367] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.567301]  #5
[2014-07-17 23:43:32][    0.582918] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.588851]  #6
[2014-07-17 23:43:32][    0.604605] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.610586]  #7
[2014-07-17 23:43:32][    0.626290] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.632234]  #8
[2014-07-17 23:43:32][    0.648038] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.653973]  #9
[2014-07-17 23:43:32][    0.669581] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.675516]  #10
[2014-07-17 23:43:32][    0.691306] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.697248]  #11
[2014-07-17 23:43:32][    0.713038] NMI watchdog: enabled, takes one hw-pmu counter.
[2014-07-17 23:43:32][    0.718880] Brought up 12 CPUs
[2014-07-17 23:43:32][    0.721917] Total of 12 processors activated (50402.16 BogoMIPS).
[2014-07-17 23:43:32][    0.748413] devtmpfs: initialized
[2014-07-17 23:43:32][    0.751990] PM: Registering ACPI NVS region [mem 0x7aaff000-0x7aefefff] (4194304 bytes)
[2014-07-17 23:43:32][    0.760206] dummy: 
[2014-07-17 23:43:32][    0.762304] init frozen_cpus for cpu up down sucessfull
[2014-07-17 23:43:32][    0.767519] RTC time: 15:42:27, date: 07/17/14
[2014-07-17 23:43:32][    0.772025] NET: Registered protocol family 16
[2014-07-17 23:43:32][    0.776685] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[2014-07-17 23:43:32][    0.784210] ACPI: bus type pci registered
[2014-07-17 23:43:32][    0.788289] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[2014-07-17 23:43:32][    0.797540] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
[2014-07-17 23:43:32][    0.831417] PCI: Using configuration type 1 for base access
[2014-07-17 23:43:32][    0.837985] bio: create slab <bio-0> at 0
[2014-07-17 23:43:32][    0.842135] ACPI: Added _OSI(Module Device)
[2014-07-17 23:43:32][    0.846294] ACPI: Added _OSI(Processor Device)
[2014-07-17 23:43:32][    0.850711] ACPI: Added _OSI(3.0 _SCP Extensions)
[2014-07-17 23:43:32][    0.855386] ACPI: Added _OSI(Processor Aggregator Device)
[2014-07-17 23:43:32][    0.873837] ACPI: EC: Look up EC in DSDT
[2014-07-17 23:43:32][    0.891036] ACPI: Executed 1 blocks of module-level executable AML code
[2014-07-17 23:43:32][    1.113527] ACPI: Dynamic OEM Table Load:
[2014-07-17 23:43:32][    1.117535] ACPI: PRAD           (null) 000BC (v02 PRADID  PRADTID 00000001 ACPI 00040000)
[2014-07-17 23:43:32][    1.141753] ACPI: Interpreter enabled
[2014-07-17 23:43:32][    1.145399] ACPI: (supports S0 S1 S3 S4 S5)
[2014-07-17 23:43:32][    1.149634] ACPI: Using IOAPIC for interrupt routing
[2014-07-17 23:43:32][    1.168348] ACPI: No dock devices found.
[2014-07-17 23:43:32][    1.172262] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[2014-07-17 23:43:32][    1.182447] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[2014-07-17 23:43:32][    1.190272] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
[2014-07-17 23:43:32][    1.196853] pci_root PNP0A08:00: host bridge window [io  0x1000-0xffff]
[2014-07-17 23:43:32][    1.203432] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[2014-07-17 23:43:32][    1.210703] pci_root PNP0A08:00: host bridge window [mem 0x90000000-0xfbffefff]
[2014-07-17 23:43:32][    1.217973] pci_root PNP0A08:00: host bridge window [mem 0x180000000000-0x1fffffffffff]
[2014-07-17 23:43:32][    1.225996] PCI host bridge to bus 0000:00
[2014-07-17 23:43:32][    1.230071] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[2014-07-17 23:43:32][    1.236217] pci_bus 0000:00: root bus resource [io  0x1000-0xffff]
[2014-07-17 23:43:32][    1.242362] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[2014-07-17 23:43:32][    1.249199] pci_bus 0000:00: root bus resource [mem 0x90000000-0xfbffefff]
[2014-07-17 23:43:32][    1.256035] pci_bus 0000:00: root bus resource [mem 0x180000000000-0x1fffffffffff]
[2014-07-17 23:43:32][    1.263578] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[2014-07-17 23:43:32][    1.269633] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.275730] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[2014-07-17 23:43:32][    1.281793] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.287900] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[2014-07-17 23:43:32][    1.293966] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.300066] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[2014-07-17 23:43:32][    1.306130] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.312231] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[2014-07-17 23:43:32][    1.318288] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.324387] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[2014-07-17 23:43:32][    1.330452] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.336553] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[2014-07-17 23:43:32][    1.342546] pci 0000:00:04.0: reg 10: [mem 0x98500000-0x98503fff 64bit]
[2014-07-17 23:43:32][    1.349236] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[2014-07-17 23:43:32][    1.355226] pci 0000:00:04.1: reg 10: [mem 0x98504000-0x98507fff 64bit]
[2014-07-17 23:43:32][    1.361917] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[2014-07-17 23:43:32][    1.367907] pci 0000:00:04.2: reg 10: [mem 0x98508000-0x9850bfff 64bit]
[2014-07-17 23:43:32][    1.374597] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[2014-07-17 23:43:32][    1.380586] pci 0000:00:04.3: reg 10: [mem 0x9850c000-0x9850ffff 64bit]
[2014-07-17 23:43:32][    1.387278] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[2014-07-17 23:43:32][    1.393267] pci 0000:00:04.4: reg 10: [mem 0x98510000-0x98513fff 64bit]
[2014-07-17 23:43:32][    1.399958] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[2014-07-17 23:43:32][    1.405949] pci 0000:00:04.5: reg 10: [mem 0x98514000-0x98517fff 64bit]
[2014-07-17 23:43:32][    1.412640] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[2014-07-17 23:43:32][    1.418630] pci 0000:00:04.6: reg 10: [mem 0x98518000-0x9851bfff 64bit]
[2014-07-17 23:43:32][    1.425324] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[2014-07-17 23:43:32][    1.431313] pci 0000:00:04.7: reg 10: [mem 0x9851c000-0x9851ffff 64bit]
[2014-07-17 23:43:32][    1.438000] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[2014-07-17 23:43:32][    1.444082] pci 0000:00:05.1: [8086:0e29] type 00 class 0x088000
[2014-07-17 23:43:32][    1.450180] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[2014-07-17 23:43:32][    1.456260] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[2014-07-17 23:43:32][    1.462243] pci 0000:00:05.4: reg 10: [mem 0x98527000-0x98527fff]
[2014-07-17 23:43:32][    1.468429] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[2014-07-17 23:43:32][    1.474522] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.480642] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[2014-07-17 23:43:32][    1.486994] pci 0000:00:1a.0: reg 10: [mem 0x98526000-0x985263ff]
[2014-07-17 23:43:32][    1.495130] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.501224] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[2014-07-17 23:43:32][    1.507303] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.513399] pci 0000:00:1c.1: [8086:1d12] type 01 class 0x060400
[2014-07-17 23:43:32][    1.519476] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.525568] pci 0000:00:1c.2: [8086:1d14] type 01 class 0x060400
[2014-07-17 23:43:32][    1.531644] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.537750] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[2014-07-17 23:43:32][    1.544089] pci 0000:00:1d.0: reg 10: [mem 0x98525000-0x985253ff]
[2014-07-17 23:43:32][    1.552224] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.558313] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[2014-07-17 23:43:32][    1.564371] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[2014-07-17 23:43:32][    1.570502] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[2014-07-17 23:43:32][    1.576499] pci 0000:00:1f.2: reg 10: [io  0x6048-0x604f]
[2014-07-17 23:43:32][    1.581877] pci 0000:00:1f.2: reg 14: [io  0x6054-0x6057]
[2014-07-17 23:43:32][    1.587259] pci 0000:00:1f.2: reg 18: [io  0x6040-0x6047]
[2014-07-17 23:43:32][    1.592636] pci 0000:00:1f.2: reg 1c: [io  0x6050-0x6053]
[2014-07-17 23:43:32][    1.598014] pci 0000:00:1f.2: reg 20: [io  0x6020-0x603f]
[2014-07-17 23:43:32][    1.603390] pci 0000:00:1f.2: reg 24: [mem 0x98524000-0x985247ff]
[2014-07-17 23:43:32][    1.609511] pci 0000:00:1f.2: PME# supported from D3hot
[2014-07-17 23:43:32][    1.614733] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[2014-07-17 23:43:32][    1.620725] pci 0000:00:1f.3: reg 10: [mem 0x98522000-0x985220ff 64bit]
[2014-07-17 23:43:32][    1.627327] pci 0000:00:1f.3: reg 20: [io  0x6000-0x601f]
[2014-07-17 23:43:32][    1.632802] pci 0000:01:00.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.638788] pci 0000:01:00.0: reg 10: [mem 0x94200000-0x9423ffff]
[2014-07-17 23:43:32][    1.644913] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.651019] pci 0000:01:00.1: [10b5:87d0] type 00 class 0x088000
[2014-07-17 23:43:32][    1.657003] pci 0000:01:00.1: reg 10: [mem 0x94246000-0x94247fff]
[2014-07-17 23:43:32][    1.663172] pci 0000:01:00.2: [10b5:87d0] type 00 class 0x088000
[2014-07-17 23:43:32][    1.669153] pci 0000:01:00.2: reg 10: [mem 0x94244000-0x94245fff]
[2014-07-17 23:43:32][    1.675320] pci 0000:01:00.3: [10b5:87d0] type 00 class 0x088000
[2014-07-17 23:43:32][    1.681304] pci 0000:01:00.3: reg 10: [mem 0x94242000-0x94243fff]
[2014-07-17 23:43:32][    1.687470] pci 0000:01:00.4: [10b5:87d0] type 00 class 0x088000
[2014-07-17 23:43:32][    1.693453] pci 0000:01:00.4: reg 10: [mem 0x94240000-0x94241fff]
[2014-07-17 23:43:32][    1.708519] pci 0000:00:01.0: PCI bridge to [bus 01-09]
[2014-07-17 23:43:32][    1.713724] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x942fffff]
[2014-07-17 23:43:32][    1.720481] pci 0000:00:01.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    1.728936] pci 0000:02:01.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.734986] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.741091] pci 0000:02:08.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.747141] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.753240] pci 0000:02:09.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.759289] pci 0000:02:09.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.765386] pci 0000:02:0a.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.771437] pci 0000:02:0a.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.777534] pci 0000:02:0b.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.783585] pci 0000:02:0b.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.789684] pci 0000:02:0c.0: [10b5:8725] type 01 class 0x060400
[2014-07-17 23:43:32][    1.795734] pci 0000:02:0c.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.801837] pci 0000:01:00.0: PCI bridge to [bus 02-08]
[2014-07-17 23:43:32][    1.807039] pci 0000:01:00.0:   bridge window [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    1.813794] pci 0000:01:00.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    1.822243] pci 0000:03:00.0: [10b5:8725] type 00 class 0x068000
[2014-07-17 23:43:32][    1.828226] pci 0000:03:00.0: reg 10: [mem 0x94100000-0x9413ffff]
[2014-07-17 23:43:32][    1.834305] pci 0000:03:00.0: reg 18: [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    1.842013] pci 0000:03:00.0: reg 20: [mem 0x90000000-0x93ffffff]
[2014-07-17 23:43:32][    1.848081] pci 0000:03:00.0: reg 24: [mem 0x94000000-0x940fffff]
[2014-07-17 23:43:32][    1.854228] pci 0000:02:01.0: PCI bridge to [bus 03-03]
[2014-07-17 23:43:32][    1.859432] pci 0000:02:01.0:   bridge window [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    1.866185] pci 0000:02:01.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    1.874626] pci 0000:02:08.0: PCI bridge to [bus 04-04]
[2014-07-17 23:43:32][    1.879878] pci 0000:02:09.0: PCI bridge to [bus 05-05]
[2014-07-17 23:43:32][    1.885130] pci 0000:02:0a.0: PCI bridge to [bus 06-06]
[2014-07-17 23:43:32][    1.890385] pci 0000:02:0b.0: PCI bridge to [bus 07-07]
[2014-07-17 23:43:32][    1.895640] pci 0000:02:0c.0: PCI bridge to [bus 08-08]
[2014-07-17 23:43:32][    1.900951] pci 0000:0a:00.0: [11f8:8072] type 00 class 0x010700
[2014-07-17 23:43:32][    1.906938] pci 0000:0a:00.0: reg 10: [mem 0x98400000-0x9840ffff 64bit]
[2014-07-17 23:43:32][    1.913527] pci 0000:0a:00.0: reg 18: [mem 0x98410000-0x9841ffff 64bit]
[2014-07-17 23:43:32][    1.920125] pci 0000:0a:00.0: reg 30: [mem 0xfff00000-0xffffffff pref]
[2014-07-17 23:43:32][    1.926663] pci 0000:0a:00.0: supports D1
[2014-07-17 23:43:32][    1.930652] pci 0000:0a:00.0: PME# supported from D0 D1 D3hot
[2014-07-17 23:43:32][    1.936397] pci 0000:00:02.0: PCI bridge to [bus 0a-12]
[2014-07-17 23:43:32][    1.941599] pci 0000:00:02.0:   bridge window [mem 0x98400000-0x984fffff]
[2014-07-17 23:43:32][    1.948433] pci 0000:13:00.0: [14e4:1657] type 00 class 0x020000
[2014-07-17 23:43:32][    1.954424] pci 0000:13:00.0: reg 10: [mem 0x1c00000b0000-0x1c00000bffff 64bit pref]
[2014-07-17 23:43:32][    1.962137] pci 0000:13:00.0: reg 18: [mem 0x1c00000a0000-0x1c00000affff 64bit pref]
[2014-07-17 23:43:32][    1.969849] pci 0000:13:00.0: reg 20: [mem 0x1c0000090000-0x1c000009ffff 64bit pref]
[2014-07-17 23:43:32][    1.977619] pci 0000:13:00.0: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    1.983726] pci 0000:13:00.1: [14e4:1657] type 00 class 0x020000
[2014-07-17 23:43:32][    1.989715] pci 0000:13:00.1: reg 10: [mem 0x1c0000080000-0x1c000008ffff 64bit pref]
[2014-07-17 23:43:32][    1.997428] pci 0000:13:00.1: reg 18: [mem 0x1c0000070000-0x1c000007ffff 64bit pref]
[2014-07-17 23:43:32][    2.005142] pci 0000:13:00.1: reg 20: [mem 0x1c0000060000-0x1c000006ffff 64bit pref]
[2014-07-17 23:43:32][    2.012911] pci 0000:13:00.1: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    2.019010] pci 0000:13:00.2: [14e4:1657] type 00 class 0x020000
[2014-07-17 23:43:32][    2.025000] pci 0000:13:00.2: reg 10: [mem 0x1c0000050000-0x1c000005ffff 64bit pref]
[2014-07-17 23:43:32][    2.032713] pci 0000:13:00.2: reg 18: [mem 0x1c0000040000-0x1c000004ffff 64bit pref]
[2014-07-17 23:43:32][    2.040425] pci 0000:13:00.2: reg 20: [mem 0x1c0000030000-0x1c000003ffff 64bit pref]
[2014-07-17 23:43:32][    2.048192] pci 0000:13:00.2: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    2.054289] pci 0000:13:00.3: [14e4:1657] type 00 class 0x020000
[2014-07-17 23:43:32][    2.060279] pci 0000:13:00.3: reg 10: [mem 0x1c0000020000-0x1c000002ffff 64bit pref]
[2014-07-17 23:43:32][    2.067993] pci 0000:13:00.3: reg 18: [mem 0x1c0000010000-0x1c000001ffff 64bit pref]
[2014-07-17 23:43:32][    2.075705] pci 0000:13:00.3: reg 20: [mem 0x1c0000000000-0x1c000000ffff 64bit pref]
[2014-07-17 23:43:32][    2.083472] pci 0000:13:00.3: PME# supported from D0 D3hot D3cold
[2014-07-17 23:43:32][    2.096017] pci 0000:00:02.2: PCI bridge to [bus 13-1b]
[2014-07-17 23:43:32][    2.101219] pci 0000:00:02.2:   bridge window [mem 0x97000000-0x97ffffff]
[2014-07-17 23:43:32][    2.107979] pci 0000:00:02.2:   bridge window [mem 0x1c0000000000-0x1c0000ffffff 64bit pref]
[2014-07-17 23:43:32][    2.116418] pci 0000:00:03.0: PCI bridge to [bus 1c-24]
[2014-07-17 23:43:32][    2.121620] pci 0000:00:03.0:   bridge window [mem 0x96000000-0x96ffffff]
[2014-07-17 23:43:32][    2.128377] pci 0000:00:03.0:   bridge window [mem 0x1c0001000000-0x1c0001ffffff 64bit pref]
[2014-07-17 23:43:32][    2.136827] pci 0000:00:03.2: PCI bridge to [bus 25-2d]
[2014-07-17 23:43:32][    2.142027] pci 0000:00:03.2:   bridge window [mem 0x95000000-0x95ffffff]
[2014-07-17 23:43:32][    2.148783] pci 0000:00:03.2:   bridge window [mem 0x1c0002000000-0x1c0002ffffff 64bit pref]
[2014-07-17 23:43:32][    2.157258] pci 0000:2e:00.0: [8086:1d6b] type 00 class 0x010700
[2014-07-17 23:43:32][    2.163253] pci 0000:2e:00.0: reg 10: [mem 0x1c000347c000-0x1c000347ffff 64bit pref]
[2014-07-17 23:43:32][    2.170971] pci 0000:2e:00.0: reg 18: [mem 0x1c0003000000-0x1c00033fffff 64bit pref]
[2014-07-17 23:43:32][    2.178682] pci 0000:2e:00.0: reg 20: [io  0x5000-0x50ff]
[2014-07-17 23:43:32][    2.184180] pci 0000:2e:00.0: reg 164: [mem 0x1c0003400000-0x1c0003403fff 64bit pref]
[2014-07-17 23:43:32][    2.192040] pci 0000:00:11.0: PCI bridge to [bus 2e-2f]
[2014-07-17 23:43:32][    2.197245] pci 0000:00:11.0:   bridge window [io  0x5000-0x5fff]
[2014-07-17 23:43:32][    2.203308] pci 0000:00:11.0:   bridge window [mem 0x98300000-0x983fffff]
[2014-07-17 23:43:32][    2.210064] pci 0000:00:11.0:   bridge window [mem 0x1c0003000000-0x1c00034fffff 64bit pref]
[2014-07-17 23:43:32][    2.218553] pci 0000:30:00.0: [8086:10d3] type 00 class 0x020000
[2014-07-17 23:43:32][    2.224555] pci 0000:30:00.0: reg 10: [mem 0x98200000-0x9821ffff]
[2014-07-17 23:43:32][    2.230656] pci 0000:30:00.0: reg 18: [io  0x4000-0x401f]
[2014-07-17 23:43:32][    2.236047] pci 0000:30:00.0: reg 1c: [mem 0x98220000-0x98223fff]
[2014-07-17 23:43:32][    2.242289] pci 0000:30:00.0: PME# supported from D0 D3hot
[2014-07-17 23:43:32][    2.255803] pci 0000:00:1c.0: PCI bridge to [bus 30-31]
[2014-07-17 23:43:32][    2.261004] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[2014-07-17 23:43:32][    2.267067] pci 0000:00:1c.0:   bridge window [mem 0x98200000-0x982fffff]
[2014-07-17 23:43:32][    2.273922] pci 0000:32:00.0: [8086:10d3] type 00 class 0x020000
[2014-07-17 23:43:32][    2.279924] pci 0000:32:00.0: reg 10: [mem 0x98100000-0x9811ffff]
[2014-07-17 23:43:32][    2.286023] pci 0000:32:00.0: reg 18: [io  0x3000-0x301f]
[2014-07-17 23:43:32][    2.291413] pci 0000:32:00.0: reg 1c: [mem 0x98120000-0x98123fff]
[2014-07-17 23:43:32][    2.297655] pci 0000:32:00.0: PME# supported from D0 D3hot
[2014-07-17 23:43:32][    2.311728] pci 0000:00:1c.1: PCI bridge to [bus 32-33]
[2014-07-17 23:43:32][    2.316928] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[2014-07-17 23:43:32][    2.322989] pci 0000:00:1c.1:   bridge window [mem 0x98100000-0x981fffff]
[2014-07-17 23:43:32][    2.329841] pci 0000:34:00.0: [8086:10d3] type 00 class 0x020000
[2014-07-17 23:43:32][    2.335844] pci 0000:34:00.0: reg 10: [mem 0x98000000-0x9801ffff]
[2014-07-17 23:43:32][    2.341944] pci 0000:34:00.0: reg 18: [io  0x2000-0x201f]
[2014-07-17 23:43:32][    2.347332] pci 0000:34:00.0: reg 1c: [mem 0x98020000-0x98023fff]
[2014-07-17 23:43:32][    2.353574] pci 0000:34:00.0: PME# supported from D0 D3hot
[2014-07-17 23:43:32][    2.367656] pci 0000:00:1c.2: PCI bridge to [bus 34-35]
[2014-07-17 23:43:32][    2.372857] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[2014-07-17 23:43:32][    2.378919] pci 0000:00:1c.2:   bridge window [mem 0x98000000-0x980fffff]
[2014-07-17 23:43:32][    2.385755] pci 0000:00:1e.0: PCI bridge to [bus 36-36] (subtractive decode)
[2014-07-17 23:43:32][    2.392776] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[2014-07-17 23:43:32][    2.400650] pci 0000:00:1e.0:   bridge window [io  0x1000-0xffff] (subtractive decode)
[2014-07-17 23:43:32][    2.408523] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[2014-07-17 23:43:32][    2.417088] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xfbffefff] (subtractive decode)
[2014-07-17 23:43:32][    2.425653] pci 0000:00:1e.0:   bridge window [mem 0x180000000000-0x1fffffffffff] (subtractive decode)
[2014-07-17 23:43:32][    2.434968] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[2014-07-17 23:43:32][    2.441152] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE01._PRT]
[2014-07-17 23:43:32][    2.447567] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE03._PRT]
[2014-07-17 23:43:32][    2.453971] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE05._PRT]
[2014-07-17 23:43:32][    2.460374] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE07._PRT]
[2014-07-17 23:43:32][    2.466777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PE09._PRT]
[2014-07-17 23:43:32][    2.473196] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EVRP._PRT]
[2014-07-17 23:43:32][    2.479603] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[2014-07-17 23:43:32][    2.485993] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[2014-07-17 23:43:32][    2.492382] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[2014-07-17 23:43:32][    2.498800] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[2014-07-17 23:43:32][    2.505372]  pci0000:00: Requesting ACPI _OSC control (0x15)
[2014-07-17 23:43:32][    2.511680]  pci0000:00: ACPI _OSC control (0x15) granted
[2014-07-17 23:43:32][    2.536145] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus ff])
[2014-07-17 23:43:32][    2.542190] PCI host bridge to bus 0000:ff
[2014-07-17 23:43:32][    2.546282] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[2014-07-17 23:43:32][    2.552324] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[2014-07-17 23:43:32][    2.558362] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[2014-07-17 23:43:32][    2.564389] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[2014-07-17 23:43:32][    2.570417] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[2014-07-17 23:43:32][    2.576442] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[2014-07-17 23:43:32][    2.582474] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[2014-07-17 23:43:32][    2.588502] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[2014-07-17 23:43:32][    2.594527] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[2014-07-17 23:43:32][    2.600553] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[2014-07-17 23:43:32][    2.606579] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[2014-07-17 23:43:32][    2.612610] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[2014-07-17 23:43:32][    2.618638] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[2014-07-17 23:43:32][    2.624664] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[2014-07-17 23:43:32][    2.630698] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[2014-07-17 23:43:32][    2.636734] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[2014-07-17 23:43:32][    2.642778] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[2014-07-17 23:43:32][    2.648831] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[2014-07-17 23:43:32][    2.654882] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[2014-07-17 23:43:32][    2.660933] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[2014-07-17 23:43:32][    2.666981] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[2014-07-17 23:43:32][    2.673033] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[2014-07-17 23:43:32][    2.679087] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[2014-07-17 23:43:32][    2.685139] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[2014-07-17 23:43:32][    2.691191] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[2014-07-17 23:43:32][    2.697242] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[2014-07-17 23:43:32][    2.703292] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[2014-07-17 23:43:32][    2.709345] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[2014-07-17 23:43:32][    2.715399] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[2014-07-17 23:43:32][    2.721450] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[2014-07-17 23:43:32][    2.727501] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[2014-07-17 23:43:32][    2.733528] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[2014-07-17 23:43:32][    2.739557] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[2014-07-17 23:43:32][    2.745586] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[2014-07-17 23:43:32][    2.751619] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[2014-07-17 23:43:32][    2.757647] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[2014-07-17 23:43:32][    2.763673] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[2014-07-17 23:43:32][    2.769732]  pci0000:ff: Requesting ACPI _OSC control (0x15)
[2014-07-17 23:43:32][    2.775363]  pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x15
[2014-07-17 23:43:32][    2.783840] ACPI _OSC control for PCIe not granted, disabling ASPM
[2014-07-17 23:43:32][    2.792128] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 *3 4 5 6 7 10 11 12 14 15)
[2014-07-17 23:43:32][    2.799562] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 *5 6 7 10 11 12 14 15)
[2014-07-17 23:43:32][    2.806998] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 *6 7 10 11 12 14 15)
[2014-07-17 23:43:32][    2.814428] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *7 10 11 12 14 15)
[2014-07-17 23:43:32][    2.821853] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[2014-07-17 23:43:32][    2.830429] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *10 11 12 14 15)
[2014-07-17 23:43:32][    2.837860] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[2014-07-17 23:43:32][    2.846438] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 10 11 12 14 15) *9
[2014-07-17 23:43:32][    2.854148] vgaarb: loaded
[2014-07-17 23:43:32][    2.857045] PCI: Using ACPI for IRQ routing
[2014-07-17 23:43:32][    2.869298] PCI: pci_cache_line_size set to 64 bytes
[2014-07-17 23:43:32][    2.874577] reserve RAM buffer: 000000000009cc00 - 000000000009ffff 
[2014-07-17 23:43:32][    2.880728] reserve RAM buffer: 000000006a6ff000 - 000000006bffffff 
[2014-07-17 23:43:32][    2.887257] NetLabel: Initializing
[2014-07-17 23:43:32][    2.890824] NetLabel:  domain hash size = 128
[2014-07-17 23:43:32][    2.895157] NetLabel:  protocols = UNLABELED CIPSOv4
[2014-07-17 23:43:32][    2.900115] NetLabel:  unlabeled traffic allowed by default
[2014-07-17 23:43:32][    2.905744] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[2014-07-17 23:43:32][    2.912001] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[2014-07-17 23:43:32][    2.919871] Switching to clocksource hpet
[2014-07-17 23:43:32][    2.927432] pnp: PnP ACPI init
[2014-07-17 23:43:32][    2.930503] ACPI: bus type pnp registered
[2014-07-17 23:43:32][    2.935405] pnp 00:00: [bus 00-fe]
[2014-07-17 23:43:32][    2.938796] pnp 00:00: [io  0x0000-0x0cf7 window]
[2014-07-17 23:43:32][    2.943479] pnp 00:00: [io  0x0cf8-0x0cff]
[2014-07-17 23:43:32][    2.947557] pnp 00:00: [io  0x1000-0xffff window]
[2014-07-17 23:43:32][    2.952239] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[2014-07-17 23:43:32][    2.957611] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[2014-07-17 23:43:32][    2.962984] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[2014-07-17 23:43:32][    2.968356] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[2014-07-17 23:43:32][    2.973727] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[2014-07-17 23:43:32][    2.979099] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[2014-07-17 23:43:32][    2.984471] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[2014-07-17 23:43:32][    2.989842] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[2014-07-17 23:43:32][    2.995215] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[2014-07-17 23:43:32][    3.000585] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[2014-07-17 23:43:32][    3.005956] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[2014-07-17 23:43:32][    3.011330] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[2014-07-17 23:43:32][    3.016700] pnp 00:00: [mem 0x000ec000-0x000effff window]
[2014-07-17 23:43:32][    3.022074] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[2014-07-17 23:43:32][    3.027445] pnp 00:00: [mem 0x90000000-0xfbffefff window]
[2014-07-17 23:43:32][    3.032816] pnp 00:00: [mem 0x180000000000-0x1fffffffffff window]
[2014-07-17 23:43:32][    3.038973] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[2014-07-17 23:43:32][    3.046464] pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
[2014-07-17 23:43:32][    3.051235] pnp 00:01: [mem 0xfbfff000-0xfbffffff]
[2014-07-17 23:43:32][    3.056004] pnp 00:01: [mem 0xfed20000-0xfed3ffff]
[2014-07-17 23:43:32][    3.060773] pnp 00:01: [mem 0xfbffc000-0xfbffdfff]
[2014-07-17 23:43:32][    3.065541] pnp 00:01: [mem 0xff000000-0xffffffff]
[2014-07-17 23:43:32][    3.070307] pnp 00:01: [mem 0xfee00000-0xfeefffff]
[2014-07-17 23:43:32][    3.075228] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[2014-07-17 23:43:32][    3.081811] system 00:01: [mem 0xfbfff000-0xfbffffff] has been reserved
[2014-07-17 23:43:32][    3.088394] system 00:01: [mem 0xfed20000-0xfed3ffff] has been reserved
[2014-07-17 23:43:32][    3.094975] system 00:01: [mem 0xfbffc000-0xfbffdfff] has been reserved
[2014-07-17 23:43:32][    3.101555] system 00:01: [mem 0xff000000-0xffffffff] could not be reserved
[2014-07-17 23:43:32][    3.108480] system 00:01: [mem 0xfee00000-0xfeefffff] could not be reserved
[2014-07-17 23:43:32][    3.115407] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[2014-07-17 23:43:32][    3.122266] pnp 00:02: [io  0x0000-0x001f]
[2014-07-17 23:43:32][    3.126345] pnp 00:02: [io  0x0081-0x0091]
[2014-07-17 23:43:32][    3.130423] pnp 00:02: [io  0x0093-0x009f]
[2014-07-17 23:43:32][    3.134498] pnp 00:02: [io  0x00c0-0x00df]
[2014-07-17 23:43:32][    3.138575] pnp 00:02: [dma 4]
[2014-07-17 23:43:32][    3.141674] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[2014-07-17 23:43:32][    3.148184] pnp 00:03: [mem 0xff000000-0xffffffff]
[2014-07-17 23:43:32][    3.153005] pnp 00:03: Plug and Play ACPI device, IDs INT0800 (active)
[2014-07-17 23:43:32][    3.159664] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[2014-07-17 23:43:32][    3.164492] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[2014-07-17 23:43:32][    3.171004] pnp 00:05: [io  0x00f0]
[2014-07-17 23:43:32][    3.174489] pnp 00:05: [irq 13]
[2014-07-17 23:43:32][    3.177672] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[2014-07-17 23:43:32][    3.184201] pnp 00:06: [io  0x002e-0x002f]
[2014-07-17 23:43:32][    3.188277] pnp 00:06: [io  0x004e-0x004f]
[2014-07-17 23:43:32][    3.192353] pnp 00:06: [io  0x0061]
[2014-07-17 23:43:32][    3.195825] pnp 00:06: [io  0x0063]
[2014-07-17 23:43:32][    3.199293] pnp 00:06: [io  0x0065]
[2014-07-17 23:43:32][    3.202765] pnp 00:06: [io  0x0067]
[2014-07-17 23:43:32][    3.206237] pnp 00:06: [io  0x0070]
[2014-07-17 23:43:32][    3.209709] pnp 00:06: [io  0x0080]
[2014-07-17 23:43:32][    3.213180] pnp 00:06: [io  0x0092]
[2014-07-17 23:43:32][    3.216653] pnp 00:06: [io  0x00b2-0x00b3]
[2014-07-17 23:43:32][    3.220728] pnp 00:06: [io  0x0680-0x069f]
[2014-07-17 23:43:32][    3.224805] pnp 00:06: [io  0x0400-0x0453]
[2014-07-17 23:43:32][    3.228882] pnp 00:06: [io  0x0458-0x047f]
[2014-07-17 23:43:32][    3.232960] pnp 00:06: [io  0x0500-0x057f]
[2014-07-17 23:43:32][    3.237035] pnp 00:06: [io  0x164e-0x164f]
[2014-07-17 23:43:32][    3.241262] system 00:06: [io  0x0680-0x069f] has been reserved
[2014-07-17 23:43:32][    3.247153] system 00:06: [io  0x0400-0x0453] has been reserved
[2014-07-17 23:43:32][    3.253043] system 00:06: [io  0x0458-0x047f] has been reserved
[2014-07-17 23:43:32][    3.258931] system 00:06: [io  0x0500-0x057f] has been reserved
[2014-07-17 23:43:32][    3.264822] system 00:06: [io  0x164e-0x164f] has been reserved
[2014-07-17 23:43:32][    3.270712] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[2014-07-17 23:43:32][    3.277483] pnp 00:07: [io  0x0070-0x0077]
[2014-07-17 23:43:32][    3.281567] pnp 00:07: [irq 8]
[2014-07-17 23:43:32][    3.284665] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
[2014-07-17 23:43:32][    3.291207] pnp 00:08: [io  0x0454-0x0457]
[2014-07-17 23:43:32][    3.295433] system 00:08: [io  0x0454-0x0457] has been reserved
[2014-07-17 23:43:32][    3.301328] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[2014-07-17 23:43:32][    3.309264] pnp 00:09: [bus ff]
[2014-07-17 23:43:32][    3.312476] pnp 00:09: Plug and Play ACPI device, IDs PNP0a03 (active)
[2014-07-17 23:43:32][    3.319743] pnp: PnP ACPI: found 10 devices
[2014-07-17 23:43:32][    3.323907] ACPI: ACPI bus type pnp unregistered
[2014-07-17 23:43:32][    3.335992] pci 0000:0a:00.0: no compatible bridge window for [mem 0xfff00000-0xffffffff pref]
[2014-07-17 23:43:32][    3.344746] pci 0000:00:02.0: BAR 15: assigned [mem 0x94300000-0x943fffff pref]
[2014-07-17 23:43:32][    3.352022] pci 0000:02:01.0: PCI bridge to [bus 03-03]
[2014-07-17 23:43:32][    3.357223] pci 0000:02:01.0:   bridge window [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    3.363978] pci 0000:02:01.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.372375] pci 0000:02:08.0: PCI bridge to [bus 04-04]
[2014-07-17 23:43:32][    3.377580] pci 0000:02:09.0: PCI bridge to [bus 05-05]
[2014-07-17 23:43:32][    3.382786] pci 0000:02:0a.0: PCI bridge to [bus 06-06]
[2014-07-17 23:43:32][    3.387994] pci 0000:02:0b.0: PCI bridge to [bus 07-07]
[2014-07-17 23:43:32][    3.393200] pci 0000:02:0c.0: PCI bridge to [bus 08-08]
[2014-07-17 23:43:32][    3.398407] pci 0000:01:00.0: PCI bridge to [bus 02-08]
[2014-07-17 23:43:32][    3.403607] pci 0000:01:00.0:   bridge window [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    3.410361] pci 0000:01:00.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.418759] pci 0000:00:01.0: PCI bridge to [bus 01-09]
[2014-07-17 23:43:32][    3.423960] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x942fffff]
[2014-07-17 23:43:32][    3.430716] pci 0000:00:01.0:   bridge window [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.439122] pci 0000:0a:00.0: BAR 6: assigned [mem 0x94300000-0x943fffff pref]
[2014-07-17 23:43:32][    3.446310] pci 0000:00:02.0: PCI bridge to [bus 0a-12]
[2014-07-17 23:43:32][    3.451511] pci 0000:00:02.0:   bridge window [mem 0x98400000-0x984fffff]
[2014-07-17 23:43:32][    3.458266] pci 0000:00:02.0:   bridge window [mem 0x94300000-0x943fffff pref]
[2014-07-17 23:43:32][    3.465455] pci 0000:00:02.2: PCI bridge to [bus 13-1b]
[2014-07-17 23:43:32][    3.470656] pci 0000:00:02.2:   bridge window [mem 0x97000000-0x97ffffff]
[2014-07-17 23:43:32][    3.477410] pci 0000:00:02.2:   bridge window [mem 0x1c0000000000-0x1c0000ffffff 64bit pref]
[2014-07-17 23:43:32][    3.485807] pci 0000:00:03.0: PCI bridge to [bus 1c-24]
[2014-07-17 23:43:32][    3.491008] pci 0000:00:03.0:   bridge window [mem 0x96000000-0x96ffffff]
[2014-07-17 23:43:32][    3.497763] pci 0000:00:03.0:   bridge window [mem 0x1c0001000000-0x1c0001ffffff 64bit pref]
[2014-07-17 23:43:32][    3.506161] pci 0000:00:03.2: PCI bridge to [bus 25-2d]
[2014-07-17 23:43:32][    3.511362] pci 0000:00:03.2:   bridge window [mem 0x95000000-0x95ffffff]
[2014-07-17 23:43:32][    3.518117] pci 0000:00:03.2:   bridge window [mem 0x1c0002000000-0x1c0002ffffff 64bit pref]
[2014-07-17 23:43:32][    3.526515] pci 0000:00:11.0: PCI bridge to [bus 2e-2f]
[2014-07-17 23:43:32][    3.531715] pci 0000:00:11.0:   bridge window [io  0x5000-0x5fff]
[2014-07-17 23:43:32][    3.537783] pci 0000:00:11.0:   bridge window [mem 0x98300000-0x983fffff]
[2014-07-17 23:43:32][    3.544539] pci 0000:00:11.0:   bridge window [mem 0x1c0003000000-0x1c00034fffff 64bit pref]
[2014-07-17 23:43:32][    3.552937] pci 0000:00:1c.0: PCI bridge to [bus 30-31]
[2014-07-17 23:43:32][    3.558137] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[2014-07-17 23:43:32][    3.564201] pci 0000:00:1c.0:   bridge window [mem 0x98200000-0x982fffff]
[2014-07-17 23:43:32][    3.570997] pci 0000:00:1c.1: PCI bridge to [bus 32-33]
[2014-07-17 23:43:32][    3.576195] pci 0000:00:1c.1:   bridge window [io  0x3000-0x3fff]
[2014-07-17 23:43:32][    3.582260] pci 0000:00:1c.1:   bridge window [mem 0x98100000-0x981fffff]
[2014-07-17 23:43:32][    3.589020] pci 0000:00:1c.2: PCI bridge to [bus 34-35]
[2014-07-17 23:43:32][    3.594219] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[2014-07-17 23:43:32][    3.600284] pci 0000:00:1c.2:   bridge window [mem 0x98000000-0x980fffff]
[2014-07-17 23:43:32][    3.607045] pci 0000:00:1e.0: PCI bridge to [bus 36-36]
[2014-07-17 23:43:32][    3.612451] pci 0000:00:1e.0: setting latency timer to 64
[2014-07-17 23:43:32][    3.617827] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[2014-07-17 23:43:32][    3.623372] pci_bus 0000:00: resource 5 [io  0x1000-0xffff]
[2014-07-17 23:43:32][    3.628916] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[2014-07-17 23:43:32][    3.635151] pci_bus 0000:00: resource 7 [mem 0x90000000-0xfbffefff]
[2014-07-17 23:43:32][    3.641385] pci_bus 0000:00: resource 8 [mem 0x180000000000-0x1fffffffffff]
[2014-07-17 23:43:32][    3.648310] pci_bus 0000:01: resource 1 [mem 0x90000000-0x942fffff]
[2014-07-17 23:43:32][    3.654544] pci_bus 0000:01: resource 2 [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.662419] pci_bus 0000:02: resource 1 [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    3.668653] pci_bus 0000:02: resource 2 [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.676529] pci_bus 0000:03: resource 1 [mem 0x90000000-0x941fffff]
[2014-07-17 23:43:32][    3.682762] pci_bus 0000:03: resource 2 [mem 0x180000000000-0x1bffffffffff 64bit pref]
[2014-07-17 23:43:32][    3.690637] pci_bus 0000:0a: resource 1 [mem 0x98400000-0x984fffff]
[2014-07-17 23:43:32][    3.696871] pci_bus 0000:0a: resource 2 [mem 0x94300000-0x943fffff pref]
[2014-07-17 23:43:32][    3.703537] pci_bus 0000:13: resource 1 [mem 0x97000000-0x97ffffff]
[2014-07-17 23:43:32][    3.709771] pci_bus 0000:13: resource 2 [mem 0x1c0000000000-0x1c0000ffffff 64bit pref]
[2014-07-17 23:43:32][    3.717645] pci_bus 0000:1c: resource 1 [mem 0x96000000-0x96ffffff]
[2014-07-17 23:43:32][    3.723878] pci_bus 0000:1c: resource 2 [mem 0x1c0001000000-0x1c0001ffffff 64bit pref]
[2014-07-17 23:43:32][    3.731754] pci_bus 0000:25: resource 1 [mem 0x95000000-0x95ffffff]
[2014-07-17 23:43:32][    3.737990] pci_bus 0000:25: resource 2 [mem 0x1c0002000000-0x1c0002ffffff 64bit pref]
[2014-07-17 23:43:32][    3.745865] pci_bus 0000:2e: resource 0 [io  0x5000-0x5fff]
[2014-07-17 23:43:32][    3.751410] pci_bus 0000:2e: resource 1 [mem 0x98300000-0x983fffff]
[2014-07-17 23:43:32][    3.757643] pci_bus 0000:2e: resource 2 [mem 0x1c0003000000-0x1c00034fffff 64bit pref]
[2014-07-17 23:43:32][    3.765517] pci_bus 0000:30: resource 0 [io  0x4000-0x4fff]
[2014-07-17 23:43:32][    3.771059] pci_bus 0000:30: resource 1 [mem 0x98200000-0x982fffff]
[2014-07-17 23:43:32][    3.777294] pci_bus 0000:32: resource 0 [io  0x3000-0x3fff]
[2014-07-17 23:43:32][    3.782838] pci_bus 0000:32: resource 1 [mem 0x98100000-0x981fffff]
[2014-07-17 23:43:32][    3.789073] pci_bus 0000:34: resource 0 [io  0x2000-0x2fff]
[2014-07-17 23:43:32][    3.794616] pci_bus 0000:34: resource 1 [mem 0x98000000-0x980fffff]
[2014-07-17 23:43:32][    3.800851] pci_bus 0000:36: resource 4 [io  0x0000-0x0cf7]
[2014-07-17 23:43:32][    3.806394] pci_bus 0000:36: resource 5 [io  0x1000-0xffff]
[2014-07-17 23:43:32][    3.811938] pci_bus 0000:36: resource 6 [mem 0x000a0000-0x000bffff]
[2014-07-17 23:43:32][    3.818172] pci_bus 0000:36: resource 7 [mem 0x90000000-0xfbffefff]
[2014-07-17 23:43:32][    3.824407] pci_bus 0000:36: resource 8 [mem 0x180000000000-0x1fffffffffff]
[2014-07-17 23:43:32][    3.831533] NET: Registered protocol family 2
[2014-07-17 23:43:32][    3.836433] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[2014-07-17 23:43:32][    3.845629] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[2014-07-17 23:43:32][    3.855218] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes)
[2014-07-17 23:43:32][    3.862769] TCP: Hash tables configured (established 524288 bind 65536)
[2014-07-17 23:43:32][    3.869351] TCP: reno registered
[2014-07-17 23:43:32][    3.872736] UDP hash table entries: 16384 (order: 8, 1572864 bytes)
[2014-07-17 23:43:32][    3.879761] UDP-Lite hash table entries: 16384 (order: 8, 1572864 bytes)
[2014-07-17 23:43:32][    3.887406] NET: Registered protocol family 1
[2014-07-17 23:43:32][    3.926715] PCI: CLS 64 bytes, default 64
[2014-07-17 23:43:32][    3.930779] Unpacking initramfs...
[2014-07-17 23:43:32][    8.391244] -----free_init_page begin=ffff88002f20a000 end=ffff880037ff0000
[2014-07-17 23:43:32][    8.400138] Freeing initrd memory: 145304k freed
[2014-07-17 23:43:32][    8.443699] DMAR: No ATSR found
[2014-07-17 23:43:32][    8.447088] IOMMU 0 0xfbffc000: using Queued invalidation
[2014-07-17 23:43:32][    8.452521] IOMMU: hardware identity mapping for device 0000:00:00.0
[2014-07-17 23:43:32][    8.458844] IOMMU: hardware identity mapping for device 0000:00:01.0
[2014-07-17 23:43:32][    8.465167] IOMMU: hardware identity mapping for device 0000:00:02.0
[2014-07-17 23:43:32][    8.471490] IOMMU: hardware identity mapping for device 0000:00:02.2
[2014-07-17 23:43:32][    8.477813] IOMMU: hardware identity mapping for device 0000:00:03.0
[2014-07-17 23:43:32][    8.484136] IOMMU: hardware identity mapping for device 0000:00:03.2
[2014-07-17 23:43:32][    8.490460] IOMMU: hardware identity mapping for device 0000:00:04.0
[2014-07-17 23:43:32][    8.496795] IOMMU: hardware identity mapping for device 0000:00:04.1
[2014-07-17 23:43:32][    8.503119] IOMMU: hardware identity mapping for device 0000:00:04.2
[2014-07-17 23:43:32][    8.509441] IOMMU: hardware identity mapping for device 0000:00:04.3
[2014-07-17 23:43:32][    8.515764] IOMMU: hardware identity mapping for device 0000:00:04.4
[2014-07-17 23:43:32][    8.522088] IOMMU: hardware identity mapping for device 0000:00:04.5
[2014-07-17 23:43:32][    8.528412] IOMMU: hardware identity mapping for device 0000:00:04.6
[2014-07-17 23:43:32][    8.534734] IOMMU: hardware identity mapping for device 0000:00:04.7
[2014-07-17 23:43:32][    8.541055] IOMMU: hardware identity mapping for device 0000:00:05.0
[2014-07-17 23:43:32][    8.547376] IOMMU: hardware identity mapping for device 0000:00:05.1
[2014-07-17 23:43:32][    8.553699] IOMMU: hardware identity mapping for device 0000:00:05.2
[2014-07-17 23:43:32][    8.560020] IOMMU: hardware identity mapping for device 0000:00:05.4
[2014-07-17 23:43:32][    8.566343] IOMMU: hardware identity mapping for device 0000:00:11.0
[2014-07-17 23:43:32][    8.572663] IOMMU: hardware identity mapping for device 0000:00:1a.0
[2014-07-17 23:43:32][    8.578983] IOMMU: hardware identity mapping for device 0000:00:1c.0
[2014-07-17 23:43:32][    8.585305] IOMMU: hardware identity mapping for device 0000:00:1c.1
[2014-07-17 23:43:32][    8.591627] IOMMU: hardware identity mapping for device 0000:00:1c.2
[2014-07-17 23:43:32][    8.597950] IOMMU: hardware identity mapping for device 0000:00:1d.0
[2014-07-17 23:43:32][    8.604275] IOMMU: hardware identity mapping for device 0000:00:1f.0
[2014-07-17 23:43:32][    8.610598] IOMMU: hardware identity mapping for device 0000:00:1f.2
[2014-07-17 23:43:32][    8.616920] IOMMU: hardware identity mapping for device 0000:00:1f.3
[2014-07-17 23:43:32][    8.623254] IOMMU: hardware identity mapping for device 0000:01:00.0
[2014-07-17 23:43:32][    8.629576] IOMMU: hardware identity mapping for device 0000:01:00.1
[2014-07-17 23:43:32][    8.635897] IOMMU: hardware identity mapping for device 0000:01:00.2
[2014-07-17 23:43:32][    8.642224] IOMMU: hardware identity mapping for device 0000:01:00.3
[2014-07-17 23:43:32][    8.648550] IOMMU: hardware identity mapping for device 0000:01:00.4
[2014-07-17 23:43:32][    8.654882] IOMMU: hardware identity mapping for device 0000:02:01.0
[2014-07-17 23:43:32][    8.661205] IOMMU: hardware identity mapping for device 0000:02:08.0
[2014-07-17 23:43:32][    8.667530] IOMMU: hardware identity mapping for device 0000:02:09.0
[2014-07-17 23:43:32][    8.673852] IOMMU: hardware identity mapping for device 0000:02:0a.0
[2014-07-17 23:43:32][    8.680176] IOMMU: hardware identity mapping for device 0000:02:0b.0
[2014-07-17 23:43:32][    8.686500] IOMMU: hardware identity mapping for device 0000:02:0c.0
[2014-07-17 23:43:32][    8.692834] IOMMU: hardware identity mapping for device 0000:03:00.0
[2014-07-17 23:43:32][    8.699166] IOMMU: hardware identity mapping for device 0000:0a:00.0
[2014-07-17 23:43:32][    8.705500] IOMMU: hardware identity mapping for device 0000:13:00.0
[2014-07-17 23:43:32][    8.711824] IOMMU: hardware identity mapping for device 0000:13:00.1
[2014-07-17 23:43:32][    8.718147] IOMMU: hardware identity mapping for device 0000:13:00.2
[2014-07-17 23:43:32][    8.724469] IOMMU: hardware identity mapping for device 0000:13:00.3
[2014-07-17 23:43:32][    8.730804] IOMMU: hardware identity mapping for device 0000:2e:00.0
[2014-07-17 23:43:32][    8.737139] IOMMU: hardware identity mapping for device 0000:30:00.0
[2014-07-17 23:43:32][    8.743476] IOMMU: hardware identity mapping for device 0000:32:00.0
[2014-07-17 23:43:32][    8.749810] IOMMU: hardware identity mapping for device 0000:34:00.0
[2014-07-17 23:43:32][    8.756144] IOMMU: hardware identity mapping for device 0000:ff:08.0
[2014-07-17 23:43:32][    8.762467] IOMMU: hardware identity mapping for device 0000:ff:09.0
[2014-07-17 23:43:32][    8.768789] IOMMU: hardware identity mapping for device 0000:ff:0a.0
[2014-07-17 23:43:32][    8.775112] IOMMU: hardware identity mapping for device 0000:ff:0a.1
[2014-07-17 23:43:32][    8.781434] IOMMU: hardware identity mapping for device 0000:ff:0a.2
[2014-07-17 23:43:32][    8.787757] IOMMU: hardware identity mapping for device 0000:ff:0a.3
[2014-07-17 23:43:32][    8.794080] IOMMU: hardware identity mapping for device 0000:ff:0b.0
[2014-07-17 23:43:32][    8.800415] IOMMU: hardware identity mapping for device 0000:ff:0b.3
[2014-07-17 23:43:32][    8.806737] IOMMU: hardware identity mapping for device 0000:ff:0c.0
[2014-07-17 23:43:32][    8.813061] IOMMU: hardware identity mapping for device 0000:ff:0c.1
[2014-07-17 23:43:32][    8.819383] IOMMU: hardware identity mapping for device 0000:ff:0c.2
[2014-07-17 23:43:32][    8.825709] IOMMU: hardware identity mapping for device 0000:ff:0d.0
[2014-07-17 23:43:32][    8.832032] IOMMU: hardware identity mapping for device 0000:ff:0d.1
[2014-07-17 23:43:32][    8.838355] IOMMU: hardware identity mapping for device 0000:ff:0d.2
[2014-07-17 23:43:32][    8.844678] IOMMU: hardware identity mapping for device 0000:ff:0e.0
[2014-07-17 23:43:32][    8.851001] IOMMU: hardware identity mapping for device 0000:ff:0e.1
[2014-07-17 23:43:32][    8.857325] IOMMU: hardware identity mapping for device 0000:ff:0f.0
[2014-07-17 23:43:32][    8.863648] IOMMU: hardware identity mapping for device 0000:ff:0f.1
[2014-07-17 23:43:32][    8.869969] IOMMU: hardware identity mapping for device 0000:ff:0f.2
[2014-07-17 23:43:32][    8.876286] IOMMU: hardware identity mapping for device 0000:ff:0f.3
[2014-07-17 23:43:32][    8.882620] IOMMU: hardware identity mapping for device 0000:ff:0f.4
[2014-07-17 23:43:32][    8.888941] IOMMU: hardware identity mapping for device 0000:ff:0f.5
[2014-07-17 23:43:32][    8.895264] IOMMU: hardware identity mapping for device 0000:ff:10.0
[2014-07-17 23:43:32][    8.901586] IOMMU: hardware identity mapping for device 0000:ff:10.1
[2014-07-17 23:43:32][    8.907909] IOMMU: hardware identity mapping for device 0000:ff:10.2
[2014-07-17 23:43:32][    8.914234] IOMMU: hardware identity mapping for device 0000:ff:10.3
[2014-07-17 23:43:32][    8.920554] IOMMU: hardware identity mapping for device 0000:ff:10.4
[2014-07-17 23:43:32][    8.926876] IOMMU: hardware identity mapping for device 0000:ff:10.5
[2014-07-17 23:43:32][    8.933198] IOMMU: hardware identity mapping for device 0000:ff:10.6
[2014-07-17 23:43:32][    8.939520] IOMMU: hardware identity mapping for device 0000:ff:10.7
[2014-07-17 23:43:32][    8.945843] IOMMU: hardware identity mapping for device 0000:ff:13.0
[2014-07-17 23:43:32][    8.952169] IOMMU: hardware identity mapping for device 0000:ff:13.1
[2014-07-17 23:43:32][    8.958491] IOMMU: hardware identity mapping for device 0000:ff:13.4
[2014-07-17 23:43:32][    8.964813] IOMMU: hardware identity mapping for device 0000:ff:13.5
[2014-07-17 23:43:32][    8.971135] IOMMU: hardware identity mapping for device 0000:ff:16.0
[2014-07-17 23:43:32][    8.977459] IOMMU: hardware identity mapping for device 0000:ff:16.1
[2014-07-17 23:43:32][    8.983783] IOMMU: hardware identity mapping for device 0000:ff:16.2
[2014-07-17 23:43:32][    8.990109] iommu_prepare_static_identity_mapping: add device 03:07.1
[2014-07-17 23:43:32][    8.996519] IOMMU: hardware identity mapping for device (null)
[2014-07-17 23:43:32][    9.002321] IOMMU: Setting RMRR:
[2014-07-17 23:43:32][    9.005536] Ignoring identity map for HW passthrough device 0000:00:1a.0 [0x7aa9f000 - 0x7aaa2fff]
[2014-07-17 23:43:32][    9.014448] Ignoring identity map for HW passthrough device 0000:00:1d.0 [0x7aa9f000 - 0x7aaa2fff]
[2014-07-17 23:43:32][    9.023361] IOMMU: Prepare 0-16MiB unity mapping for LPC
[2014-07-17 23:43:32][    9.028646] Ignoring identity map for HW passthrough device 0000:00:1f.0 [0x0 - 0xffffff]
[2014-07-17 23:43:32][    9.036831] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[2014-07-17 23:43:32][    9.043508] 32bit 0000:00:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.048807] 32bit 0000:00:01.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.054100] 32bit 0000:00:02.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.059392] 32bit 0000:00:02.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.064686] 32bit 0000:00:03.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.069980] 32bit 0000:00:03.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.075270] 32bit 0000:00:04.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.080565] 32bit 0000:00:04.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.085856] 32bit 0000:00:04.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.091149] 32bit 0000:00:04.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.096442] 32bit 0000:00:04.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.101734] 32bit 0000:00:04.5 uses non-identity mapping
[2014-07-17 23:43:32][    9.107025] 32bit 0000:00:04.6 uses non-identity mapping
[2014-07-17 23:43:32][    9.112315] 32bit 0000:00:04.7 uses non-identity mapping
[2014-07-17 23:43:32][    9.117608] 32bit 0000:00:05.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.122901] 32bit 0000:00:05.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.128192] 32bit 0000:00:05.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.133484] 32bit 0000:00:05.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.138776] 32bit 0000:00:11.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.144066] 32bit 0000:00:1a.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.149360] 32bit 0000:00:1c.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.154653] 32bit 0000:00:1c.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.159956] 32bit 0000:00:1c.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.165249] 32bit 0000:00:1d.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.170542] 32bit 0000:00:1f.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.175871] 32bit 0000:00:1f.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.181161] 32bit 0000:00:1f.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.186454] 32bit 0000:01:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.191746] 32bit 0000:01:00.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.197038] 32bit 0000:01:00.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.202332] 32bit 0000:01:00.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.207622] 32bit 0000:01:00.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.212915] 32bit 0000:02:01.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.218206] 32bit 0000:02:08.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.223498] 32bit 0000:02:09.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.228790] 32bit 0000:02:0a.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.234084] 32bit 0000:02:0b.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.239376] 32bit 0000:02:0c.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.244669] 32bit 0000:03:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.249960] 32bit 0000:0a:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.255251] 32bit 0000:13:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.260543] 32bit 0000:13:00.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.265834] 32bit 0000:13:00.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.271126] 32bit 0000:13:00.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.276417] 32bit 0000:2e:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.281709] 32bit 0000:30:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.287000] 32bit 0000:32:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.292293] 32bit 0000:34:00.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.297583] 32bit 0000:ff:08.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.302875] 32bit 0000:ff:09.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.308167] 32bit 0000:ff:0a.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.313457] 32bit 0000:ff:0a.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.318747] 32bit 0000:ff:0a.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.324040] 32bit 0000:ff:0a.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.329331] 32bit 0000:ff:0b.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.334622] 32bit 0000:ff:0b.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.339913] 32bit 0000:ff:0c.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.345203] 32bit 0000:ff:0c.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.350493] 32bit 0000:ff:0c.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.355785] 32bit 0000:ff:0d.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.361077] 32bit 0000:ff:0d.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.366367] 32bit 0000:ff:0d.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.371654] 32bit 0000:ff:0e.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.376943] 32bit 0000:ff:0e.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.382234] 32bit 0000:ff:0f.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.387527] 32bit 0000:ff:0f.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.392817] 32bit 0000:ff:0f.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.398108] 32bit 0000:ff:0f.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.403399] 32bit 0000:ff:0f.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.408692] 32bit 0000:ff:0f.5 uses non-identity mapping
[2014-07-17 23:43:32][    9.413983] 32bit 0000:ff:10.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.419276] 32bit 0000:ff:10.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.424568] 32bit 0000:ff:10.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.429861] 32bit 0000:ff:10.3 uses non-identity mapping
[2014-07-17 23:43:32][    9.435153] 32bit 0000:ff:10.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.440447] 32bit 0000:ff:10.5 uses non-identity mapping
[2014-07-17 23:43:32][    9.445738] 32bit 0000:ff:10.6 uses non-identity mapping
[2014-07-17 23:43:32][    9.451028] 32bit 0000:ff:10.7 uses non-identity mapping
[2014-07-17 23:43:32][    9.456318] 32bit 0000:ff:13.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.461610] 32bit 0000:ff:13.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.466902] 32bit 0000:ff:13.4 uses non-identity mapping
[2014-07-17 23:43:32][    9.472193] 32bit 0000:ff:13.5 uses non-identity mapping
[2014-07-17 23:43:32][    9.477486] 32bit 0000:ff:16.0 uses non-identity mapping
[2014-07-17 23:43:32][    9.482776] 32bit 0000:ff:16.1 uses non-identity mapping
[2014-07-17 23:43:32][    9.488066] 32bit 0000:ff:16.2 uses non-identity mapping
[2014-07-17 23:43:32][    9.496767] Simple Boot Flag at 0x44 set to 0x1
[2014-07-17 23:43:32][    9.503015] audit: initializing netlink socket (disabled)
[2014-07-17 23:43:32][    9.508409] type=2000 audit(1405611753.292:1): initialized
[2014-07-17 23:43:32][    9.550099] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[2014-07-17 23:43:32][    9.557195] msgmni has been set to 3816
[2014-07-17 23:43:32][    9.561190] cryptomgr_test used greatest stack depth: 6600 bytes left
[2014-07-17 23:43:32][    9.567615] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[2014-07-17 23:43:32][    9.575019] io scheduler noop registered (default)
[2014-07-17 23:43:32][    9.579791] io scheduler deadline registered
[2014-07-17 23:43:32][    9.584108] io scheduler cfq registered
[2014-07-17 23:43:32][    9.587926] start plist test
[2014-07-17 23:43:32][    9.593127] end plist test
[2014-07-17 23:43:32][    9.596184] pcieport 0000:00:01.0: irq 65 for MSI/MSI-X
[2014-07-17 23:43:32][    9.601540] pcieport 0000:00:02.0: irq 66 for MSI/MSI-X
[2014-07-17 23:43:32][    9.606911] pcieport 0000:00:02.2: irq 67 for MSI/MSI-X
[2014-07-17 23:43:32][    9.612269] pcieport 0000:00:03.0: irq 68 for MSI/MSI-X
[2014-07-17 23:43:32][    9.617634] pcieport 0000:00:03.2: irq 69 for MSI/MSI-X
[2014-07-17 23:43:32][    9.623028] pcieport 0000:00:11.0: irq 70 for MSI/MSI-X
[2014-07-17 23:43:32][    9.628396] pcieport 0000:00:1c.0: irq 71 for MSI/MSI-X
[2014-07-17 23:43:32][    9.633748] pcieport 0000:00:1c.1: irq 72 for MSI/MSI-X
[2014-07-17 23:43:32][    9.639100] pcieport 0000:00:1c.2: irq 73 for MSI/MSI-X
[2014-07-17 23:43:32][    9.644438] pcieport 0000:01:00.0: irq 74 for MSI/MSI-X
[2014-07-17 23:43:32][    9.649765] pcieport 0000:02:01.0: irq 75 for MSI/MSI-X
[2014-07-17 23:43:32][    9.655092] pcieport 0000:02:08.0: irq 76 for MSI/MSI-X
[2014-07-17 23:43:32][    9.660421] pcieport 0000:02:09.0: irq 77 for MSI/MSI-X
[2014-07-17 23:43:32][    9.665767] pcieport 0000:02:0a.0: irq 78 for MSI/MSI-X
[2014-07-17 23:43:32][    9.671093] pcieport 0000:02:0b.0: irq 79 for MSI/MSI-X
[2014-07-17 23:43:32][    9.676420] pcieport 0000:02:0c.0: irq 80 for MSI/MSI-X
[2014-07-17 23:43:32][    9.681739] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.688669] pcieport 0000:01:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.695597] pcieport 0000:02:01.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.702523] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.709020] pcieport 0000:02:08.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.715947] pcieport 0000:02:09.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.722875] pcieport 0000:02:0a.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.729804] pcieport 0000:02:0b.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.736732] pcieport 0000:02:0c.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.743659] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.750156] pci 0000:01:00.2: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.756655] pci 0000:01:00.3: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.763153] pci 0000:01:00.4: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.769652] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.776347] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.783273] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.789771] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.796468] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.803394] pci 0000:13:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.809891] pci 0000:13:00.1: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.816387] pci 0000:13:00.2: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.822883] pci 0000:13:00.3: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.829381] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.836075] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.843035] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.849729] pcieport 0000:00:03.2: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.856658] pcie_pme 0000:00:03.2:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.863356] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.870282] pci 0000:2e:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.876781] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.883479] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.890406] pci 0000:30:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.896903] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.903596] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.910520] pci 0000:32:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.917018] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.923715] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.930643] pci 0000:34:00.0: Signaling PME through PCIe PME interrupt
[2014-07-17 23:43:32][    9.937139] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[2014-07-17 23:43:32][    9.943835] ioapic: probe of 0000:00:05.4 failed with error -22
[2014-07-17 23:43:32][    9.950031] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[2014-07-17 23:43:32][    9.976856] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[2014-07-17 23:43:32][    9.983945] Non-volatile memory driver v1.3
[2014-07-17 23:43:32][    9.988114] Linux agpgart interface v0.103
[2014-07-17 23:43:32][    9.992365] PPP generic driver version 2.4.2
[2014-07-17 23:43:32][    9.996753] i8042: PNP: No PS/2 controller found. Probing ports directly.
[2014-07-17 23:43:32][   11.035097] i8042: No controller found
[2014-07-17 23:43:32][   11.038872] Refined TSC clocksource calibration: 2099.999 MHz.
[2014-07-17 23:43:32][   11.038956] mousedev: PS/2 mouse device common for all mice
[2014-07-17 23:43:32][   11.038996] rtc_cmos 00:07: RTC can wake from S4
[2014-07-17 23:43:32][   11.039214] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
[2014-07-17 23:43:32][   11.039263] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[2014-07-17 23:43:32][   11.039280] cpuidle: using governor ladder
[2014-07-17 23:43:32][   11.039283] cpuidle: using governor menu
[2014-07-17 23:43:32][   11.039287] EFI Variables Facility v0.08 2004-May-17
[2014-07-17 23:43:32][   11.039291] oprofile: using NMI interrupt.
[2014-07-17 23:43:32][   11.084570] Switching to clocksource tsc
[2014-07-17 23:43:32][   11.084733] TCP: cubic registered
[2014-07-17 23:43:32][   11.091875] NET: Registered protocol family 10
[2014-07-17 23:43:32][   11.096743] NET: Registered protocol family 33
[2014-07-17 23:43:32][   11.101446] PM: Hibernation image not present or could not be loaded.
[2014-07-17 23:43:32][   11.107876] registered taskstats version 1
[2014-07-17 23:43:32][   11.113723] modprobe used greatest stack depth: 5304 bytes left
[2014-07-17 23:43:32][   11.125471]   Magic number: 6:558:740
[2014-07-17 23:43:32][   11.129158] pci 0000:ff:0d.2: hash matches
[2014-07-17 23:43:32][   11.133595] -----free_init_page begin=ffffffff8188a000 end=ffffffff81935000
[2014-07-17 23:43:32][   11.142652] Freeing unused kernel memory: 684k freed
[2014-07-17 23:43:32][   11.147762] Write protecting the kernel read-only data: 8192k
[2014-07-17 23:43:32][   11.155508] protect nvram: 1Addr=0xffff88007b000000, 2Addr=0xffff88007b401000, 3Addr=0xffff88007eff0000
[2014-07-17 23:43:32][   11.188601] protect mirror: Addr=0xffffa00000000000
[2014-07-17 23:43:32][   11.200265] -----free_init_page begin=ffff880001474000 end=ffff880001600000
[2014-07-17 23:43:32][   11.215067] Freeing unused kernel memory: 1584k freed
[2014-07-17 23:43:32][   11.220521] -----free_init_page begin=ffff8800017c5000 end=ffff880001800000
[2014-07-17 23:43:32][   11.228691] Freeing unused kernel memory: 236k freed
[2014-07-17 23:43:32][   11.344028] S01boot.debugfs used greatest stack depth: 5256 bytes left
[2014-07-17 23:43:32][   11.512779] hwclock used greatest stack depth: 5040 bytes left
[2014-07-17 23:43:32][   11.659527] KBOX: the config 0x1f is ok.
[2014-07-17 23:43:32][   11.663443] KBOX: the config info is:
[2014-07-17 23:43:32][   11.663445] Product          : pangea
[2014-07-17 23:43:32][   11.663446] Soft version     : Unknown
[2014-07-17 23:43:32][   11.663447] Frame No         : -1
[2014-07-17 23:43:32][   11.663449] Slot No          : -1
[2014-07-17 23:43:32][   11.663450] Location No      : -1
[2014-07-17 23:43:32][   11.663451] Hardware version : pangea-v2
[2014-07-17 23:43:32][   11.663452] 
[2014-07-17 23:43:32][   11.778695] console [kbox_console0] enabled
[2014-07-17 23:43:32][   11.783007] KBOX: load OK
[2014-07-17 23:43:32][   11.799677] kbox_status=0 Changing to=0(maintain(0),working(1))
[2014-07-17 23:43:32][   11.807564] the manage area checksum.
[2014-07-17 23:43:32][   11.814894] kbox:format dev biosnvram
[2014-07-17 23:43:32][   11.819308] file_supports=20
[2014-07-17 23:43:32][   11.823246] kbox_status=0 Changing to=1(maintain(0),working(1))
[2014-07-17 23:43:32][   11.829145] dev_cb:ffff8800661f5240
[2014-07-17 23:43:32][   11.832617] dev_cb: biosnvram
[2014-07-17 23:43:32][   11.905103] Bridge firewalling registered
[2014-07-17 23:43:32][   11.910554] tun: Universal TUN/TAP device driver, 1.6
[2014-07-17 23:43:32][   11.915582] tun: (C) 1999-2004 Max Krasnyansky <maxk-zC7DfRvBq/JWk0Htik3J/w@public.gmane.org>
[2014-07-17 23:43:32][   11.923170] bsp register panic, result=0.bsp register oom, result=0.bsp register die, result=0.
[2014-07-17 23:43:32][   11.935775] bsp: module license 'unspecified' taints kernel.
[2014-07-17 23:43:32][   11.941596] Disabling lock debugging due to kernel taint
[2014-07-17 23:43:32][   11.947769] [2934][54000406044a][INF][It is not pangea r2 platform.][BSP][BSP_Init,3299][insmod]
[2014-07-17 23:43:32][   11.956526] [2937][54000406044f][INF][It is not pangea r1 platform.][BSP][BSP_Init,3306][insmod]
[2014-07-17 23:43:32][   11.965278] [2939][540004060457][INF][It is not pangea r3 platform.][BSP][BSP_Init,3314][insmod]
[2014-07-17 23:43:32][   11.974027] [2941][54000406045b][WAR][It is not pangea r5 platform.][BSP][BSP_Init,3322][insmod]
[2014-07-17 23:43:32][   11.982773] [2943][54000406045c][WAR][It is not pangea r7 or pangea r6 c01 platform.][BSP][BSP_Init,3330][insmod]
[2014-07-17 23:43:32][   11.992991] [2946][5400040603ea][INF][Platform Identified PANGEA V2R1.][BSP][SPV2R1_P.tQuery,120][insmod]
[2014-07-17 23:43:32][   12.002502] [2948][5400040600be][INF][Cpld Regs.][BSP][SPV2R1_P.ldRegs,4165][insmod]
[2014-07-17 23:43:32][   12.010203] [2950][5400040600bf][INF][    00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F.][BSP][SPV2R1_P.ldRegs,4166][insmod]
[2014-07-17 23:43:32][   12.010210] ip_tables: (C) 2000-2006 Netfilter Core Team
[2014-07-17 23:43:32][   12.026970] [2954][5400040600c1][INF][ 00 81 aa 98 10 0d 00 11 00 00 00 08 00 01 00 00 0e.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.038469] [2957][5400040600c1][INF][ 01 00 00 00 02 00 00 ff 00 03 0f 0a 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.049848] ip6_tables: (C) 2000-2006 Netfilter Core Team
[2014-07-17 23:43:32][   12.050050] [2960][5400040600c1][INF][ 02 01 00 05 00 00 00 00 00 00 20 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.050342] [2960][5400040600c1][INF][ 03 03 0f 0a ff 07 03 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.050633] [2960][5400040600c1][INF][ 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.050923] [2960][5400040600c1][INF][ 05 00 00 02 03 00 00 03 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4183][insmod]
[2014-07-17 23:43:32][   12.050926] [2960][5400040600c2][INF][Mce Nvram Regs.][BSP][SPV2R1_P.ldRegs,4187][insmod]
[2014-07-17 23:43:32][   12.050928] [2960][5400040600c3][INF][    -0 -1 -2 -3 -4 -5 -6 -7 -8 -9 -A -B -C -D -E -F.][BSP][SPV2R1_P.ldRegs,4188][insmod]
[2014-07-17 23:43:32][   12.051219] [2960][5400040600c5][INF][ 00- 0f 00 01 00 00 00 15 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.051509] [2960][5400040600c5][INF][ 01- 0c 37 e6 06 d7 fc 98 57 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.051800] [2960][5400040600c5][INF][ 02- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.052090] [2960][5400040600c5][INF][ 03- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.052384] [2961][5400040600c5][INF][ 04- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.052674] [2961][5400040600c5][INF][ 05- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.052964] [2961][5400040600c5][INF][ 06- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.053255] [2961][5400040600c5][INF][ 07- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.053545] [2961][5400040600c5][INF][ 08- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.053835] [2961][5400040600c5][INF][ 09- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.054126] [2961][5400040600c5][INF][ 0a- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.054417] [2961][5400040600c5][INF][ 0b- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.054707] [2961][5400040600c5][INF][ 0c- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.054997] [2961][5400040600c5][INF][ 0d- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.055285] [2961][5400040600c5][INF][ 0e- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.055575] [2961][5400040600c5][INF][ 0f- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.055866] [2961][5400040600c5][INF][ 10- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.056161] [2962][5400040600c5][INF][ 11- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.056452] [2962][5400040600c5][INF][ 12- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.056742] [2962][5400040600c5][INF][ 13- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.057032] [2962][5400040600c5][INF][ 14- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.057323] [2962][5400040600c5][INF][ 15- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.057613] [2962][5400040600c5][INF][ 16- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.057903] [2962][5400040600c5][INF][ 17- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.058194] [2962][5400040600c5][INF][ 18- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.058484] [2962][5400040600c5][INF][ 19- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.058774] [2962][5400040600c5][INF][ 1a- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.059065] [2962][5400040600c5][INF][ 1b- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.059356] [2962][5400040600c5][INF][ 1c- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.059646] [2962][5400040600c5][INF][ 1d- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.059936] [2962][5400040600c5][INF][ 1e- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.060229] [2963][5400040600c5][INF][ 1f- 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00.][BSP][SPV2R1_P.ldRegs,4205][insmod]
[2014-07-17 23:43:32][   12.060284] [2963][54000406043e][INF][BEGIN TO LOAD PANGEA V2R1!][BSP][SPV2R1_Init,2742][insmod]
[2014-07-17 23:43:32][   12.060287] [2963][5400040603ee][INF][Pangea v2r1 platform parameter initialization.][BSP][SPV2R1_P.erInit,1908][insmod]
[2014-07-17 23:43:32][   12.060364] [2963][540004060064][INF][Open SMBUS device success.][BSP][InitSMBusConfig,3925][insmod]
[2014-07-17 23:43:32][   12.060386] [2963][5400040603f1][INF][Init BIOS channel is 0.][BSP][SPV2R1_P.erInit,1944][insmod]
[2014-07-17 23:43:32][   12.060398] [2963][54000406006a][INF][Open GPIO device success.][BSP][SP7_GetGpioBAR,4041][insmod]
[2014-07-17 23:43:32][   12.060664] [2963][5400040600ae][INF][GPIO(20) Used As GPIO.][BSP][SP2_WriteGPIO,1676][insmod]
[2014-07-17 23:43:32][   12.060671] [2963][5400040600b1][INF][GPIO(20) Output Mode.][BSP][SP2_WriteGPIO,1695][insmod]
[2014-07-17 23:43:32][   12.060704] [2963][5400040600ae][INF][GPIO(19) Used As GPIO.][BSP][SP2_WriteGPIO,1676][insmod]
[2014-07-17 23:43:32][   12.060710] [2963][5400040600b1][INF][GPIO(19) Output Mode.][BSP][SP2_WriteGPIO,1695][insmod]
[2014-07-17 23:43:32][   12.060742] [2963][5400040600ae][INF][GPIO(2c) Used As GPIO.][BSP][SP2_WriteGPIO,1676][insmod]
[2014-07-17 23:43:32][   12.060748] [2963][5400040600b1][INF][GPIO(2c) Output Mode.][BSP][SP2_WriteGPIO,1695][insmod]
[2014-07-17 23:43:32][   12.060781] [2963][5400040600ae][INF][GPIO(47) Used As GPIO.][BSP][SP2_WriteGPIO,1676][insmod]
[2014-07-17 23:43:32][   12.060788] [2963][5400040600b1][INF][GPIO(47) Output Mode.][BSP][SP2_WriteGPIO,1695][insmod]
[2014-07-17 23:43:32][   12.068585] [2965][540004060052][INF][Smbus status:(1).][BSP][SP7_Writ.teOnly,3020][insmod]
[2014-07-17 23:43:32][   12.098319] [2972][540004060052][INF][Smbus status:(44).][BSP][SP7_Writ.teOnly,3020][insmod]
[2014-07-17 23:43:32][   12.098331] [2972][540004060053][WAR][Write SMBUS failed.][BSP][SP7_Writ.teOnly,3025][insmod]
[2014-07-17 23:43:32][   12.098334] [2972][540004060274][ERR][Init PCH 9545 error!!][BSP][SP7_InitPCH9545,3882][insmod]
[2014-07-17 23:43:32][   12.098354] [2972][540004060113][INF][The ucBootDevStatus 0.][BSP][DealBIOS.otInfo,2038][insmod]
[2014-07-17 23:43:32][   12.098392] [2972][540004060114][INF][Boot id num is 0.][BSP][DealBIOS.otInfo,2056][insmod]
[2014-07-17 23:43:32][   12.098395] [2972][540004060115][INF][Boot device status num is 0.][BSP][DealBIOS.otInfo,2057][insmod]
[2014-07-17 23:43:32][   12.098450] [2972][540004060289][INF][Bsp begin to register PeerBoard Interrupt handle.][BSP][SPV2R1_I.errupt,4723][insmod]
[2014-07-17 23:43:32][   12.098469] [2972][54000406028d][INF][Registing IRQ(5) fuction success.][BSP][SPV2R1_I.errupt,4744][insmod]
[2014-07-17 23:43:32][   12.098473] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (0), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098478] [2972][540004060286][INF][Register GPE handler event:18, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098495] [2972][540004060288][INF][Register GPE(12) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098498] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (1), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098501] [2972][540004060286][INF][Register GPE handler event:19, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098517] [2972][540004060288][INF][Register GPE(13) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098520] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (2), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098523] [2972][540004060286][INF][Register GPE handler event:29, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098537] [2972][540004060288][INF][Register GPE(1d) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098540] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (4), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098543] [2972][540004060286][INF][Register GPE handler event:20, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098558] [2972][540004060288][INF][Register GPE(14) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098560] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (5), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098564] [2972][540004060286][INF][Register GPE handler event:21, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098578] [2972][540004060288][INF][Register GPE(15) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098581] [2972][540004060283][INF][In Pangea V2R1 register GPE interrupt: (255), handler(          (null)).][BSP][SPV2R1_R.rInner,4599][insmod]
[2014-07-17 23:43:32][   12.098584] [2972][540004060286][INF][Register GPE handler event:28, ret:0.][BSP][SPV2R1_R.rInner,4664][insmod]
[2014-07-17 23:43:32][   12.098600] [2972][540004060288][INF][Register GPE(1c) success.][BSP][SPV2R1_R.rInner,4679][insmod]
[2014-07-17 23:43:32][   12.098703] [2972][54000406008c][INF][Begin To Write 0xf0, value:0x6.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098714] [2972][54000406008c][INF][Begin To Write 0xf1, value:0x5.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098725] [2972][54000406008c][INF][Begin To Write 0xf2, value:0x1.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098736] [2972][54000406008c][INF][Begin To Write 0xf3, value:0x10.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098747] [2972][54000406008c][INF][Begin To Write 0xf4, value:0x2.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098758] [2972][54000406008c][INF][Begin To Write 0xf5, value:0xa5.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098771] [2972][54000406008c][INF][Begin To Write 0xf6, value:0x0.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098782] [2972][54000406008c][INF][Begin To Write 0xf7, value:0x4a.][BSP][WriteRtcCmos,192][insmod]
[2014-07-17 23:43:32][   12.098793] [2972][540004060ff4][INF][Update BIOS version 10.01.05T06 to CMOS successed .][BSP][SP7_Save.ToCmos,993][insmod]
[2014-07-17 23:43:32][   12.098796] [2972][540004060441][INF][SPANGEA V2R1 Init End.][BSP][SPV2R1_Init,2777][insmod]
[2014-07-17 23:43:32][   12.098799] [2972][540004060533][INF][Start BSP Mce Data Init.][BSP][SPV2R1_G.Record,1065][insmod]
[2014-07-17 23:43:32][   12.098945] [2972][5400040605a3][INF][BSP MCE Record Count Zero.][BSP][SPV2R1_G.Record,1087][insmod]
[2014-07-17 23:43:32][   12.098964] [2972][540004060b55][INF][No BIOS MCE Event Logged.][BSP][SPV2R1_G.ceInfo,938][insmod]
[2014-07-17 23:43:32][   12.098967] [2972][5400040605a2][INF][No BSP MCE And BIOS MCE Found.][BSP][SPV2R1_G.mmInfo,1328][insmod]
[2014-07-17 23:43:32][   12.099256] [2972][540004060b5f][INF][DIMM =0, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099258] [2972][540004060b5f][INF][DIMM =1, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099261] [2972][540004060b5f][INF][DIMM =2, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099263] [2972][540004060b5f][INF][DIMM =3, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099265] [2972][540004060b5f][INF][DIMM =4, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099268] [2972][540004060b5f][INF][DIMM =5, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099270] [2972][540004060b5f][INF][DIMM =6, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099272] [2972][540004060b5f][INF][DIMM =7, Mce Count= 0.][BSP][SPV2R1_O.ceInfo,756][insmod]
[2014-07-17 23:43:32][   12.099275] [2972][540004060b5e][INF][This Boot, No MCE Event Logged.][BSP][SPV2R1_O.ceInfo,762][insmod]
[2014-07-17 23:43:32][   12.099349] [2972][54000406052a][INF][BSP MCE reset flag success.][BSP][COM_Rese.ceData,821][insmod]
[2014-07-17 23:43:32][   12.099422] [2972][54000406052b][INF][BSP MCE reset mce success.][BSP][COM_Rese.ceData,824][insmod]
[2014-07-17 23:43:32][   12.099461] [2972][540004060680][INF][Dimm Slot info:15(0).][BSP][SPV2R1_G.otInfo,3720][insmod]
[2014-07-17 23:43:32][   12.099464] [2972][540004060418][WAR][Dimm exist(15),Dimm shield(0).][BSP][SPV2R1_I.tStep2,1655][insmod]
[2014-07-17 23:43:32][   12.099466] [2972][540004060fd4][INF][DIMM :DimmExist  DimmShield.][BSP][SP7_Show.otInfo,4676][insmod]
[2014-07-17 23:43:32][   12.099469] [2972][540004060fd5][INF][DIMM0:    YES    NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099471] [2972][540004060fd5][INF][DIMM1:    NO     NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099474] [2972][540004060fd5][INF][DIMM2:    YES    NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099476] [2972][540004060fd5][INF][DIMM3:    NO     NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099479] [2972][540004060fd5][INF][DIMM4:    YES    NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099481] [2972][540004060fd5][INF][DIMM5:    NO     NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099484] [2972][540004060fd5][INF][DIMM6:    NO     NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.099486] [2972][540004060fd5][INF][DIMM7:    NO     NO .][BSP][SP7_Show.otInfo,4682][insmod]
[2014-07-17 23:43:32][   12.635147] [3106][540004060fd8][INF][Dimm:0 Mem ProdType : RMS6101EB68FAW1600.][BSP][SP7_Disp.emInfo,4741][insmod]
[2014-07-17 23:43:32][   12.694667] [3121][540004060fda][INF][Dimm:0 Mem Manufactorying date : 1339.][BSP][SP7_Disp.emInfo,4751][insmod]
[2014-07-17 23:43:32][   13.230277] [3255][540004060fd8][INF][Dimm:2 Mem ProdType : RMS6101EB68FAW1600.][BSP][SP7_Disp.emInfo,4741][insmod]
[2014-07-17 23:43:32][   13.289791] [3270][540004060fda][INF][Dimm:2 Mem Manufactorying date : 1339.][BSP][SP7_Disp.emInfo,4751][insmod]
[2014-07-17 23:43:32][   13.835504] [3407][540004060fd8][INF][Dimm:4 Mem ProdType : RMS6101EB68FAW1600.][BSP][SP7_Disp.emInfo,4741][insmod]
[2014-07-17 23:43:32][   13.905401] [3424][540004060fda][INF][Dimm:4 Mem Manufactorying date : 1339.][BSP][SP7_Disp.emInfo,4751][insmod]
[2014-07-17 23:43:32][   13.915597] [3427][54000406041a][INF][Caterr,MC6_MISC:0x0.][BSP][SPV2R1_I.tStep2,1676][insmod]
[2014-07-17 23:43:32][   13.924240] [3429][540004060438][INF][Bsp Version is : 2014.05.30.T01.][BSP][SPV2R1_I.tStep2,1688][insmod]
[2014-07-17 23:43:32][   13.933858] [3432][540004060740][INF][BSP Write Temp Target:0x54 Success.][BSP][SyncTemp.oLogic,1026][insmod]
[2014-07-17 23:43:32][   14.123665] [3479][1500003e5011c][INFO][Syscall ready.][VOS][LVOS_SyscallInit,161][modprobe]
[2014-07-17 23:43:32][   14.135469] [3482][1500003e50137][INFO][VOS build version: (VOS v1.1) (Jul  4 2014) (02:37:43).][VOS][LVOS_Init,134][modprobe]
[2014-07-17 23:43:32][   14.147029] modprobe used greatest stack depth: 4848 bytes left
[2014-07-17 23:43:32][   14.169086] [3490][1500003fa00bf][INFO][Initialize Rnvram module. Tthe major device number is 250 and the minor device number is 0.][NONE][OS_RnvramInitModule,528][modprobe]
[2014-07-17 23:43:32][   14.184498] OS_POWERDOWN_FLAG=-205913027
[2014-07-17 23:43:32][   14.188423] [3495][1500003fa00ba][INFO][MemCallUserMode virtual address is 0xffff88005b154000, the physical address is 0x5b154000][NONE][OS_InitCallUserMode,60][modprobe]
[2014-07-17 23:43:32][   14.238810] [3508][540004060fb0][INF][Begin To Register Handler For Interrupt:0x0.][BSP][SPV2R1_R.andler,4307][modprobe]
[2014-07-17 23:43:32][   14.261622] [3514][540004060117][INF][Boot id:0.][BSP][SP2_Read.evName,2254][modprobe]
[2014-07-17 23:43:32][   14.269501] [3516][540004060118][INF][Boot name:/dev/sda.][BSP][SP2_Read.evName,2296][modprobe]
[2014-07-17 23:43:32][   14.278153] boot is /dev/sda
[2014-07-17 23:43:32][   14.293164] OS_Proc_Init:4714:Now start RST note check!
[2014-07-17 23:43:32][   14.310359] [3526][540004060a03][INF][Reset type form CPLD:3.][BSP][SP5_GetR.etType,1369][modprobe]
[2014-07-17 23:43:32][   14.319371] [3528][540004060a04][INF][Last reset type form CPLD:f.][BSP][SP5_GetR.etType,1377][modprobe]
[2014-07-17 23:43:32][   14.328814] [3530][540004060a05][INF][Last last reset type form CPLD:a.][BSP][SP5_GetR.etType,1385][modprobe]
[2014-07-17 23:43:32][   14.338686] [3533][540004060a06][INF][Logic private-reset-reason date form CPLD:0.][BSP][SP5_GetR.etType,1390][modprobe]
[2014-07-17 23:43:32][   14.349499] [3536][1500003fa0036][INFO][BSP get reset type(reset type is 3).][NONE][OS_NoteOfResetCheck,861][modprobe]
[2014-07-17 23:43:32][   14.372055] [3541][1500003fa003a][ERR][The reason of MCE reset is ][NONE][OS_NoteOfResetCheck,874][modprobe]
[2014-07-17 23:43:32][   14.381830] 
[2014-07-17 23:43:32][   14.381831] --the information stored in logic area begin--
[2014-07-17 23:43:32][   14.400984] the reset reson read from logic is 3
[2014-07-17 23:43:32][   14.406014] 
[2014-07-17 23:43:32][   14.407930] 
[2014-07-17 23:43:32][   14.409846] 
[2014-07-17 23:43:32][   14.411761] 
[2014-07-17 23:43:32][   14.414733] RIP=0000000000000000 RSP=0000000000000000 RAX=0000000000000000
[2014-07-17 23:43:32][   14.421572] RBX=0000000000000000 RCX=0000000000000000 RDX=0000000000000000
[2014-07-17 23:43:32][   14.428410] RSI=0000000000000000 RDI=0000000000000000 RBP=0000000000000000
[2014-07-17 23:43:32][   14.435246] R08=0000000000000000 R09=0000000000000000 R10=0000000000000000
[2014-07-17 23:43:32][   14.442085] R11=0000000000000000 R12=0000000000000000 R13=0000000000000000
[2014-07-17 23:43:32][   14.448922] R14=0000000000000000 R15=0000000000000000
[2014-07-17 23:43:32][   14.453946] STACK:
[2014-07-17 23:43:32][   14.456032] ffff88010d1f3e38 
[2014-07-17 23:43:32][   14.458898] 0000000000000086 
[2014-07-17 23:43:32][   14.461947] ffff88010d1f3d08 
[2014-07-17 23:43:32][   14.464991] ffff88010d1f2010 
[2014-07-17 23:43:32][   14.468052] 0000000000015a00 
[2014-07-17 23:43:32][   14.471103] 0000000000015a00 
[2014-07-17 23:43:32][   14.474151] 0000000000015a00 
[2014-07-17 23:43:32][   14.477224] 0000000000015a00 
[2014-07-17 23:43:32][   14.480268] ffff88010d1f3fd8 
[2014-07-17 23:43:32][   14.483319] ffff88010d1f3fd8 
[2014-07-17 23:43:32][   14.486368] 0000000000015a00 
[2014-07-17 23:43:32][   14.489418] 0000000000015a00 
[2014-07-17 23:43:32][   14.492462] ffff880069e56680 
[2014-07-17 23:43:32][   14.495510] ffffffff81813020 
[2014-07-17 23:43:32][   14.498559] 0000002400000000 
[2014-07-17 23:43:32][   14.501607] ffff880109883b78 
[2014-07-17 23:43:32][   14.504652] ffff88010a094e18 
[2014-07-17 23:43:32][   14.507700] 0000000000000051 
[2014-07-17 23:43:32][   14.510749] ffff880069e56680 
[2014-07-17 23:43:32][   14.513799] ffff88010d1f3e38 
[2014-07-17 23:43:32][   14.516844] ffff88010d1f3f28 
[2014-07-17 23:43:32][   14.519898] ffff880059761000 
[2014-07-17 23:43:32][   14.522946] ffff88010d1f3e28 
[2014-07-17 23:43:32][   14.525998] ffffffff8115803f 
[2014-07-17 23:43:32][   14.529061] ffff88010d1f3dc8 
[2014-07-17 23:43:32][   14.532108] 0000000000000296 
[2014-07-17 23:43:32][   14.535156] ffff88010d1f3db8 
[2014-07-17 23:43:32][   14.538206] ffff88010d1f3db8 
[2014-07-17 23:43:32][   14.541254] ffff88010d1f3de8 
[2014-07-17 23:43:32][   14.544300] ffff88006a281cf0 
[2014-07-17 23:43:32][   14.547349] ffff8801098651e0 
[2014-07-17 23:43:32][   14.550398] ffff88006a281738 
[2014-07-17 23:43:32][   14.553445] ffff88006a281c48 
[2014-07-17 23:43:32][   14.556492] 0000000000000292 
[2014-07-17 23:43:32][   14.559541] ffff88010d1f3e18 
[2014-07-17 23:43:32][   14.562592] 0000000000000292 
[2014-07-17 23:43:32][   14.565642] ffff88010d1f3f28 
[2014-07-17 23:43:32][   14.568687] ffff880069e56680 
[2014-07-17 23:43:32][   14.571737] ffff88010d1f3e80 
[2014-07-17 23:43:32][   14.574787] ffff880069e56680 
[2014-07-17 23:43:32][   14.577837] 0000000000000296 
[2014-07-17 23:43:32][   14.580882] 0000000000000006 
[2014-07-17 23:43:32][   14.583931] ffff88010d1f3e58 
[2014-07-17 23:43:32][   14.586979] ffffffff814611c9 
[2014-07-17 23:43:32][   14.590027] ffff88010d1f3e80 
[2014-07-17 23:43:32][   14.593087] ffff88010d1f3e68 
[2014-07-17 23:43:32][   14.596133] ffff88010d1f3eb8 
[2014-07-17 23:43:32][   14.599182] ffffffffa0982355 
[2014-07-17 23:43:32][   14.602232] 0000000000000001 
[2014-07-17 23:43:32][   14.605281] ffff880069e56680 
[2014-07-17 23:43:32][   14.608325] ffffffff8105d830 
[2014-07-17 23:43:32][   14.611374] ffffffffa0984420 
[2014-07-17 23:43:32][   14.614424] ffffffffa0984420 
[2014-07-17 23:43:32][   14.617474] ffffffff8113a0d9 
[2014-07-17 23:43:32][   14.620520] 0000000000000000 
[2014-07-17 23:43:32][   14.623568] 0000000000000000 
[2014-07-17 23:43:32][   14.626616] 0000000000000000 
[2014-07-17 23:43:32][   14.629665] 0000000000000005 
[2014-07-17 23:43:32][   14.632709] ffff88010d1f3ee8 
[2014-07-17 23:43:32][   14.635761] ffffffffa0982cc5 
[2014-07-17 23:43:32][   14.638810] ffff88010d1f3ed8 
[2014-07-17 23:43:32][   14.641861] 0000000000000020 
[2014-07-17 23:43:32][   14.644817] --the information stored in logic area end--
[2014-07-17 23:43:32][   14.671099] [3616][1500003fa007c][INFO][In last 30 minutes system rebooted 2 times.][NONE][OS_Proc_Init,4723][modprobe]
[2014-07-17 23:43:32][   14.681828] [3619][1500003fa007d][INFO][Hardware reboot 0 times][NONE][OS_Proc_Init,4726][modprobe]
[2014-07-17 23:43:32][   14.690827] [3621][1500003fa007d][INFO][WatchDog reboot 0 times][NONE][OS_Proc_Init,4728][modprobe]
[2014-07-17 23:43:32][   14.699825] [3623][1500003fa007d][INFO][Software reboot 1 times][NONE][OS_Proc_Init,4730][modprobe]
[2014-07-17 23:43:32][   14.708834] [3626][1500003fa007d][INFO][Powerdown reboot 0 times][NONE][OS_Proc_Init,4732][modprobe]
[2014-07-17 23:43:32][   14.717919] [3628][1500003fa007d][INFO][OOPS reboot 0 times][NONE][OS_Proc_Init,4734][modprobe]
[2014-07-17 23:43:32][   14.726575] [3630][1500003fa007d][INFO][Unknow reboot 0 times][NONE][OS_Proc_Init,4736][modprobe]
[2014-07-17 23:43:32][   14.735402] [3632][1500003fa007d][INFO][OOM reboot 0 times][NONE][OS_Proc_Init,4738][modprobe]
[2014-07-17 23:43:32][   14.743970] [3634][1500003fa007d][INFO][Panic reboot 0 times][NONE][OS_Proc_Init,4740][modprobe]
[2014-07-17 23:43:32][   14.752709] [3636][1500003fa007d][INFO][Kernel reboot 0 times][NONE][OS_Proc_Init,4742][modprobe]
[2014-07-17 23:43:32][   14.761536] [3639][1500003fa007d][INFO][Poweron reboot 1 times][NONE][OS_Proc_Init,4744][modprobe]
[2014-07-17 23:43:32][   14.770450] [3641][1500003fa007d][INFO][Mce reboot 0 times][NONE][OS_Proc_Init,4746][modprobe]
[2014-07-17 23:43:32][   14.779015] [3643][1500003fa007d][INFO][Bios reboot 0 times][NONE][OS_Proc_Init,4749][modprobe]
[2014-07-17 23:43:32][   14.787667] [3645][1500003fa007d][INFO][S3failsoft reboot 0 times][NONE][OS_Proc_Init,4751][modprobe]
[2014-07-17 23:43:32][   14.796838] [3648][1500003fa007d][INFO][S3failwdg reboot 0 times][NONE][OS_Proc_Init,4753][modprobe]
[2014-07-17 23:43:32][   14.805921] [3650][1500003fa007d][INFO][S3failbutton reboot 0 times][NONE][OS_Proc_Init,4755][modprobe]
[2014-07-17 23:43:32][   14.815265] [3652][1500003fa007d][INFO][Update logic reboot 0 times][NONE][OS_Proc_Init,4758][modprobe]
[2014-07-17 23:43:32][   14.824609] [3654][1500003fa007d][INFO][Update bios reboot 0 times][NONE][OS_Proc_Init,4760][modprobe]
[2014-07-17 23:43:32][   14.833868] [3657][1500003fa007d][INFO][Memsoft reboot 0 times][NONE][OS_Proc_Init,4762][modprobe]
[2014-07-17 23:43:32][   14.842779] [3659][1500003fa007d][INFO][Memwdg reboot 0 times][NONE][OS_Proc_Init,4764][modprobe]
[2014-07-17 23:43:32][   14.851605] [3661][1500003fa007d][INFO][Membutton reboot 0 times][NONE][OS_Proc_Init,4766][modprobe]
[2014-07-17 23:43:32][   14.860703] [3664][1500003fa007d][INFO][Bspwatchdog reboot 0 times][NONE][OS_Proc_Init,4768][modprobe]
[2014-07-17 23:43:32][   14.869961] [3666][1500003fa007d][INFO][Cputemp reboot 0 times][NONE][OS_Proc_Init,4770][modprobe]
[2014-07-17 23:43:32][   14.878873] [3668][1500003fa007d][INFO][Changebios reboot 0 times][NONE][OS_Proc_Init,4772][modprobe]
[2014-07-17 23:43:32][   14.888045] [3670][1500003fa007d][INFO][Ecc reboot 0 times][NONE][OS_Proc_Init,4774][modprobe]
[2014-07-17 23:43:32][   14.896611] [3673][1500003fa007d][INFO][Software unknown reboot 0 times][NONE][OS_Proc_Init,4779][modprobe]
[2014-07-17 23:43:32][   14.906299] [3675][1500003fa007d][INFO][Bsp failure recovery reboot 0 times.][NONE][OS_Proc_Init,4783][modprobe]
[2014-07-17 23:43:32][   14.916433] OS_Proc_Init:4830:last_reset_reason:software reset is_last_reset_serious:0
[2014-07-17 23:43:32][   14.954565] FeedDog begin!
[2014-07-17 23:43:32][   15.004800] Loading module: nvram_printk ok.
[2014-07-17 23:43:32][   15.026958] Loading module: ext3 ok.
[2014-07-17 23:43:32][   15.040300] md: raid1 personality registered for level 1
[2014-07-17 23:43:32][   15.050906] Loading module: raid1 ok.
[2014-07-17 23:43:32][   15.064577] ipmi message handler version 39.2
[2014-07-17 23:43:32][   15.074242] Loading module: ipmi_msghandler ok.
[2014-07-17 23:43:32][   15.088582] ipmi device interface
[2014-07-17 23:43:32][   15.097156] Loading module: ipmi_devintf ok.
[2014-07-17 23:43:32][   15.111360] IPMI System Interface driver.
[2014-07-17 23:43:32][   15.115437] ipmi_si: Adding default-specified kcs state machine
[2014-07-17 23:43:32][   15.121360] ipmi_si: Trying default-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[2014-07-17 23:43:32][   15.131323] ipmi_si: Interface detection failed
[2014-07-17 23:43:32][   15.135876] ipmi_si: Adding default-specified smic state machine
[2014-07-17 23:43:32][   15.141867] ipmi_si: Trying default-specified smic state machine at i/o address 0xca9, slave address 0x0, irq 0
[2014-07-17 23:43:32][   15.151897] ipmi_si: Interface detection failed
[2014-07-17 23:43:32][   15.156421] ipmi_si: Adding default-specified bt state machine
[2014-07-17 23:43:32][   15.162242] ipmi_si: Trying default-specified bt state machine at i/o address 0xe4, slave address 0x0, irq 0
[2014-07-17 23:43:32][   15.172022] ipmi_si: Interface detection failed
[2014-07-17 23:43:32][   15.176599] ipmi_si: Unable to find any System Interface(s)
[2014-07-17 23:43:32][   15.187822] Loading module: ipmi_si fail.
[2014-07-17 23:43:32][   15.197248] Loading module: ipmi_si ok.
[2014-07-17 23:43:32][   15.222808] [3754][540004060fb0][INF][Begin To Register Handler For Interrupt:0x8.][BSP][SPV2R1_R.andler,4307][modprobe]
[2014-07-17 23:43:32][   15.233640] Execute OS_RegisterOfMgtHotPlug Succeed.
[2014-07-17 23:43:32][   15.238589] OS_RegisterOfMgtHotPlug Succeed.
[2014-07-17 23:43:32][   15.248161] Loading module: os_flush_mgt_ip_config ok.
[2014-07-17 23:43:32][   15.268299] Loading module: agetty_interface ok.
[2014-07-17 23:43:32][   15.280545] Executing /usr/Euler/hook/insmod_drv_hook ...
[2014-07-17 23:43:32][   15.344145] [3785][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   15.400497] [3799][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   15.421647] [3804][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   15.477775] [3818][540004060117][INF][Boot id:0.][BSP][SP2_Read.evName,2254][cat]
[2014-07-17 23:43:32][   15.485221] [3820][540004060118][INF][Boot name:/dev/sda.][BSP][SP2_Read.evName,2296][cat]
[2014-07-17 23:43:32][   15.493441] boot disk is /dev/sda
[2014-07-17 23:43:32][   15.532882] [3832][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   15.589340] [3846][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   15.610178] [3851][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   15.631261] boot disk is /dev/sda
[2014-07-17 23:43:32][   15.674308] [3867][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   15.730054] [3881][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   15.751258] [3886][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   15.772358] boot disk is /dev/sda
[2014-07-17 23:43:32][   15.812141] [3902][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   15.868763] [3916][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   15.889915] [3921][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   15.910801] boot disk is /dev/sda
[2014-07-17 23:43:32][   19.010280] Matching,product name is PANGEA_V2R1C00
[2014-07-17 23:43:32][   19.019926] Execute /usr/Euler/hook/insmod_drv_hook/S00_Parse_Initrd_Config.sh success
[2014-07-17 23:43:32][   19.035707] SCSI subsystem initialized
[2014-07-17 23:43:32][   19.048530] [4712][0000500004050281][INFO][START of DRV_ConfigFileMemorized.][DRV_API][DRV_ConfigFileMemorize,907]
[2014-07-17 23:43:32][   19.264393] [4766][000050000405027b][INFO][ItemNum is 16627.][DRV_API][DRV_GetSectionItemNum,703]
[2014-07-17 23:43:32][   19.273220] [4768][000050000405027c][INFO][SectionNum is 455.][DRV_API][DRV_GetSectionItemNum,704]
[2014-07-17 23:43:32][   19.282947] [4770][0000500004050285][INFO][Section Num is 455.][DRV_API][DRV_ConfigFileMemorize,935]
[2014-07-17 23:43:32][   19.693211] [4873][0000500004050289][INFO][END of DRV_ConfigFileMemorized.][DRV_API][DRV_ConfigFileMemorize,991]
[2014-07-17 23:43:32][   19.703333] [4876][000050000405028c][INFO][DRV_ConfigFileMemorizeInit Successed.][DRV_API][DRV_ConfigFileMemorizeInit,1050]
[2014-07-17 23:43:32][   19.714403] [4878][00005000040503bc][INFO][DRV_ConfigFileMemorizeInit Success!][DRV_API][DRV_Init,188]
[2014-07-17 23:43:32][   19.723665] [4881][0000500004050267][INFO][MemNum 8 MemSize 1.][DRV_API][DRV_GetProtMemInfo,291]
[2014-07-17 23:43:32][   19.732581] [4883][0000500004050268][INFO][No.0 MemAddr is ffff880068f00000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.744774] [4886][0000500004050268][INFO][No.1 MemAddr is ffff880065400000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.756966] [4889][0000500004050268][INFO][No.2 MemAddr is ffff880065500000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.769162] [4892][0000500004050268][INFO][No.3 MemAddr is ffff880065600000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.781355] [4895][0000500004050268][INFO][No.4 MemAddr is ffff880065700000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.793548] [4898][0000500004050268][INFO][No.5 MemAddr is ffff880065800000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.805742] [4901][0000500004050268][INFO][No.6 MemAddr is ffff880065900000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.817930] [4904][0000500004050268][INFO][No.7 MemAddr is ffff880065a00000, verify 0xdeadbeaf state 0.][DRV_API][DRV_InitPortMem,352]
[2014-07-17 23:43:32][   19.829953] ****************************pnpm flag is 0***********************
[2014-07-17 23:43:32][   19.837055] [4909][0000500004050882][INFO][Xnet interface template Init successed.][DRV_API][DRV_XnetIntfInit,47]
[2014-07-17 23:43:32][   19.847266] [4912][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(2) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.859457] [4915][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(3) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.871650] [4918][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(4) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.883843] [4921][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(6) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.896036] [4924][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(7) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.908227] [4927][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(11) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.920505] [4930][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(14) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.932784] [4933][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(18) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.945062] [4936][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(19) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.957339] [4939][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(20) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.969620] [4942][0000500004050669][INFO][Dev handle index table ERROR,g_astDevHandle(23) =NULL!][DRV_API][DRV_InitDevHandleIndexTab,82]
[2014-07-17 23:43:32][   19.981911] [4945][00005000040507b4][INFO][PNPM Subscribe Success.][DRV_API][DRV_PNPM_SubscribeHotPlug,527]
[2014-07-17 23:43:32][   19.991604] [4948][000050000405078e][INFO][Driver section has 13 drivers.][DRV_API][DRV_PNPM_GetDriverList,847]
[2014-07-17 23:43:32][   20.001737] [4950][0000500004050786][INFO][Get base drivernum 4.][DRV_API][DRV_PNPMComm_GetDevGroup,682]
[2014-07-17 23:43:32][   20.011171] [4953][0000500004050787][INFO][Malloc mem ffff880072a14800.][DRV_API][DRV_PNPMComm_GetDevGroup,688]
[2014-07-17 23:43:32][   20.021209] [4955][0000500004050787][INFO][Malloc mem ffff880072a14700.][DRV_API][DRV_PNPMComm_GetDevGroup,688]
[2014-07-17 23:43:32][   20.031243] [4958][0000500004050787][INFO][Malloc mem ffff880072a14600.][DRV_API][DRV_PNPMComm_GetDevGroup,688]
[2014-07-17 23:43:32][   20.041279] [4960][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.051226] [4963][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.061173] [4965][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.071120] [4968][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.081072] [4970][0000500004050787][INFO][Malloc mem ffff880072a14500.][DRV_API][DRV_PNPMComm_GetDevGroup,688]
[2014-07-17 23:43:32][   20.091109] [4973][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.101055] [4975][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.111003] [4978][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.120950] [4980][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.130899] [4983][0000500004050796][INFO][Free mem ffff880072a14800.][DRV_API][DRV_PNPM_SetBaseFlag,988]
[2014-07-17 23:43:32][   20.140418] [4985][0000500004050796][INFO][Free mem ffff880072a14700.][DRV_API][DRV_PNPM_SetBaseFlag,988]
[2014-07-17 23:43:32][   20.149929] [4988][0000500004050796][INFO][Free mem ffff880072a14600.][DRV_API][DRV_PNPM_SetBaseFlag,988]
[2014-07-17 23:43:32][   20.159442] [4990][0000500004050796][INFO][Free mem ffff880072a14500.][DRV_API][DRV_PNPM_SetBaseFlag,988]
[2014-07-17 23:43:32][   20.168960] [4992][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.178907] [4995][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.188854] [4997][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.198801] [5000][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.210294] [5003][0000500004050761][WARN][Copy /OSM/modules/dev.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.222149] [5006][000050000405076c][WARN][Copy /OSM/modules/dev.ko to dev.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.232789] [5008][0000500004050769][INFO][Base driver PCIE not needed copy.][DRV_API][DRV_PNPM_BackupKO,277]
[2014-07-17 23:43:32][   20.243935] [5011][0000500004050761][WARN][Copy /OSM/modules/pmsas.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.255955] [5014][000050000405076c][WARN][Copy /OSM/modules/pmsas.ko to pmsas.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.268189] [5017][0000500004050761][WARN][Copy /OSM/modules/fceventhandle.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.280899] [5020][000050000405076c][WARN][Copy /OSM/modules/fceventhandle.ko to fceventhandle.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.294571] [5024][0000500004050761][WARN][Copy /OSM/modules/fcdrv.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.306591] [5027][000050000405076c][WARN][Copy /OSM/modules/fcdrv.ko to fcdrv.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.317576] [5029][0000500004050769][INFO][Base driver NIC not needed copy.][DRV_API][DRV_PNPM_BackupKO,277]
[2014-07-17 23:43:32][   20.328618] [5032][0000500004050761][WARN][Copy /OSM/modules/libfc.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.340639] [5035][000050000405076c][WARN][Copy /OSM/modules/libfc.ko to libfc.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.352892] [5038][0000500004050761][WARN][Copy /OSM/modules/lfcoe.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.364912] [5041][000050000405076c][WARN][Copy /OSM/modules/lfcoe.ko to lfcoe.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.377174] [5044][0000500004050761][WARN][Copy /OSM/modules/foe.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.389021] [5047][000050000405076c][WARN][Copy /OSM/modules/foe.ko to foe.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.399662] [5050][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.409611] [5053][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.419557] [5055][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.429505] [5057][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.440721] [5060][0000500004050761][WARN][Copy /OSM/modules/drvtoecore.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.453172] [5063][000050000405076c][WARN][Copy /OSM/modules/drvtoecore.ko to drvtoecore.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.466290] [5067][0000500004050761][WARN][Copy /OSM/modules/drvtom.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.478396] [5070][000050000405076c][WARN][Copy /OSM/modules/drvtom.ko to drvtom.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.489551] [5073][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.499498] [5075][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.509448] [5078][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.519396] [5080][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.529342] [5082][0000500004050769][INFO][Base driver GE not needed copy.][DRV_API][DRV_PNPM_BackupKO,277]
[2014-07-17 23:43:32][   20.539030] [5085][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.548976] [5087][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.558923] [5090][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.568870] [5092][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.578819] [5095][0000500004050769][INFO][Base driver 10GE not needed copy.][DRV_API][DRV_PNPM_BackupKO,277]
[2014-07-17 23:43:32][   20.588678] [5097][00005000040507ed][INFO][Drv id 14 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.598625] [5100][00005000040507ed][INFO][Drv id 15 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.608571] [5102][00005000040507ed][INFO][Drv id 16 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.618519] [5105][00005000040507ed][INFO][Drv id 17 NOT has Name.][DRV_API][DRV_PNPM_FindDriverIdByName,1254]
[2014-07-17 23:43:32][   20.629753] [5108][0000500004050761][WARN][Copy /OSM/modules/cxgb4.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.641774] [5111][000050000405076c][WARN][Copy /OSM/modules/cxgb4.ko to cxgb4.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.654011] [5114][0000500004050761][WARN][Copy /OSM/modules/ddup.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.665944] [5117][000050000405076c][WARN][Copy /OSM/modules/ddup.ko to ddup.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.678039] [5120][0000500004050761][WARN][Copy /OSM/modules/sal.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.689887] [5123][000050000405076c][WARN][Copy /OSM/modules/sal.ko to sal.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.701794] [5126][0000500004050761][WARN][Copy /OSM/modules/spcv.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.713729] [5129][000050000405076c][WARN][Copy /OSM/modules/spcv.ko to spcv.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.725804] [5132][0000500004050761][WARN][Copy /OSM/modules/ib_core.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.737996] [5135][000050000405076c][WARN][Copy /OSM/modules/ib_core.ko to ib_core.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.750581] [5138][0000500004050761][WARN][Copy /OSM/modules/mlx4_core.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.762947] [5141][000050000405076c][WARN][Copy /OSM/modules/mlx4_core.ko to mlx4_core.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.775869] [5144][0000500004050761][WARN][Copy /OSM/modules/ib_mad.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.787975] [5147][000050000405076c][WARN][Copy /OSM/modules/ib_mad.ko to ib_mad.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.800380] [5150][0000500004050761][WARN][Copy /OSM/modules/ib_umad.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.812574] [5153][000050000405076c][WARN][Copy /OSM/modules/ib_umad.ko to ib_umad.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.825152] [5157][0000500004050761][WARN][Copy /OSM/modules/mlx4_ib.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.837345] [5160][000050000405076c][WARN][Copy /OSM/modules/mlx4_ib.ko to mlx4_ib.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.849935] [5163][0000500004050761][WARN][Copy /OSM/modules/ib_sa.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.861955] [5166][000050000405076c][WARN][Copy /OSM/modules/ib_sa.ko to ib_sa.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.874330] [5169][0000500004050761][WARN][Copy /OSM/modules/ib_cm.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.886355] [5172][000050000405076c][WARN][Copy /OSM/modules/ib_cm.ko to ib_cm.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.898607] [5175][0000500004050761][WARN][Copy /OSM/modules/ib_uverbs.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.910974] [5178][000050000405076c][WARN][Copy /OSM/modules/ib_uverbs.ko to ib_uverbs.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.923903] [5181][0000500004050761][WARN][Copy /OSM/modules/ib_srpt.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.936096] [5184][000050000405076c][WARN][Copy /OSM/modules/ib_srpt.ko to ib_srpt.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.948663] [5187][0000500004050761][WARN][Copy /OSM/modules/ibtgt.ko to /OSM/modules/pnpmko/ failed.][DRV_API][DRV_PNPMComm_Copy,151]
[2014-07-17 23:43:32][   20.960682] [5190][000050000405076c][WARN][Copy /OSM/modules/ibtgt.ko to ibtgt.ko failed!][DRV_API][DRV_PNPM_BackupKO,302]
[2014-07-17 23:43:32][   20.971667] [5193][000050000405076d][INFO][PNPM backup ko over.][DRV_API][DRV_PNPM_BackupKO,310]
[2014-07-17 23:43:32][   20.980408] [5195][0000500004050664][INFO][Get BSP VERSION suc:2014.05.30.T01.][DRV_API][DRV_BSP_RegDrvModToFrame,296]
[2014-07-17 23:43:32][   20.991048] [5198][00005000040507b7][INFO][Will registe Module (BSP), ID(20).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:43:32][   21.000913] [5201][00005000040507e1][INFO][Module ID (20) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:43:32][   21.011726] [5203][00005000040507e3][INFO][Module (20) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:43:32][   21.022884] [5206][00005000040507ba][INFO][Driver (BSP) id (20) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:43:32][   21.033958] [5209][0000500004050002][INFO][DRV_DRVDEVRegIntfTemplate.][DRV_API][DRV_DRVDEVRegIntfTemplate,161]
[2014-07-17 23:43:32][   21.043908] [5211][000050000405002c][INFO][Internal Regist API.][DRV_API][DRV_InternalIntfRegister,500]
[2014-07-17 23:43:32][   21.053252] [5214][0000500004050636][INFO][Heal init successed.][DRV_API][DRV_HEAL_Init,95]
[2014-07-17 23:43:32][   21.061561] [5216][00005000040503c3][INFO][Drv frame insmod OK.][DRV_API][DRV_Init,315]
[2014-07-17 23:43:32][   21.078280] [5220][000050000417000b][INFO][Set vendor_id succeed value:0x8086 ][SATA][SATA_GetCfgParms,522]
[2014-07-17 23:43:32][   21.087980] [5222][000050000417000b][INFO][Set device_id succeed value:0x1d02 ][SATA][SATA_GetCfgParms,522]
[2014-07-17 23:43:32][   21.097666] [5225][000050000417000b][INFO][Set port_addr succeed value:0x5b ][SATA][SATA_GetCfgParms,522]
[2014-07-17 23:43:32][   21.107185] [5227][000050000417000b][INFO][Set portid succeed value:0x0 ][SATA][SATA_GetCfgParms,522]
[2014-07-17 23:43:32][   21.117722] ahci_init:vendor_id 8086 device_id 1d02 port_addr 5b portid 0
[2014-07-17 23:43:32][   21.124470] [5231][00005000040507b7][INFO][Will registe Module (SATA), ID(12).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:43:32][   21.135788] [5234][00005000040507e1][INFO][Module ID (12) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:43:32][   21.147970] [5237][00005000040507e3][INFO][Module (12) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:43:32][   21.160504] [5240][00005000040507ba][INFO][Driver (SATA) id (12) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:43:32][   21.173038] [5244][000050000417002c][INFO][Satahp module begin.][SATA][pangea_satassd_init_module,649]
[2014-07-17 23:43:32][   21.183665] [5246][000050000417002d][INFO][SATA module version is : 01.01.03.T37][SATA][pangea_satassd_init_module,652]
[2014-07-17 23:43:32][   21.199861] libata version 3.00 loaded.
[2014-07-17 23:43:32][   21.206141] ahci 0000:00:1f.2: version 3.0
[2014-07-17 23:43:32][   21.210341] ahci 0000:00:1f.2: irq 81 for MSI/MSI-X
[2014-07-17 23:43:32][   21.215279] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
[2014-07-17 23:43:32][   21.223328] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck led clo pio slum part ems apst 
[2014-07-17 23:43:32][   21.231466] ahci 0000:00:1f.2: setting latency timer to 64
[2014-07-17 23:43:32][   21.236935] 64bit 0000:00:1f.2 uses identity mapping
[2014-07-17 23:43:32][   21.241907] [5261][0000500004170002][INFO][Turn interrupt off.][SATA][ahci_freeze,1858]
[2014-07-17 23:43:32][   21.249901] [5263][0000500004170002][INFO][Turn interrupt off.][SATA][ahci_freeze,1858]
[2014-07-17 23:43:32][   21.258647] scsi0 : ahci
[2014-07-17 23:43:32][   21.261358] scsi1 : ahci
[2014-07-17 23:43:32][   21.263967] scsi2 : ahci
[2014-07-17 23:43:32][   21.266579] scsi3 : ahci
[2014-07-17 23:43:32][   21.269190] scsi4 : ahci
[2014-07-17 23:43:32][   21.271791] scsi5 : ahci
[2014-07-17 23:43:32][   21.274389] ata1: SATA max UDMA/133 abar m2048@0x98524000 port 0x98524100 irq 81
[2014-07-17 23:43:32][   21.281749] ata2: SATA max UDMA/133 abar m2048@0x98524000 port 0x98524180 irq 81
[2014-07-17 23:43:32][   21.289107] ata3: DUMMY
[2014-07-17 23:43:32][   21.291538] ata4: DUMMY
[2014-07-17 23:43:32][   21.293973] ata5: DUMMY
[2014-07-17 23:43:32][   21.296409] ata6: DUMMY
[2014-07-17 23:43:32][   21.298889] [5275][0000500004170002][INFO][Turn interrupt off.][SATA][ahci_freeze,1858]
[2014-07-17 23:43:32][   21.306873] [5277][0000500004170002][INFO][Turn interrupt off.][SATA][ahci_freeze,1858]
[2014-07-17 23:43:32][   21.624017] [5357][0000500004170003][INFO][Turn interrupt on.][SATA][ahci_thaw,1876]
[2014-07-17 23:43:32][   21.631720] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[2014-07-17 23:43:32][   21.637880] [5360][0000500004170003][INFO][Turn interrupt on.][SATA][ahci_thaw,1876]
[2014-07-17 23:43:32][   21.645581] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[2014-07-17 23:43:32][   21.651822] ata1.00: ATA-9: RTMMA064JHV4EWY, A11, max UDMA/100
[2014-07-17 23:43:32][   21.657628] ata1.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[2014-07-17 23:43:32][   21.664756] ata2.00: ATA-9: RTMMA064JHV4EWY, A11, max UDMA/100
[2014-07-17 23:43:32][   21.670559] ata2.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[2014-07-17 23:43:32][   21.677739] ata1.00: configured for UDMA/100
[2014-07-17 23:43:32][   21.681991] [5371][0000500004170010][INFO][Can not handle plug-in event.][SATA][sata_pmp_eh_recover,1056]
[2014-07-17 23:43:32][   21.691501] [5373][0000500004170011][INFO][Plug-in event finished.][SATA][sata_pmp_eh_recover,1064]
[2014-07-17 23:43:32][   21.700496] [5376][0000500004170003][INFO][Turn interrupt on.][SATA][ahci_thaw,1876]
[2014-07-17 23:43:32][   21.708238] ata2.00: configured for UDMA/100
[2014-07-17 23:43:32][   21.708320] scsi 0:0:0:0: Direct-Access     ATA      RTMMA064JHV4EWY  A11  PQ: 0 ANSI: 5
[2014-07-17 23:43:32][   21.708325] [5378][0000500004170016][INFO][Loop num is:c0600][SATA][hp_do_tasklet,55]
[2014-07-17 23:43:32][   21.708328] [5378][0000500004170017][INFO][Host id is:0][SATA][hp_do_tasklet,56]
[2014-07-17 23:43:32][   21.708330] [5378][0000500004170018][INFO][Scsi id is:0][SATA][hp_do_tasklet,57]
[2014-07-17 23:43:32][   21.708332] [5378][0000500004170019][INFO][Channel id is:0][SATA][hp_do_tasklet,58]
[2014-07-17 23:43:32][   21.708334] [5378][000050000417001a][INFO][Lun id is:0][SATA][hp_do_tasklet,59]
[2014-07-17 23:43:32][   21.708336] [5378][000050000417001b][INFO][Slot id is:0][SATA][hp_do_tasklet,60]
[2014-07-17 23:43:32][   21.708338] [5378][000050000417001c][INFO][DiskType is:2][SATA][hp_do_tasklet,61]
[2014-07-17 23:43:32][   21.708340] [5378][000050000417001d][INFO][TimeStamp is:5220][SATA][hp_do_tasklet,62]
[2014-07-17 23:43:32][   21.708346] [5378][0000500004170012][INFO][Init over.][SATA][ata_scsi_slave_config,1186]
[2014-07-17 23:43:32][   21.708471] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[2014-07-17 23:43:32][   21.708586] sd 0:0:0:0: [sda] Write Protect is off
[2014-07-17 23:43:32][   21.708589] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[2014-07-17 23:43:32][   21.708614] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[2014-07-17 23:43:32][   21.715820] Can not find the checkDiskPartitionFlag function.
[2014-07-17 23:43:32][   21.794614] [5399][0000500004170010][INFO][Can not handle plug-in event.][SATA][sata_pmp_eh_recover,1056]
[2014-07-17 23:43:32][   21.830077] [5408][0000500004170011][INFO][Plug-in event finished.][SATA][sata_pmp_eh_recover,1064]
[2014-07-17 23:43:32][   21.839081] [5410][0000500004170003][INFO][Turn interrupt on.][SATA][ahci_thaw,1876]
[2014-07-17 23:43:32][   21.847059]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
[2014-07-17 23:43:32][   21.853324] sd 0:0:0:0: [sda] Attached SCSI disk
[2014-07-17 23:43:32][   21.858087] scsi 1:0:0:0: Direct-Access     ATA      RTMMA064JHV4EWY  A11  PQ: 0 ANSI: 5
[2014-07-17 23:43:32][   21.866149] [5417][0000500004170016][INFO][Loop num is:c0600][SATA][hp_do_tasklet,55]
[2014-07-17 23:43:32][   21.873931] [5419][0000500004170017][INFO][Host id is:1][SATA][hp_do_tasklet,56]
[2014-07-17 23:43:32][   21.881284] [5421][0000500004170018][INFO][Scsi id is:0][SATA][hp_do_tasklet,57]
[2014-07-17 23:43:32][   21.888637] [5423][0000500004170019][INFO][Channel id is:0][SATA][hp_do_tasklet,58]
[2014-07-17 23:43:32][   21.896247] [5425][000050000417001a][INFO][Lun id is:0][SATA][hp_do_tasklet,59]
[2014-07-17 23:43:32][   21.903512] [5426][000050000417001b][INFO][Slot id is:1][SATA][hp_do_tasklet,60]
[2014-07-17 23:43:32][   21.910864] [5428][000050000417001c][INFO][DiskType is:2][SATA][hp_do_tasklet,61]
[2014-07-17 23:43:32][   21.918300] [5430][000050000417001d][INFO][TimeStamp is:5220][SATA][hp_do_tasklet,62]
[2014-07-17 23:43:32][   21.926089] [5432][0000500004170012][INFO][Init over.][SATA][ata_scsi_slave_config,1186]
[2014-07-17 23:43:32][   21.934227] sd 1:0:0:0: [sdb] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[2014-07-17 23:43:32][   21.941993] sd 1:0:0:0: [sdb] Write Protect is off
[2014-07-17 23:43:32][   21.946761] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[2014-07-17 23:43:32][   21.951825] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[2014-07-17 23:43:32][   21.973400] Can not find the checkDiskPartitionFlag function.
[2014-07-17 23:43:32][   21.979268]  sdb: unknown partition table
[2014-07-17 23:43:32][   21.983466] sd 1:0:0:0: [sdb] Attached SCSI disk
[2014-07-17 23:43:32][   21.989524] 
[2014-07-17 23:43:32][   21.989526] **************************
[2014-07-17 23:43:32][   21.994749] 
[2014-07-17 23:43:32][   21.994750] The value of Configure Address is:98524000
[2014-07-17 23:43:32][   22.001369] The address of SATA_LOCAL_CONFIG_IOREMAP_ADDR is:0xffffc90014776000
[2014-07-17 23:43:32][   22.014121] libahci: exports duplicate symbol ahci_check_ready (owned by ahci)
[2014-07-17 23:43:32][   22.027583] usbcore: registered new interface driver usbfs
[2014-07-17 23:43:32][   22.033081] usbcore: registered new interface driver hub
[2014-07-17 23:43:32][   22.038427] usbcore: registered new device driver usb
[2014-07-17 23:43:32][   22.045948] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[2014-07-17 23:43:32][   22.052515] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[2014-07-17 23:43:32][   22.058322] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[2014-07-17 23:43:32][   22.063573] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[2014-07-17 23:43:32][   22.071038] ehci_hcd 0000:00:1a.0: debug port 2
[2014-07-17 23:43:32][   22.079422] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[2014-07-17 23:43:32][   22.086195] ehci_hcd 0000:00:1a.0: irq 16, io mem 0x98526000
[2014-07-17 23:43:32][   22.103402] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[2014-07-17 23:43:32][   22.109158] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[2014-07-17 23:43:32][   22.115909] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[2014-07-17 23:43:32][   22.123092] usb usb1: Product: EHCI Host Controller
[2014-07-17 23:43:32][   22.127944] usb usb1: Manufacturer: Linux 3.4.24.15-0.11-default ehci_hcd
[2014-07-17 23:43:32][   22.134696] usb usb1: SerialNumber: 0000:00:1a.0
[2014-07-17 23:43:32][   22.139464] hub 1-0:1.0: USB hub found
[2014-07-17 23:43:32][   22.143197] hub 1-0:1.0: 2 ports detected
[2014-07-17 23:43:32][   22.147410] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[2014-07-17 23:43:32][   22.153215] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[2014-07-17 23:43:32][   22.158430] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[2014-07-17 23:43:32][   22.165888] ehci_hcd 0000:00:1d.0: debug port 2
[2014-07-17 23:43:32][   22.174270] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[2014-07-17 23:43:32][   22.181044] ehci_hcd 0000:00:1d.0: irq 23, io mem 0x98525000
[2014-07-17 23:43:32][   22.195270] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[2014-07-17 23:43:32][   22.201014] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[2014-07-17 23:43:32][   22.207770] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[2014-07-17 23:43:32][   22.214953] usb usb2: Product: EHCI Host Controller
[2014-07-17 23:43:32][   22.219806] usb usb2: Manufacturer: Linux 3.4.24.15-0.11-default ehci_hcd
[2014-07-17 23:43:32][   22.226557] usb usb2: SerialNumber: 0000:00:1d.0
[2014-07-17 23:43:32][   22.231319] hub 2-0:1.0: USB hub found
[2014-07-17 23:43:32][   22.235052] hub 2-0:1.0: 2 ports detected
[2014-07-17 23:43:32][   22.239357] modprobe used greatest stack depth: 4712 bytes left
[2014-07-17 23:43:32][   22.251681] uhci_hcd: USB Universal Host Controller Interface driver
[2014-07-17 23:43:32][   22.266406] Execute /usr/Euler/hook/insmod_drv_hook/S01_first_drv_insmod.sh success
[2014-07-17 23:43:32][   22.307425] --- start insmod mgtibc_net_drv----
[2014-07-17 23:43:32][   22.315639] now,insmod mgt/ibc net dirvers
[2014-07-17 23:43:32][   22.322057] dca service started, version 1.12.1
[2014-07-17 23:43:32][   22.334305] [5534][00005000042003e8][INFO][Init device op.][DMI][DAL_InitDeviceOp,90]
[2014-07-17 23:43:32][   22.342112] [5536][00005000042003e8][INFO][Init port op.][DMI][DAL_InitPortOp,73]
[2014-07-17 23:43:32][   22.349559] [5538][00005000042003e8][INFO][Init manu info op.][DMI][DAL_InitManuInfoOp,71]
[2014-07-17 23:43:32][   22.357779] [5540][00005000042003e8][INFO][Init alarm op.][DMI][DAL_InitAlarmOp,50]
[2014-07-17 23:43:32][   22.365395] [5542][00005000042003e8][INFO][Init disk op.][DMI][DAL_InitDiskOp,48]
[2014-07-17 23:43:32][   22.372840] [5544][00005000042003e8][INFO][Init fru&encl header op.][DMI][DAL_InitFruOp,57]
[2014-07-17 23:43:32][   22.381148] [5546][00005000042003e8][INFO][Init sfp op.][DMI][DAL_InitSfpOp,50]
[2014-07-17 23:43:32][   22.388420] [5548][0000500004203039][DBG][EHP Init FrameFreeNodeListAndLock successed!][DMI][DAL_FrameInit,2638]
[2014-07-17 23:43:32][   22.398542] [5550][0000500004203039][DBG][EHP Init FrameEventNodeListAndLock successed!][DMI][DAL_FrameInit,2647]
[2014-07-17 23:43:32][   22.408750] [5553][0000500004203039][DBG][EHP Init FrameHashListAndLock successed!][DMI][DAL_FrameInit,2661]
[2014-07-17 23:43:32][   22.418564] [5555][0000500004203039][DBG][FrameFreeNodeCount = 200][DMI][EHP_AllocFreeNodeMemory,1757]
[2014-07-17 23:43:32][   22.427857] [5558][0000500004203039][CRI][EHP Create frame event thread - 0 success!][DMI][DAL_FrameInit,2696]
[2014-07-17 23:43:32][   22.427865] [5558][0000500004203039][DBG][Enter FrameEventThread 0.][DMI][EHP_ProcessFrameEventThread,1995]
[2014-07-17 23:43:32][   22.447516] [5563][0000500004203039][CRI][EHP Create frame event thread - 1 success!][DMI][DAL_FrameInit,2696]
[2014-07-17 23:43:32][   22.447522] [5563][0000500004203039][DBG][Enter FrameEventThread 1.][DMI][EHP_ProcessFrameEventThread,1995]
[2014-07-17 23:43:32][   22.454950] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[2014-07-17 23:43:32][   22.473662] [5569][0000500004203039][CRI][EHP Create frame event thread - 2 success!][DMI][DAL_FrameInit,2696]
[2014-07-17 23:43:32][   22.473668] [5569][0000500004203039][DBG][Enter FrameEventThread 2.][DMI][EHP_ProcessFrameEventThread,1995]
[2014-07-17 23:43:32][   22.493317] [5574][0000500004203039][CRI][EHP Create frame event thread - 3 success!][DMI][DAL_FrameInit,2696]
[2014-07-17 23:43:32][   22.493323] [5574][0000500004203039][DBG][Enter FrameEventThread 3.][DMI][EHP_ProcessFrameEventThread,1995]
[2014-07-17 23:43:32][   22.512972] [5579][0000500004203039][CRI][EHP Create frame event thread - 4 success!][DMI][DAL_FrameInit,2696]
[2014-07-17 23:43:32][   22.512978] [5579][0000500004203039][DBG][Enter FrameEventThread 4.][DMI][EHP_ProcessFrameEventThread,1995]
[2014-07-17 23:43:32][   22.532614] [5584][0000500004203039][CRI][Subscribe FrameIn Event Successed!][DMI][DAL_FrameInit,2711]
[2014-07-17 23:43:32][   22.541874] [5586][0000500004203039][CRI][Subscribe FrameOut Event Successed!][DMI][DAL_FrameInit,2735]
[2014-07-17 23:43:32][   22.551216] [5589][0000500004203039][CRI][EHP Frame Init Successed!][DMI][DAL_FrameInit,2737]
[2014-07-17 23:43:32][   22.559815] [5591][0000500004203039][ERR][Alloc 500 port nodes success, mem=0xffff880067d80000!][DMI][DAL_AllocMiscEventNodes,236]
[2014-07-17 23:43:32][   22.571563] [5594][0000500004203039][INFO][EvtSubscribe pcieswitch success!][DMI][DAL_ScribeMiscEvent,1294]
[2014-07-17 23:43:32][   22.581254] [5596][0000500004203039][ERR][Scrubed all event success!][DMI][DAL_ScribeMiscEvent,1299]
[2014-07-17 23:43:32][   22.587117] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[2014-07-17 23:43:32][   22.587121] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[2014-07-17 23:43:32][   22.587404] hub 1-1:1.0: USB hub found
[2014-07-17 23:43:32][   22.587486] hub 1-1:1.0: 6 ports detected
[2014-07-17 23:43:32][   22.611827] [5604][0000500004203039][DBG][Init misc event OK!][DMI][DAL_InitMiscEvent,1448]
[2014-07-17 23:43:32][   22.611833] [5604][0000500004203039][DBG][Entry port event thread!][DMI][DAL_MiscEventThread,1111]
[2014-07-17 23:43:32][   22.629063] [5608][0000500004203039][CRI][Create SystemDiskEventThread success!][DMI][DAL_InitDiskEventHandle,625]
[2014-07-17 23:43:32][   22.639362] [5611][0000500004202ee3][INFO][Subscribe all disk event success!][DMI][DAL_ScribeDiskEvent,582]
[2014-07-17 23:43:32][   22.639371] [5611][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id1!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   22.639380] [5611][0000500004202ee9][INFO][Receive disk 0x301040105090206 event --IN--, fwwn 0x807060504030201, slot 0x0.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:43:32][   22.639387] [5611][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id2!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   22.639393] [5611][0000500004202ee9][INFO][Receive disk 0x301040105090206 event --IN--, fwwn 0x807060504030201, slot 0x1.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:43:32][   22.702638] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[2014-07-17 23:43:32][   22.709630] [5628][0000500004202ee5][INFO][Init disk event handle, ret 0x0.][DMI][DAL_InitDiskEventHandle,629]
[2014-07-17 23:43:32][   22.719587] [5631][0000500004203039][DBG][Register diagnose OK!][DMI][DAL_InitMml,2061]
[2014-07-17 23:43:32][   22.727547] [5633][0000500004200000][INFO][Register operations.][DMI][DAL_OperationRegister,65]
[2014-07-17 23:43:32][   22.739273] [5636][00005000042003e8][INFO][Driver 2 register temp op][DMI][DAL_RegisterTempOp,172]
[2014-07-17 23:43:32][   22.748203] [5638][00005000040507b7][INFO][Will registe Module (netmgmt.ko), ID(2).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:43:32][   22.758595] [5641][00005000040507e1][INFO][Module ID (2) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:43:32][   22.769321] [5643][00005000040507e3][INFO][Module (2) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:43:32][   22.780391] [5646][00005000040507ba][INFO][Driver (netmgmt.ko) id (2) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:43:32][   22.794701] Intel(R) PRO/1000 Network Driver - 2.3.2-NAPI
[2014-07-17 23:43:32][   22.800079] Copyright(c) 1999 - 2013 Intel Corporation.
[2014-07-17 23:43:32][   22.805313] e1000e 0000:30:00.0: Disabling ASPM L0s L1
[2014-07-17 23:43:32][   22.810649] [5654][000050000408b0ff][INFO][Remap IO address: 0xffffc90014780000, start: 0x98200000, length: 0x20000.][NIC][e1000_probe,7504]
[2014-07-17 23:43:32][   22.823192] e1000e 0000:30:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[2014-07-17 23:43:32][   22.832583] e1000e 0000:30:00.0: irq 82 for MSI/MSI-X
[2014-07-17 23:43:32][   22.834798] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[2014-07-17 23:43:32][   22.834802] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[2014-07-17 23:43:32][   22.834973] hub 2-1:1.0: USB hub found
[2014-07-17 23:43:32][   22.835049] hub 2-1:1.0: 8 ports detected
[2014-07-17 23:43:32][   22.859087] e1000e 0000:30:00.0: irq 83 for MSI/MSI-X
[2014-07-17 23:43:32][   22.864124] e1000e 0000:30:00.0: irq 84 for MSI/MSI-X
[2014-07-17 23:43:32][   22.979082] [5696][000050000408b399][INFO][Event_dev: eth0, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   22.989267] [5698][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   22.998265] [5701][000050000408b383][INFO][Port register, busid:30:0:0, portid:0x00022002.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.009422] [5703][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00022002,maxspeed_level 2,duplex full,autoneg on,IsExternal:0,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.029392] [5708][000050000408b384][INFO][Port:0x22002__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.029401] [5708][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id3!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.057693] e1000e 0000:30:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 48:46:fb:d5:0e:31
[2014-07-17 23:43:32][   23.065654] e1000e 0000:30:00.0: eth0: Intel(R) PRO/1000 Network Connection
[2014-07-17 23:43:32][   23.072667] e1000e 0000:30:00.0: eth0: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[2014-07-17 23:43:32][   23.079430] 64bit 0000:30:00.0 uses identity mapping
[2014-07-17 23:43:32][   23.084378] e1000e 0000:32:00.0: Disabling ASPM L0s L1
[2014-07-17 23:43:32][   23.089690] [5723][000050000408b0ff][INFO][Remap IO address: 0xffffc900147c0000, start: 0x98100000, length: 0x20000.][NIC][e1000_probe,7504]
[2014-07-17 23:43:32][   23.102229] e1000e 0000:32:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[2014-07-17 23:43:32][   23.111613] e1000e 0000:32:00.0: irq 85 for MSI/MSI-X
[2014-07-17 23:43:32][   23.116648] e1000e 0000:32:00.0: irq 86 for MSI/MSI-X
[2014-07-17 23:43:32][   23.121687] e1000e 0000:32:00.0: irq 87 for MSI/MSI-X
[2014-07-17 23:43:32][   23.233619] [5759][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   23.243796] [5762][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   23.252794] [5764][000050000408b383][INFO][Port register, busid:32:0:0, portid:0x00022001.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.263951] [5767][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00022001,maxspeed_level 2,duplex full,autoneg on,IsExternal:0,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.283917] [5772][000050000408b384][INFO][Port:0x22001__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.283924] [5772][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id4!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.312204] e1000e 0000:32:00.0: eth1: (PCI Express:2.5GT/s:Width x1) 48:46:fb:d5:0e:32
[2014-07-17 23:43:32][   23.320165] e1000e 0000:32:00.0: eth1: Intel(R) PRO/1000 Network Connection
[2014-07-17 23:43:32][   23.327179] e1000e 0000:32:00.0: eth1: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[2014-07-17 23:43:32][   23.333936] 64bit 0000:32:00.0 uses identity mapping
[2014-07-17 23:43:32][   23.338888] e1000e 0000:34:00.0: Disabling ASPM L0s L1
[2014-07-17 23:43:32][   23.344199] [5787][000050000408b0ff][INFO][Remap IO address: 0xffffc90014800000, start: 0x98000000, length: 0x20000.][NIC][e1000_probe,7504]
[2014-07-17 23:43:32][   23.356737] e1000e 0000:34:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[2014-07-17 23:43:32][   23.366122] e1000e 0000:34:00.0: irq 88 for MSI/MSI-X
[2014-07-17 23:43:32][   23.371159] e1000e 0000:34:00.0: irq 89 for MSI/MSI-X
[2014-07-17 23:43:32][   23.376194] e1000e 0000:34:00.0: irq 90 for MSI/MSI-X
[2014-07-17 23:43:32][   23.485293] [5822][000050000408b399][INFO][Event_dev: eth2, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   23.495464] [5825][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   23.504465] [5827][000050000408b383][INFO][Port register, busid:34:0:0, portid:0x00022000.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.515623] [5830][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00022000,maxspeed_level 2,duplex full,autoneg on,IsExternal:0,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.535588] [5835][000050000408b384][INFO][Port:0x22000__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.535595] [5835][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id5!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.563875] e1000e 0000:34:00.0: eth2: (PCI Express:2.5GT/s:Width x1) 48:46:fb:d5:0e:33
[2014-07-17 23:43:32][   23.571836] e1000e 0000:34:00.0: eth2: Intel(R) PRO/1000 Network Connection
[2014-07-17 23:43:32][   23.578848] e1000e 0000:34:00.0: eth2: MAC: 3, PHY: 8, PBA No: FFFFFF-0FF
[2014-07-17 23:43:32][   23.585606] 64bit 0000:34:00.0 uses identity mapping
[2014-07-17 23:43:32][   23.593059] tg3.c:v3.136e (February 25, 2014)
[2014-07-17 23:43:32][   23.593061] 
[2014-07-17 23:43:32][   23.610891] 64bit 0000:13:00.0 uses identity mapping
[2014-07-17 23:43:32][   23.616122] [5855][000050000408b399][INFO][Event_dev: eth3, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   23.626296] [5858][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   23.635295] [5860][000050000408b383][INFO][Port register, busid:13:0:0, portid:0x00020003.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.646455] [5863][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00020003,maxspeed_level 2,duplex full,autoneg on,IsExternal:1,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.666421] [5868][000050000408b384][INFO][Port:0x20003__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.666429] [5868][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id6!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.694684] pcieport 0000:00:02.2: eth3: Tigon3 [partno(BCM95719) rev 5719001] (PCI Express) MAC address 00:10:18:b8:fc:24
[2014-07-17 23:43:32][   23.705666] pcieport 0000:00:02.2: eth3: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[2014-07-17 23:43:32][   23.715958] pcieport 0000:00:02.2: eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[2014-07-17 23:43:32][   23.724265] pcieport 0000:00:02.2: eth3: dma_rwctrl[00000001] dma_mask[64-bit]
[2014-07-17 23:43:32][   23.742700] 64bit 0000:13:00.1 uses identity mapping
[2014-07-17 23:43:32][   23.747916] [5888][000050000408b399][INFO][Event_dev: eth4, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   23.758090] [5891][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   23.767088] [5893][000050000408b383][INFO][Port register, busid:13:0:1, portid:0x00020002.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.778245] [5896][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00020002,maxspeed_level 2,duplex full,autoneg on,IsExternal:1,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.798213] [5901][000050000408b384][INFO][Port:0x20002__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.798220] [5901][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id7!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.826473] pcieport 0000:00:02.2: eth4: Tigon3 [partno(BCM95719) rev 5719001] (PCI Express) MAC address 00:10:18:b8:fc:25
[2014-07-17 23:43:32][   23.837457] pcieport 0000:00:02.2: eth4: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[2014-07-17 23:43:32][   23.847749] pcieport 0000:00:02.2: eth4: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[2014-07-17 23:43:32][   23.856053] pcieport 0000:00:02.2: eth4: dma_rwctrl[00000001] dma_mask[64-bit]
[2014-07-17 23:43:32][   23.874534] 64bit 0000:13:00.2 uses identity mapping
[2014-07-17 23:43:32][   23.879744] [5921][000050000408b399][INFO][Event_dev: eth5, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   23.889915] [5924][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   23.898915] [5926][000050000408b383][INFO][Port register, busid:13:0:2, portid:0x00020001.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   23.910073] [5929][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00020001,maxspeed_level 2,duplex full,autoneg on,IsExternal:1,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   23.930040] [5934][000050000408b384][INFO][Port:0x20001__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   23.930047] [5934][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id8!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   23.958303] pcieport 0000:00:02.2: eth5: Tigon3 [partno(BCM95719) rev 5719001] (PCI Express) MAC address 00:10:18:b8:fc:26
[2014-07-17 23:43:32][   23.969286] pcieport 0000:00:02.2: eth5: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[2014-07-17 23:43:32][   23.979577] pcieport 0000:00:02.2: eth5: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[2014-07-17 23:43:32][   23.987883] pcieport 0000:00:02.2: eth5: dma_rwctrl[00000001] dma_mask[64-bit]
[2014-07-17 23:43:32][   24.005013] 64bit 0000:13:00.3 uses identity mapping
[2014-07-17 23:43:32][   24.010231] [5954][000050000408b399][INFO][Event_dev: eth6, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.020404] [5956][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.029403] [5959][000050000408b383][INFO][Port register, busid:13:0:3, portid:0x00020000.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.040562] [5961][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00020000,maxspeed_level 2,duplex full,autoneg on,IsExternal:1,PortType:0,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.060527] [5966][000050000408b384][INFO][Port:0x20000__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.060534] [5966][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id9!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.088794] pcieport 0000:00:02.2: eth6: Tigon3 [partno(BCM95719) rev 5719001] (PCI Express) MAC address 00:10:18:b8:fc:27
[2014-07-17 23:43:32][   24.099777] pcieport 0000:00:02.2: eth6: attached PHY is 5719C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[2014-07-17 23:43:32][   24.110069] pcieport 0000:00:02.2: eth6: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[2014-07-17 23:43:32][   24.118373] pcieport 0000:00:02.2: eth6: dma_rwctrl[00000001] dma_mask[64-bit]
[2014-07-17 23:43:32][   24.127908] bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
[2014-07-17 23:43:32][   24.135016] bonding: Warning: miimon must be specified, otherwise bonding will not detect link failure, speed and duplex which are essential for 802.3ad operation
[2014-07-17 23:43:32][   24.149456] bonding: Forcing miimon to 100msec
[2014-07-17 23:43:32][   24.153878] bonding: MII link monitoring set to 100 ms
[2014-07-17 23:43:32][   24.159540] [5991][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.169809] [5994][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.178810] [5996][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f00.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.189882] [5999][000050000408b2ef][INFO][Init:heartbeat port name:bond0.][NIC][Net_HeartbeatInit,450]
[2014-07-17 23:43:32][   24.199229] [6001][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f00,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.219373] [6006][000050000408b384][INFO][Port:0x21f00__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.219381] [6006][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id10!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.248220] [6013][000050000408b399][INFO][Event_dev: bond1, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.258480] [6016][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.267478] [6018][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f01.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.278550] [6021][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f01,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.298689] [6026][000050000408b384][INFO][Port:0x21f01__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.298696] [6026][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id11!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.327527] [6033][000050000408b399][INFO][Event_dev: bond2, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.337788] [6036][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.346787] [6038][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f02.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.357860] [6041][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f02,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.378002] [6046][000050000408b384][INFO][Port:0x21f02__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.378009] [6046][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id12!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.406845] [6053][000050000408b399][INFO][Event_dev: bond3, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.417105] [6056][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.426103] [6058][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f03.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.437173] [6061][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f03,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.457312] [6066][000050000408b384][INFO][Port:0x21f03__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.457319] [6066][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id13!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.486145] [6073][000050000408b399][INFO][Event_dev: bond4, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.496403] [6076][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.505404] [6078][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f04.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.516475] [6081][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f04,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.536617] [6086][000050000408b384][INFO][Port:0x21f04__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.536624] [6086][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id14!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.565449] [6093][000050000408b399][INFO][Event_dev: bond5, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.575706] [6095][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.584706] [6098][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f05.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.595776] [6100][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f05,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.615915] [6105][000050000408b384][INFO][Port:0x21f05__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.615922] [6105][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id15!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.644757] [6113][000050000408b399][INFO][Event_dev: bond6, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.655016] [6115][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.664013] [6117][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f06.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.675086] [6120][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f06,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.695226] [6125][000050000408b384][INFO][Port:0x21f06__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.695233] [6125][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id16!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.724069] [6133][000050000408b399][INFO][Event_dev: bond7, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.734324] [6135][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.743323] [6137][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f07.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.754393] [6140][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f07,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.774534] [6145][000050000408b384][INFO][Port:0x21f07__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.774541] [6145][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id17!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.803375] [6152][000050000408b399][INFO][Event_dev: bond8, event: NETDEV_REGISTER 5.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   24.813632] [6155][000050000408b382][INFO][Get Port ID from conf.][NIC][Net_AllocRegisterPort,1002]
[2014-07-17 23:43:32][   24.822630] [6157][000050000408b383][INFO][Port register, busid:0:0:0, portid:0x00021f08.][NIC][Net_AllocRegisterPort,1027]
[2014-07-17 23:43:32][   24.833701] [6160][0000500004080004][INFO][Port Info: EventType 0x0,PortID 0x00021f08,maxspeed_level 19,duplex half,autoneg off,IsExternal:0,PortType:1,Protocol:3,DependentPortId:0, SupportSfp:no][NIC][Net_Send_RegPortEvent,577]
[2014-07-17 23:43:32][   24.853840] [6165][000050000408b384][INFO][Port:0x21f08__get_config___ switch:1+++Routine:0+++Interval:0+++Limit:0+++ErrCodeInc:0.][NIC][Net_AllocRegisterPort,1084]
[2014-07-17 23:43:32][   24.853848] [6165][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id18!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   24.884820] Intel(R) Gigabit Ethernet Network Driver - version 4.1.2
[2014-07-17 23:43:32][   24.891146] Copyright (c) 2007-2012 Intel Corporation.
[2014-07-17 23:43:32][   24.896308] [6176][00005000040507b7][INFO][Will registe Module (igb.ko), ID(22).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:43:32][   24.906430] [6178][00005000040507e1][INFO][Module ID (22) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:43:32][   24.917241] [6181][00005000040507e3][INFO][Module (22) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:43:32][   24.928397] [6184][00005000040507ba][INFO][Driver (igb.ko) id (22) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:43:32][   24.942652] Intel(R) 10 Gigabit PCI Express Network Driver - version 3.13.11
[2014-07-17 23:43:32][   24.949673] Copyright (c) 1999-2013 Intel Corporation.
[2014-07-17 23:43:32][   24.958662] [product_second_drv_insmod.sh]begin to set bond0 mode to broadcast
[2014-07-17 23:43:32][   24.966127] bonding: bond0: setting mode to broadcast (3).
[2014-07-17 23:43:32][   24.974971] [product_second_drv_insmod.sh]end to set bond0 mode to broadcast
[2014-07-17 23:43:32][   24.985763] --- end insmod mgtibc_net_drv----
[2014-07-17 23:43:32][   24.995826] Execute /usr/Euler/hook/insmod_drv_hook/S02_second_drv_insmod.sh success
[2014-07-17 23:43:32][   25.009200] Initializing modules success.
[2014-07-17 23:43:32][   25.079386] INSTALL_MODE=,start booting system.
[2014-07-17 23:43:32][   25.143917]  boot_status=456
[2014-07-17 23:43:32][   25.213659] _ucStartupMode=0
[2014-07-17 23:43:32][   25.216533] [6256][1500003fa0063][INFO][Age test:startup mode is 0.][NONE][OS_HandleAgeTest,3732][sh]
[2014-07-17 23:43:32][   25.232697] [6260][5400040600cc][INF][Startup mode value=40.][BSP][COM_SetS.upMode,317][sh]
[2014-07-17 23:43:32][   25.292369] [6275][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   25.349279] [6289][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   25.370468] [6294][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   25.391584] boot disk is /dev/sda
[2014-07-17 23:43:32][   25.431403] [6310][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   25.488411] [6324][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   25.509574] [6329][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   25.530713] boot disk is /dev/sda
[2014-07-17 23:43:32][   25.607815] ******************-start os_mount_startupdisk-**************************
[2014-07-17 23:43:32][   25.621557] Not found raid device,single device system!
[2014-07-17 23:43:32][   25.637419] startup disk filesystem is ext3
[2014-07-17 23:43:32][   25.646186] fsck.ext3 -fy /dev/sda1
[2014-07-17 23:43:32][   26.645869] [os_mount_startupdisk.sh]Mount /dev/sda1 on /startup_disk/image 
[2014-07-17 23:43:32][   26.680162] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   26.680180] EXT3-fs (sda1): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   26.683897] [os_mount_startupdisk.sh]the operation is success.
[2014-07-17 23:43:32][   26.692046] startup disk filesystem is ext3
[2014-07-17 23:43:32][   26.696678] fsck.ext3 -fy /dev/sda2
[2014-07-17 23:43:32][   27.696333] [os_mount_startupdisk.sh]Mount /dev/sda2 on /startup_disk/conf 
[2014-07-17 23:43:32][   27.730898] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   27.730970] EXT3-fs (sda2): using internal journal
[2014-07-17 23:43:32][   27.730975] EXT3-fs (sda2): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   27.734268] [os_mount_startupdisk.sh]the operation is success.
[2014-07-17 23:43:32][   27.745062] startup disk filesystem is ext3
[2014-07-17 23:43:32][   27.749045] fsck.ext3 -fy /dev/sda3
[2014-07-17 23:43:32][   28.749513] [os_mount_startupdisk.sh]Mount /dev/sda3 on /OSM/coffer_log 
[2014-07-17 23:43:32][   28.784475] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   28.784549] EXT3-fs (sda3): using internal journal
[2014-07-17 23:43:32][   28.784554] EXT3-fs (sda3): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   28.788739] [os_mount_startupdisk.sh]the operation is success.
[2014-07-17 23:43:32][   28.796384] mount local coffer success!
[2014-07-17 23:43:32][   28.800532] start sync coffer
[2014-07-17 23:43:32][   28.804738] start os_sync_coffer
[2014-07-17 23:43:32][   28.851606] --------[os_sync_coffer.sh] star sync coffer--------
[2014-07-17 23:43:32][   28.861996] startup disk filesystem is ext3
[2014-07-17 23:43:32][   28.870876] fsck.ext3 -fy /dev/sda6
[2014-07-17 23:43:32][   29.870838] [os_mount_startupdisk.sh]Mount /dev/sda6 on /OSM/coffer_data 
[2014-07-17 23:43:32][   29.905687] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   29.905764] EXT3-fs (sda6): using internal journal
[2014-07-17 23:43:32][   29.905770] EXT3-fs (sda6): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   29.909168] [os_mount_startupdisk.sh]the operation is success.
[2014-07-17 23:43:32][   29.919019] [OS_DUMP_STACK_AND_KERNEL] No serious reset, no need to dump.
[2014-07-17 23:43:32][   29.932033] Not found raid device,single device system!
[2014-07-17 23:43:32][   29.934632] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   29.934706] EXT3-fs (sda5): using internal journal
[2014-07-17 23:43:32][   29.934711] EXT3-fs (sda5): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   29.942723] Not found raid device,single device system!
[2014-07-17 23:43:32][   29.945324] kjournald starting.  Commit interval 5 seconds
[2014-07-17 23:43:32][   29.945340] EXT3-fs (sda8): mounted filesystem with ordered data mode
[2014-07-17 23:43:32][   30.059205] EXT3-fs (sda1): using internal journal
[2014-07-17 23:43:32][   31.804435] mv used greatest stack depth: 4320 bytes left
[2014-07-17 23:43:32][   32.139671] >>>>>>>>>> select version begin >>>>>>>>>>
[2014-07-17 23:43:32][   32.148593] --- not in os_boot_osp, Need not Rollback,exit os_load_select_ver.sh---
[2014-07-17 23:43:32][   32.251812] [os_modify_sftp_group_user_dir.sh]Begin to modiy sftp dir group own mod.
[2014-07-17 23:43:32][   32.263104] [os_modify_sftp_group_user_dir.sh]Create group and permit directory
[2014-07-17 23:43:32][   32.283792] [os_modify_sftp_group_user_dir.sh]Modify Directory Permition For Group
[2014-07-17 23:43:32][   32.297620] Not found raid device,single device system!
[2014-07-17 23:43:32][   32.310828] EXT3-fs (sda1): using internal journal
[2014-07-17 23:43:32][   32.319577] [os_modify_sftp_group_user_dir.sh]set disk rw ret:0.
[2014-07-17 23:43:32][   32.349357] [OS_MODIFY_DIR_GROUP_PERM]chown /home/permitdir ret:0.
[2014-07-17 23:43:32][   32.361798] Not found raid device,single device system!
[2014-07-17 23:43:32][   32.384219] [os_modify_sftp_group_user_dir.sh]set disk ro ret:0.
[2014-07-17 23:43:32][   32.394493] [os_modify_sftp_group_user_dir.sh]End to modiy sftp dir group own mod.
[2014-07-17 23:43:32][   32.411147] [8057][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   32.447499] [8066][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   32.463513] [8070][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   32.479451] boot disk is /dev/sda
[2014-07-17 23:43:32][   32.503706] [8080][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   32.540021] [8089][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   32.556026] [8093][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   32.571903] boot disk is /dev/sda
[2014-07-17 23:43:32][   32.597676] [OS_Configauth.sh] Check passwd and shadow on the boot disk.
[2014-07-17 23:43:32][   32.606044] passwd: OK
[2014-07-17 23:43:32][   32.608481] shadow: OK
[2014-07-17 23:43:32][   32.610945] group: OK
[2014-07-17 23:43:32][   32.616932] [OS_Configauth.sh] Copy passwd/shadow from coffer to /etc.
[2014-07-17 23:43:32][   32.627019] cp: cannot stat `utopuserinfo.ini': No such file or directory
[2014-07-17 23:43:32][   32.633951] cp: cannot stat `ldap.conf': No such file or directory
[2014-07-17 23:43:32][   32.640166] cp: cannot stat `nsswitch.conf': No such file or directory
[2014-07-17 23:43:32][   32.650477] [OS_Configauth.sh] Check passwd and shadow on the boot disk finished.
[2014-07-17 23:43:32][   32.678409] udev: starting version 147
[2014-07-17 23:43:32][   32.700536] ACPI: Requesting acpi_cpufreq
[2014-07-17 23:43:32][   32.709596] Monitor-Mwait will be used to enter C-1 state
[2014-07-17 23:43:32][   32.715141] sd 0:0:0:0: Attached scsi generic sg0 type 0
[2014-07-17 23:43:32][   32.715178] Monitor-Mwait will be used to enter C-2 state
[2014-07-17 23:43:32][   32.715188] ACPI: acpi_idle registered with cpuidle
[2014-07-17 23:43:32][   32.730783] sd 1:0:0:0: Attached scsi generic sg1 type 0
[2014-07-17 23:43:32][   36.928147] [os_set_ibcip.sh]--- Start Set ibcip----
[2014-07-17 23:43:32][   36.935369] [9189][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   36.949373] ADDRCONF(NETDEV_UP): bond0: link is not ready
[2014-07-17 23:43:32][   36.954754] [9194][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   36.964452] [9196][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:43:32][   36.972792] [9199][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id19!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   36.977209] [9200][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_CHANGEADDR 8.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   36.980240] [9200][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_CHANGEADDR 8.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   36.980329] [9200][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   37.057220] [9220][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   37.066836] [9222][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:43:32][   37.075169] [9224][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id20!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   37.075521] [9224][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_FEAT_CHANGE b.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   37.075542] bonding: bond0: enslaving eth1 as an active interface with a down link.
[2014-07-17 23:43:32][   37.075553] [9224][000050000408c352][INFO][Report bonding event: 64, for bond dev: bond0, slave dev: eth1.][NIC][bonding_event_notifier,1590]
[2014-07-17 23:43:32][   37.100215] [OS_INIT_PING_IP] Slot ID is 1.
[2014-07-17 23:43:32][   37.112741] [OS_CONFIGURE_IBCIP] set tmp bond0 ip to 127.127.127.11.
[2014-07-17 23:43:32][   37.147709] [OS_MODIFY_ETC_CONF_IBCIP] use default IP: 127.127.127.11
[2014-07-17 23:43:32][   39.813919] e1000e: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[2014-07-17 23:43:32][   39.821472] [9912][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:43:32][   39.824324] [9912][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   39.860812] bonding: bond0: link status definitely up for interface eth1, 1000 Mbps full duplex.
[2014-07-17 23:43:32][   39.869575] [9924][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:43:32][   39.872475] ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready
[2014-07-17 23:43:32][   39.872765] [9924][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   50.083802] bond0: no IPv6 routers present
[2014-07-17 23:43:32][   51.175105] start vsftpd
[2014-07-17 23:43:32][   51.210729] ---Prepare PXE Server ---
[2014-07-17 23:43:32][   51.230199] EXT3-fs (sda1): using internal journal
[2014-07-17 23:43:32][   51.258465] [12775][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][awk]
[2014-07-17 23:43:32][   51.320035] [12790][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][awk]
[2014-07-17 23:43:32][   51.342341] [12796][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][awk]
[2014-07-17 23:43:32][   51.364552] boot disk is /dev/sda
[2014-07-17 23:43:32][   51.408167] [12812][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][awk]
[2014-07-17 23:43:32][   51.470020] [12827][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][awk]
[2014-07-17 23:43:32][   51.492326] [12833][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][awk]
[2014-07-17 23:43:32][   51.514596] boot disk is /dev/sda
[2014-07-17 23:43:32][   51.558232] [12850][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][awk]
[2014-07-17 23:43:32][   51.619974] [12865][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][awk]
[2014-07-17 23:43:32][   51.642708] [12871][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][awk]
[2014-07-17 23:43:32][   51.665246] boot disk is /dev/sda
[2014-07-17 23:43:32][   51.739205] ---Prepare PXE Server Success---
[2014-07-17 23:43:32][   51.771756] [12903][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   51.833649] [12919][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   51.856507] [12924][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   51.879015] boot disk is /dev/sda
[2014-07-17 23:43:32][   51.916201] [12939][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   51.954752] [12949][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   51.971385] [12953][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   51.988278] boot disk is /dev/sda
[2014-07-17 23:43:32][   52.030537]  StartAddr=ffffffff81000000
[2014-07-17 23:43:32][   52.071782] OS_HandleKernAddr StartAddr=ffffffff81000000
[2014-07-17 23:43:32][   52.115473]  OS_HandleKernAddr EndAddr=ffffffff8146ec40
[2014-07-17 23:43:32][   52.126515] [OS_EXPORT_LOG_DEBUG] export nvram to /startup_disk/image/nvram/.
[2014-07-17 23:43:32][   52.261721] [13026][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   52.300898] [13035][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   52.317549] [13040][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   52.334136] boot disk is /dev/sda
[2014-07-17 23:43:32][   52.360016] [13050][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   52.398596] [13060][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   52.415224] [13064][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   52.431866] boot disk is /dev/sda
[2014-07-17 23:43:32][   52.598348] Not found raid device,single device system!
[2014-07-17 23:43:32][   52.622680] EXT3-fs (sda1): using internal journal
[2014-07-17 23:43:32][   52.638166] Not found raid device,single device system!
[2014-07-17 23:43:32][   52.664855] [OS_EXPORT_LOG_DEBUG] Save nvram_20140717234318_1.tgz to /startup_disk/image/nvram/ finished.
[2014-07-17 23:43:32][   52.772270] [os_parse_resume_config_file.sh] the config file has been parsed successfully.
[2014-07-17 23:43:32][   52.793785] prepare to sync /etc/sysconfig/network/routes
[2014-07-17 23:43:32][   52.806133] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/routes /etc/sysconfig/network/routes success
[2014-07-17 23:43:32][   52.825716] prepare to sync /etc/sysconfig/network/ifcfg-eth2
[2014-07-17 23:43:32][   52.838256] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/ifcfg-eth2 /etc/sysconfig/network/ifcfg-eth2 success
[2014-07-17 23:43:32][   52.858387] prepare to sync /etc/sysconfig/network/ifroute-eth2
[2014-07-17 23:43:32][   52.871000] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/ifroute-eth2 /etc/sysconfig/network/ifroute-eth2 success
[2014-07-17 23:43:32][   52.891486] prepare to sync /OSM/conf/dsw_config.ini
[2014-07-17 23:43:32][   52.901068] [os_resume_conf_on_startup.sh] can not sync /startup_disk/conf/conf_local/dsw_config.ini /OSM/conf/dsw_config.ini 
[2014-07-17 23:43:32][   52.911870] [OS_PRODUCE_MD5CHECK_FILE_LIST] before read /tmp_md5sum_check_file_list_2202.
[2014-07-17 23:43:32][   52.916108] [OS_PRODUCE_MD5CHECK_FILE_LIST] end read /tmp_md5sum_check_file_list_2202.
[2014-07-17 23:43:32][   52.923103] [OS_PRODUCE_MD5CHECK_FILE]before read /md5sum_check_file_list_2202.
[2014-07-17 23:43:32][   52.927135] [OS_PRODUCE_MD5CHECK_FILE]end read /md5sum_check_file_list_2202.
[2014-07-17 23:43:32][   52.950998] prepare to sync /OSM/conf/tv2r2_dswip.conf
[2014-07-17 23:43:32][   52.960739] [os_resume_conf_on_startup.sh] can not sync /startup_disk/conf/conf_local/tv2r2_dswip.conf /OSM/conf/tv2r2_dswip.conf 
[2014-07-17 23:43:32][   52.984124] prepare to sync /etc/localtime
[2014-07-17 23:43:32][   52.994935] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/localtime /etc/localtime success
[2014-07-17 23:43:32][   53.013215] prepare to sync /etc/sysconfig/clock
[2014-07-17 23:43:32][   53.024635] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/clock /etc/sysconfig/clock success
[2014-07-17 23:43:32][   53.044859] prepare to sync /OSM/conf/bay_config.ini
[2014-07-17 23:43:32][   53.056457] [os_resume_conf_on_startup.sh] cp -af /startup_disk/conf/conf_local/bay_config.ini /OSM/conf/bay_config.ini success
[2014-07-17 23:43:32][   53.070881] [os_resume_conf_on_startup.sh] sync is end.
[2014-07-17 23:43:32][   53.196022] [os_mgtibc_netconfig.rc] transform net config file ...
[2014-07-17 23:43:32][   53.215351] [os_transform_main]: transform content begin.
[2014-07-17 23:43:32][   53.225218] [os_ts_content]: OS_TRANSFORM_TYPE is null, transform all types.
[2014-07-17 23:43:32][   53.238526] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth2/ipv4 is not exist.
[2014-07-17 23:43:32][   53.251599] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth2/ipv4.
[2014-07-17 23:43:32][   53.265454] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth2/ipv4_maintain is not exist.
[2014-07-17 23:43:32][   53.279302] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth2/ipv4_maintain.
[2014-07-17 23:43:32][   53.293919] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth2/ip6g is not exist.
[2014-07-17 23:43:32][   53.306981] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth2/ip6g.
[2014-07-17 23:43:32][   53.324145] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth3/ipv4 is not exist.
[2014-07-17 23:43:32][   53.337197] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth3/ipv4.
[2014-07-17 23:43:32][   53.351024] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth3/ipv4_maintain is not exist.
[2014-07-17 23:43:32][   53.364959] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth3/ipv4_maintain.
[2014-07-17 23:43:32][   53.379562] [os_ts_is_needed_transform]: src_file /startup_disk/conf/conf_local/ifconfig-eth3/ip6g is not exist.
[2014-07-17 23:43:32][   53.392662] [os_ts_content_hvs2euler]: no need to transform net config /startup_disk/conf/conf_local/ifconfig-eth3/ip6g.
[2014-07-17 23:43:32][   53.408547] [os_transform_main]: transform content end.
[2014-07-17 23:43:32][   53.669107] [OS_CopyFileFromOtherBoard] copying file...
[2014-07-17 23:43:32][   53.721953] [OS_CopyFileFromOtherBoard] copy file finish[ret:0]...
[2014-07-17 23:43:32][   53.736118] /OSM/conf/bay_config.ini: OK
[2014-07-17 23:43:32][   53.743860] [OS_FileMD5Check] get file /startup_disk/conf/conf_local/bay_config.ini success.
[2014-07-17 23:43:32][   53.755346] [os_get_file.sh] os_get_file.sh 127.127.127.10 /startup_disk/conf/conf_local/bay_config.ini /OSM/conf success.
[2014-07-17 23:43:32][   53.769716] [OS_GET_BAY_CFG_FROM_BAK] get bay_config.ini from peer success.
[2014-07-17 23:43:32][   53.785673] [OS_GET_BAY_ID] Bay ID is: 0
[2014-07-17 23:43:32][   53.792687] [os_mgtibc_netconfig.rc] config mgt ip ...
[2014-07-17 23:43:32][   53.818575] [os_netmgt_main]: get_ip4 eth2 ...
[2014-07-17 23:43:32][   53.858445] [os_netmgt_main]: get_pf4 eth2 ...
[2014-07-17 23:43:32][   53.898092] [os_netmgt_main]: get_gw4 eth2 ...
[2014-07-17 23:43:32][   53.937707] [os_netmgt_main]: get_bc4 eth2 ...
[2014-07-17 23:43:32][   53.960400] ipv4: ip=100.148.54.112,prefix=16,gateway=100.148.0.1,broadcast=100.148.255.255
[2014-07-17 23:43:32][   53.993533] [os_netmgt_main]: create_ifcfg4 eth2 ...
[2014-07-17 23:43:32][   54.052466] [os_netmgt_main]: set_default_route eth2 ...
[2014-07-17 23:43:32][   54.083158] [os_netmgt_main]: get_ip4 eth2 ...
[2014-07-17 23:43:32][   54.113031] [os_mgtibc_netconfig.rc] copy mgt ip config success.
[2014-07-17 23:43:32][   54.122584] [os_mgtibc_netconfig.rc] config ibc ip ...
[2014-07-17 23:43:32][   54.156085] [os_netmgt_main]: create_bond4 bond0 ...
[2014-07-17 23:43:32][   54.190916] bonding: bond0: releasing active interface eth1
[2014-07-17 23:43:32][   54.196472] [13510][000050000408010c][INFO][bond0 link down.][NIC][Net_CallPortLinkNotifiers,271]
[2014-07-17 23:43:32][   54.205306] [13512][000050000408b397][INFO][Send event:12.][NIC][CallFunc,213]
[2014-07-17 23:43:32][   54.207573] [13513][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_CHANGEADDR 8.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.207625] [13513][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_FEAT_CHANGE b.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.208108] [13513][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_GOING_DOWN 9.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.321308] [13541][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_DOWN 2.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.331174] [13544][000050000408b398][INFO][Send event:15.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:43:32][   54.339580] [13546][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 15 , (DRV_DEVT_CLOSE), Dev type 13,evnt id25!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   54.341298] [13546][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_CHANGEADDR 8.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.341309] [13546][000050000408c352][INFO][Report bonding event: 65, for bond dev: bond0, slave dev: eth1.][NIC][bonding_event_notifier,1590]
[2014-07-17 23:43:32][   54.378505] [13556][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   54.391928] [os_mgtibc_netconfig.rc] config mgt ipv6 ip ...
[2014-07-17 23:43:32][   54.400576] [os_mgtibc_netconfig.rc] eth2 use default ipv6.
[2014-07-17 23:43:32][   54.414977] [13565][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   54.453516] [13574][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   54.470164] [13578][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   54.486741] boot disk is /dev/sda
[2014-07-17 23:43:32][   54.512600] [13589][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   54.551123] [13599][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   54.567756] [13603][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   54.584317] boot disk is /dev/sda
[2014-07-17 23:43:32][   54.628370] [os_netmgt_main]: create_ifcfg6 eth2 ...
[2014-07-17 23:43:32][   54.667593] [/etc/hotplug/os_mgtibc_netconfig.rc],OS_COPY_IP_FILE ifcfg-eth2 exist,copy to mem to instead of default.
[2014-07-17 23:43:32][   54.698918] [os_netmgt_main]: get_ip6 eth2 ...
[2014-07-17 23:43:32][   54.740585] [os_netmgt_main]: get_pf6 eth2 ...
[2014-07-17 23:43:32][   54.781973] [os_netmgt_main]: get_gw6 eth2 ...
[2014-07-17 23:43:32][   54.823373] [os_netmgt_main]: get_bc6 eth2 ...
[2014-07-17 23:43:32][   54.868043] [os_netmgt_main]: create_ifcfg6 eth2 ...
[2014-07-17 23:43:32][   54.926620] [os_netmgt_main]:set default ip6 route eth2 ...
[2014-07-17 23:43:32][   54.942311] [os_mgtibc_netconfig.rc] ------call product_set_firewall.sh .------
[2014-07-17 23:43:32][   54.990467] manage net is eth2.
[2014-07-17 23:43:32][   55.000992] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[2014-07-17 23:43:32][   57.688093] NET: Registered protocol family 17
[2014-07-17 23:43:32][   57.738101] [link_state_test.sh] There is no default route.
[2014-07-17 23:43:32][   58.911485] [14690][000050000408b399][INFO][Event_dev: eth2, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   58.999150] ADDRCONF(NETDEV_UP): eth2: link is not ready
[2014-07-17 23:43:32][   59.004443] [14713][000050000408b399][INFO][Event_dev: eth2, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   59.014132] [14716][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:43:32][   59.022547] [14718][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id27!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   59.022930] ip used greatest stack depth: 3616 bytes left
[2014-07-17 23:43:32][   62.125540] e1000e: eth2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[2014-07-17 23:43:32][   62.132996] [15497][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:43:32][   62.135113] ADDRCONF(NETDEV_CHANGE): eth2: link becomes ready
[2014-07-17 23:43:32][   62.135338] [15497][000050000408b399][INFO][Event_dev: eth2, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   64.639023] bonding: bond0: Adding slave eth1.
[2014-07-17 23:43:32][   64.645709] [16126][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_CHANGEADDR 8.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   64.656140] [16128][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   64.743462] [16150][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   64.753161] [16153][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:43:32][   64.761577] [16155][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id29!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:43:32][   64.762032] [16155][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_FEAT_CHANGE b.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:32][   64.762044] bonding: bond0: enslaving eth1 as an active interface with a down link.
[2014-07-17 23:43:32][   64.762051] [16155][000050000408c352][INFO][Report bonding event: 64, for bond dev: bond0, slave dev: eth1.][NIC][bonding_event_notifier,1590]
[2014-07-17 23:43:32][   65.032629] [16222][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:43:32][   65.071356] [16232][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:43:32][   65.088543] [16236][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:43:32][   65.105214] boot disk is /dev/sda
[2014-07-17 23:43:32][   65.131870] [16247][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:43:32][   65.170570] [16257][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:43:32][   65.187299] [16261][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:43:32][   65.203984] boot disk is /dev/sda
[2014-07-17 23:43:32][   65.225989] [os_change_bayconfig.sh]: OS_Find_Support_Product Failed.
[2014-07-17 23:43:32][   65.294031] [16288][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:43:32][   65.333588] [16298][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:43:32][   65.350485] [16302][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:43:32][   65.367142] boot disk is /dev/sda
[2014-07-17 23:43:32][   65.393046] [16313][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:43:32][   65.431691] [16322][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:43:32][   65.448416] [16327][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:43:32][   65.465071] boot disk is /dev/sda
[2014-07-17 23:43:32][   65.486916] [os_flush_mgt_ip_config.sh]: OS_Find_Share_Port Failed.
[2014-07-17 23:43:32][   65.522500] [16345][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   65.561081] [16355][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   65.577724] [16359][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   65.594310] boot disk is /dev/sda
[2014-07-17 23:43:32][   65.620445] [16370][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:32][   65.658985] [16379][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:32][   65.675619] [16383][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:32][   65.692193] boot disk is /dev/sda
[2014-07-17 23:43:33](CRON) STARTUP (V5.0)
[2014-07-17 23:43:33]Internet Systems Consortium DHCP Server 4.2.4-P2
[2014-07-17 23:43:33]Copyright 2004-2012 Internet Systems Consortium.
[2014-07-17 23:43:33]All rights reserved.
[2014-07-17 23:43:33]For info, please visit https://www.isc.org/software/dhcp/
[2014-07-17 23:43:33]Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
[2014-07-17 23:43:33]Internet Systems Consortium DHCP Server 4.2.4-P2
[2014-07-17 23:43:33]Copyright 2004-2012 Internet Systems Consortium.
[2014-07-17 23:43:33]All rights reserved.
[2014-07-17 23:43:33]For info, please visit https://www.isc.org/software/dhcp/
[2014-07-17 23:43:33]Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
[2014-07-17 23:43:33]Wrote 0 leases to leases file.
[2014-07-17 23:43:33]Listening on LPF/bond0/48:46:fb:d5:0e:32/127.127.127.0/24
[2014-07-17 23:43:33]Sending on   LPF/bond0/48:46:fb:d5:0e:32/127.127.127.0/24
[2014-07-17 23:43:33]Sending on   Socket/fallback/fallback-net
[2014-07-17 23:43:33][   66.742494] ----call maintain ip effect----
[2014-07-17 23:43:33][   66.803091] [os_mgtibc_netconfig.rc] ----Call maintain ip----
[2014-07-17 23:43:33][   66.811943] [os_mgtibc_netconfig.rc] config maintain ip ...
[2014-07-17 23:43:33][   66.838453] [os_netmgt_main]: get_ip4 eth2:1 ...
[2014-07-17 23:43:33][   66.883986] [os_netmgt_main]: get_pf4 eth2:1 ...
[2014-07-17 23:43:33][   66.929659] [os_netmgt_main]: get_gw4 eth2:1 ...
[2014-07-17 23:43:33][   66.974980] [os_netmgt_main]: get_bc4 eth2:1 ...
[2014-07-17 23:43:33][   67.003267] ipv4: ip=172.168.128.101,prefix=,gateway=,broadcast=
[2014-07-17 23:43:33][   67.032763] [os_netmgt_main]: create_ifcfg4 eth2:1 ...
[2014-07-17 23:43:33][   67.090935] [os_netmgt_main]: get_ip4 eth2:1 ...
[2014-07-17 23:43:33][   67.126385] [os_mgtibc_netconfig.rc] copy maintain ip config success.
[2014-07-17 23:43:33][   67.135998] [/OSM/bin/script/os_mgtibc_netconfig.rc] Setting the eth2:1 interface...
[2014-07-17 23:43:33][   67.169322] [os_netmgt_main]: get_ip4 eth2:1 ...
[2014-07-17 23:43:33][   67.212854] [os_netmgt_main]: get_bc4 eth2:1 ...
[2014-07-17 23:43:33][   67.256213] [os_netmgt_main]: get_gw4 eth2:1 ...
[2014-07-17 23:43:33][   67.299807] [os_netmgt_main]: get_pf4 eth2:1 ...
[2014-07-17 23:43:33]the node info is: event_type:0x14 ifindex   :0x4 ip_addr   :0x6580a8ac link_state:131080 dev_name  :eth2:1
[2014-07-17 23:43:33][   67.345406] [os_netmgt_main]: get_ip6 eth2:1 ...
[2014-07-17 23:43:33][   67.397662] [os_netmgt_main]: get_gw6 eth2:1 ...
[2014-07-17 23:43:34][   67.449644] [os_netmgt_main]: get_pf6 eth2:1 ...
[2014-07-17 23:43:34][   67.486922] ----- call maintain ip over-----
[2014-07-17 23:43:34][   67.898199] e1000e: eth1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[2014-07-17 23:43:34][   67.905739] [16942][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:43:34][   67.907849] [16942][000050000408b399][INFO][Event_dev: eth1, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:34]the node info is: event_type:0x10 ifindex   :0x3 ip_addr   :0x0 link_state:71747 dev_name  :eth1
[2014-07-17 23:43:34][   67.993030] bonding: bond0: link status definitely up for interface eth1, 1000 Mbps full duplex.
[2014-07-17 23:43:34][   68.001777] [16966][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:43:34][   68.003457] [16966][000050000408b399][INFO][Event_dev: bond0, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:43:34]the node info is: event_type:0x10 ifindex   :0x9 ip_addr   :0x0 link_state:70723 dev_name  :bond0
[2014-07-17 23:43:37][   70.491774] timezone configuration
[2014-07-17 23:43:37][   70.498287] copy timezone conf from disk to mem ...
[2014-07-17 23:43:37][   70.513530] copy localtime from /startup_disk/conf/conf_local to /tmp/timezone sucessful.
[2014-07-17 23:43:37][   70.530832] copy clock from /startup_disk/conf/conf_local to /tmp/timezone sucessful.
[2014-07-17 23:43:37][   70.872501] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp.
[2014-07-17 23:43:37][   70.959154] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp finish[ret:0].
[2014-07-17 23:43:37][   71.005259] L_FILE_NUM=10
[2014-07-17 23:43:37][   71.010924] L_CHECK_OK=10
[2014-07-17 23:43:37][   71.017441] [OS_DirMD5Check] Files copy from other board md5sum check success
[2014-07-17 23:43:37][   71.027791] [os_get_dir.sh] os_get_dir.sh 127.127.127.10 /startup_disk/conf/conf_secondary /tmp/timezone success.
[2014-07-17 23:43:37][   71.050213] chmod timezone config
[2014-07-17 23:43:39][   72.484896]  TimeZoneName=Asia/Beijing
[2014-07-17 23:43:39][   72.833422] -check the hwclock-
[2014-07-17 23:43:39][   72.914767] eth2: no IPv6 routers present
[2014-07-17 23:43:41][   74.523924] [os_resume_lognum_from_startdisk.sh]: Recovery log number config file from startup disk start
[2014-07-17 23:43:41][   74.554538] [os_resume_lognum_from_startdisk.sh]: Recovery log number config file from startup disk end
[2014-07-17 23:43:41][   74.608583] save log in nvram and cur_debug in poweron
[2014-07-17 23:43:41][   74.619071] ============save log to first poweron[des: /OSM/coffer_log/log/his_debug/log_debug]==============
[2014-07-17 23:43:41][   74.673643] execute os_export_log_debug
[2014-07-17 23:43:41][   74.741461] export log_debug ret[0]
[2014-07-17 23:43:41][   74.749068] execute os_cli
[2014-07-17 23:43:41][   74.812301] export os_cli ret[0]
[2014-07-17 23:43:41][   74.819618] execute os_kbox_config -e
[2014-07-17 23:43:41][   74.848690] bios_read_one_recorder index=1
[2014-07-17 23:43:41][   74.852772] bios_read_one_recorder start_addr=ffff88007e5c6000
[2014-07-17 23:43:41][   74.858575] bios_read_one_recorder num : 0, length : 1164
[2014-07-17 23:43:41][   74.874452] bios_read_one_recorder index=1
[2014-07-17 23:43:41][   74.878535] bios_read_one_recorder start_addr=ffff88007e786000
[2014-07-17 23:43:41][   74.884337] bios_read_one_recorder num : 0, length : 16424
[2014-07-17 23:43:41][   74.893411] bios_read_one_recorder index=1
[2014-07-17 23:43:41][   74.897490] bios_read_one_recorder start_addr=ffff88007e986000
[2014-07-17 23:43:41][   74.903292] bios_read_one_recorder num : 0, length : 630
[2014-07-17 23:43:41][   74.915275] export os_kbox_config -e ret[0]
[2014-07-17 23:43:41][   74.923046] copy kbox log to /tmp/current_debug_6132/kbox.
[2014-07-17 23:43:41][   74.932948] copy kbox log ret[0]
[2014-07-17 23:43:41][   74.939320] log from: [/OSM/coffer_log/log/cur_debug]
[2014-07-17 23:43:41][   75.363273] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp.
[2014-07-17 23:43:42][   75.851646] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp finish[ret:0].
[2014-07-17 23:43:42][   76.077349] L_FILE_NUM=43
[2014-07-17 23:43:42][   76.083059] L_CHECK_OK=43
[2014-07-17 23:43:42][   76.089606] [OS_DirMD5Check] Files copy from other board md5sum check success
[2014-07-17 23:43:42][   76.099916] [os_get_dir.sh] os_get_dir.sh 127.127.127.10 /OSM/coffer_log/log_secondary /tmp/current_debug_6132 success.
[2014-07-17 23:43:42][   76.114298] move cur_debug[/tmp/current_debug_6132/log_secondary/cur_debug] from remote to /tmp/current_debug_6132
[2014-07-17 23:43:42][   76.139824] /OSM/coffer_log/log/cur_debug modify time[20140717233848], /tmp/current_debug_6132/cur_debug modify time[20140709173730]
[2014-07-17 23:43:42][   76.163073] /tmp/current_debug_6132/cur_debug is null
[2014-07-17 23:43:42][   76.171262] compare current log dir ret[0]
[2014-07-17 23:43:42][   76.203539] use log[/OSM/coffer_log/log/cur_debug], so copy /OSM/coffer_log/log/cur_debug to /tmp/current_debug_6132 for tar message
[2014-07-17 23:43:42][   76.225546] [19024][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:42][   76.264363] [19034][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:42][   76.281007] [19038][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:42][   76.298089] boot disk is /dev/sda
[2014-07-17 23:43:42][   76.324230] [19049][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:42][   76.363259] [19059][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:42][   76.379905] [19063][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:42][   76.396479] boot disk is /dev/sda
[2014-07-17 23:43:42][   76.425101] The log num in coffer is 228
[2014-07-17 23:43:43][   76.482549] Not found raid device,single device system!
[2014-07-17 23:43:43][   76.490816] the boot disk is /dev/sda
[2014-07-17 23:43:43][   76.570261] [OS_SAVE_COMPLETE] cp -af /etc/poweron_and_off_number.conf /startup_disk/conf/conf_local success
[2014-07-17 23:43:43][   76.595073] Not found raid device,single device system!
[2014-07-17 23:43:43][   76.603389] the boot disk is /dev/sda
[2014-07-17 23:43:43][   76.704604] [OS_CopyFileToOtherBoard] Copying file to other board...
[2014-07-17 23:43:43][   76.763634] [OS_CopyFileToOtherBoard] Copy file to other board finish[ret:0]...
[2014-07-17 23:43:43][   77.041766] [os_put_file.sh] os_put_file.sh 127.127.127.10 /etc/poweron_and_off_number.conf /tmp success.
[2014-07-17 23:43:43][   77.298473] /etc/poweron_and_off_number.conf save to 127.127.127.10/startup_disk/conf/conf_secondary success
[2014-07-17 23:43:43][   77.311845] [product_sync_conf_file.sh] sync conf file success
[2014-07-17 23:43:43][   77.320709] [product_sync_conf_file.sh] sync result detail: to first:ok,to sec:ok
[2014-07-17 23:43:44][   77.666029] [OS_CHECK_IF_DIR_BEYOND_LIMIT] /OSM/coffer_log/log/his_debug/log_debug/his_tar_0000000219_20140714221940_1_poweron.tgz is extruded by /tmp/his_debug_dir_22425/his_tar_0000000229_20140717234342_1_poweron.tgz
[2014-07-17 23:43:44][   77.702616] [OS_CHECK_IF_DIR_BEYOND_LIMIT] /OSM/coffer_log/log/his_debug/log_debug/his_tar_0000000220_20140714223603_1_poweron.tgz is extruded by /tmp/his_debug_dir_22425/his_tar_0000000229_20140717234342_1_poweron.tgz
[2014-07-17 23:43:44][   77.748910] [OS_SAVE_COMPLETE] cp -af /tmp/his_debug_dir_22425/his_tar_0000000229_20140717234342_1_poweron.tgz /OSM/coffer_log/log/his_debug/log_debug success
[2014-07-17 23:43:44][   77.766717] save log[his_tar_0000000229_20140717234342_1_poweron.tgz] to disk[/OSM/coffer_log/log/his_debug/log_debug] ret[0] 
[2014-07-17 23:43:44][   77.878138] [OS_CopyFileToOtherBoard] Copying file to other board...
[2014-07-17 23:43:44][   77.931407] [OS_CopyFileToOtherBoard] Copy file to other board finish[ret:0]...
[2014-07-17 23:43:44][   78.151349] [os_put_file.sh] os_put_file.sh 127.127.127.10 /tmp/his_debug_dir_22425/his_tar_0000000229_20140717234342_1_poweron.tgz /tmp success.
[2014-07-17 23:43:45][   78.484816] /tmp/his_debug_dir_22425/his_tar_0000000229_20140717234342_1_poweron.tgz save to 127.127.127.10/OSM/coffer_log/log_secondary/his_debug/log_debug success
[2014-07-17 23:43:45][   78.503073] save log[his_tar_0000000229_20140717234342_1_poweron.tgz] to net[127.127.127.10:/OSM/coffer_log/log_secondary/his_debug/log_debug] ret[0] 
[2014-07-17 23:43:45][   78.525888] save log in nvram and cur_debug ret[0] in poweron
[2014-07-17 23:43:46]Accepted publickey for ibc_os_hs from 127.127.127.10 port 52323 ssh2
[2014-07-17 23:43:46]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:43:46]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:43:46][   79.645902] [OS_PRODUCE_MD5CHECK_FILE_LIST] before read /tmp_md5sum_check_file_list_9278.
[2014-07-17 23:43:46][   79.658390] [OS_PRODUCE_MD5CHECK_FILE_LIST] end read /tmp_md5sum_check_file_list_9278.
[2014-07-17 23:43:46][   79.673364] [OS_PRODUCE_MD5CHECK_FILE]before read /md5sum_check_file_list_9278.
[2014-07-17 23:43:46][   79.684786] [OS_PRODUCE_MD5CHECK_FILE]end read /md5sum_check_file_list_9278.
[2014-07-17 23:43:46]Received disconnect from 127.127.127.10: 11: disconnected by user
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9333] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9332] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/clock", 1038 bytes, 3228.25Kbyte/sec
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/ifcfg-eth2", 248 bytes, 801.95Kbyte/sec
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/localtime", 311 bytes, 1050.90Kbyte/sec
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/routes", 27 bytes, 90.30Kbyte/sec
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/tmp/md5sum_sync_31912", 178 bytes, 695.31Kbyte/sec
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9334] [ibc_os_hs] OK DELETE: Client "127.127.127.10", "/tmp/md5sum_sync_31912"
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9336] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:46]Thu Jul 17 23:43:46 2014 [pid 9335] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:47][   80.579066] remote tell me to do sync work,i will do it.
[2014-07-17 23:43:47][   80.641477] L_REMOTE_IP=127.127.127.10
[2014-07-17 23:43:47]Thu Jul 17 23:43:47 2014 [pid 9398] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:47]Thu Jul 17 23:43:47 2014 [pid 9397] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:47][   81.309456] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp.
[2014-07-17 23:43:47][   81.396812] [OS_CopyDirFromOtherBoard] Copy dir from mirror use lftp finish[ret:0].
[2014-07-17 23:43:48][   81.442714] L_FILE_NUM=10
[2014-07-17 23:43:48][   81.448408] L_CHECK_OK=10
[2014-07-17 23:43:48][   81.454964] [OS_DirMD5Check] Files copy from other board md5sum check success
[2014-07-17 23:43:48][   81.465295] [os_get_dir.sh] os_get_dir.sh 127.127.127.10 /startup_disk/conf/conf_secondary /tmp success.
[2014-07-17 23:43:48][   81.494106] prepare to sync /etc/sysconfig/network/routes
[2014-07-17 23:43:48][   81.507301] /startup_disk/conf/conf_local/routes modify time: 20140712173947
[2014-07-17 23:43:48][   81.519990] /tmp/conf_secondary/routes modify time: 20140712173947
[2014-07-17 23:43:48][   81.541350] prepare to sync /etc/sysconfig/network/ifcfg-eth2
[2014-07-17 23:43:48][   81.554925] /startup_disk/conf/conf_local/ifcfg-eth2 modify time: 20140717234333
[2014-07-17 23:43:48][   81.568003] /tmp/conf_secondary/ifcfg-eth2 modify time: 20140712174429
[2014-07-17 23:43:48][   81.578895] the content of the two backpoint files are same, no need to sync, contiune.
[2014-07-17 23:43:48][   81.602020] prepare to sync /etc/sysconfig/network/ifroute-eth2
[2014-07-17 23:43:48][   81.615740] /startup_disk/conf/conf_local/ifroute-eth2 modify time: 20140709173825
[2014-07-17 23:43:48][   81.629183] /tmp/conf_secondary/ifroute-eth2 modify time: 20140709173825
[2014-07-17 23:43:48][   81.636148] link to peer is ok.tell peer to sync conf file
[2014-07-17 23:43:48][   81.651427] prepare to sync /OSM/conf/dsw_config.ini
[2014-07-17 23:43:48][   81.661735] the first and secondary backpoint are all NULL.the config file Losted or not exist.continue.
[2014-07-17 23:43:48][   81.684855] prepare to sync /OSM/conf/tv2r2_dswip.conf
[2014-07-17 23:43:48][   81.695259] the first and secondary backpoint are all NULL.the config file Losted or not exist.continue.
[2014-07-17 23:43:48][   81.723803] prepare to sync /etc/localtime
[2014-07-17 23:43:48][   81.736151] /startup_disk/conf/conf_local/localtime modify time: 20140717190736
[2014-07-17 23:43:48][   81.749238] /tmp/conf_secondary/localtime modify time: 20140717190736
[2014-07-17 23:43:48][   81.771001] prepare to sync /etc/sysconfig/clock
[2014-07-17 23:43:48][   81.783717] /startup_disk/conf/conf_local/clock modify time: 20140717190737
[2014-07-17 23:43:48][   81.796478] /tmp/conf_secondary/clock modify time: 20140717190737
[2014-07-17 23:43:48][   81.821937] prepare to sync /OSM/conf/bay_config.ini
[2014-07-17 23:43:48][   81.831792] bay_config.ini is null in second backpoint of conf file,continue.
[2014-07-17 23:43:48][   81.843150] [os_resume_conf_from_net.sh] sync is end.
[2014-07-17 23:43:48][   81.846587]  Reset inform
[2014-07-17 23:43:48][   81.846627] The latest NO.1 reset is software reset at 0H 2M 13S ago.
[2014-07-17 23:43:48][   81.846631] The latest NO.2 reset is poweron reset at 0H 7M 9S ago.
[2014-07-17 23:43:48][   81.899041] Not found raid device,single device system!
[2014-07-17 23:43:48][   81.902252]  the boot disk is /dev/sda
[2014-07-17 23:43:48][   81.903878] Start os only
[2014-07-17 23:43:48][   81.909600] [20447][1500003e600b4][INFO][agetty_query thread is running on CPU 0.][NONE][AgettyQueryThread,226][agetty_query]
[2014-07-17 23:43:48][   81.910856] L_REMOTE_IP=127.127.127.10
[2014-07-17 23:43:48][   81.993379] Enter os_load_ok.sh...
[2014-07-17 23:43:48][   82.004770] [OS_GetFileListFromOtherBoard] getting file list...
[2014-07-17 23:43:48][   82.016987] [20474][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:48][   82.041155] [OS_GetFileListFromOtherBoard] get file list finish[ret:0]...
[2014-07-17 23:43:48][   82.046240] [os_get_file_list.sh] get file list 127.127.127.10:/OSM/coffer_log/log_secondary/his_debug/message and save local:/tmp/tmpsn_filelist10017 success.
[2014-07-17 23:43:48][   82.047101] [20481][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:48][   82.053996] local file list: [/OSM/coffer_log/log/his_debug/message]
[2014-07-17 23:43:48][   82.054662] [20483][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:48][   82.057213] /tmp/ln_filelist10017: messages_0000000210_20140710142536_1.tgz
[2014-07-17 23:43:48][   82.060370] /tmp/ln_filelist10017: messages_0000000211_20140710161131_1.tgz
[2014-07-17 23:43:48][   82.062241] boot disk is /dev/sda
[2014-07-17 23:43:48][   82.063525] /tmp/ln_filelist10017: messages_0000000212_20140710175531_1.tgz
[2014-07-17 23:43:48][   82.066657] /tmp/ln_filelist10017: messages_0000000213_20140710211104_1.tgz
[2014-07-17 23:43:48][   82.069793] /tmp/ln_filelist10017: messages_0000000214_20140714180534_1.tgz
[2014-07-17 23:43:48][   82.072950] /tmp/ln_filelist10017: messages_0000000215_20140714180758_1.tgz
[2014-07-17 23:43:48][   82.076083] /tmp/ln_filelist10017: messages_0000000216_20140714181159_1.tgz
[2014-07-17 23:43:48][   82.079225] /tmp/ln_filelist10017: messages_0000000217_20140714181604_1.tgz
[2014-07-17 23:43:48][   82.082347] /tmp/ln_filelist10017: messages_0000000218_20140714181945_1.tgz
[2014-07-17 23:43:48][   82.084851] [20491][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:48][   82.085455] /tmp/ln_filelist10017: messages_0000000219_20140714182327_1.tgz
[2014-07-17 23:43:48][   82.088619] /tmp/ln_filelist10017: messages_0000000220_20140714182712_1.tgz
[2014-07-17 23:43:48][   82.091754] /tmp/ln_filelist10017: messages_0000000221_20140714183057_1.tgz
[2014-07-17 23:43:48][   82.094892] /tmp/ln_filelist10017: messages_0000000222_20140714183439_1.tgz
[2014-07-17 23:43:48][   82.098064] /tmp/ln_filelist10017: messages_0000000223_20140714183826_1.tgz
[2014-07-17 23:43:48][   82.101237] /tmp/ln_filelist10017: messages_0000000224_20140714184146_1.tgz
[2014-07-17 23:43:48][   82.104434] /tmp/ln_filelist10017: messages_0000000225_20140715005448_1.tgz
[2014-07-17 23:43:48][   82.107586] /tmp/ln_filelist10017: messages_0000000226_20140715032123_1.tgz
[2014-07-17 23:43:48][   82.110711] /tmp/ln_filelist10017: messages_0000000227_20140715065608_1.tgz
[2014-07-17 23:43:48][   82.113850] /tmp/ln_filelist10017: messages_0000000228_20140715103836_1.tgz
[2014-07-17 23:43:48][   82.115439] [20499][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:48][   82.116991] /tmp/ln_filelist10017: messages_0000000229_20140715142411_1.tgz
[2014-07-17 23:43:48][   82.120113] /tmp/ln_filelist10017: messages_0000000230_20140715191337_1.tgz
[2014-07-17 23:43:48][   82.122991] [20500][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:48][   82.123248] /tmp/ln_filelist10017: messages_0000000231_20140715224757_1.tgz
[2014-07-17 23:43:48][   82.126391] /tmp/ln_filelist10017: messages_0000000232_20140716051030_1.tgz
[2014-07-17 23:43:48][   82.129549] /tmp/ln_filelist10017: messages_0000000233_20140716085120_1.tgz
[2014-07-17 23:43:48][   82.130500] boot disk is /dev/sda
[2014-07-17 23:43:48][   82.132713] /tmp/ln_filelist10017: messages_0000000234_20140716124107_1.tgz
[2014-07-17 23:43:48][   82.135844] /tmp/ln_filelist10017: messages_0000000235_20140716162332_1.tgz
[2014-07-17 23:43:48][   82.138979] /tmp/ln_filelist10017: messages_0000000236_20140716201059_1.tgz
[2014-07-17 23:43:48][   82.142133] /tmp/ln_filelist10017: messages_0000000237_20140717000419_1.tgz
[2014-07-17 23:43:48][   82.145277] /tmp/ln_filelist10017: messages_0000000238_20140717052846_1.tgz
[2014-07-17 23:43:48][   82.148452] /tmp/ln_filelist10017: messages_0000000239_20140717090242_1.tgz
[2014-07-17 23:43:48][   82.151623] Not found raid device,single device system!
[2014-07-17 23:43:48][   82.151724] /tmp/ln_filelist10017: messages_0000000240_20140717124438_1.tgz
[2014-07-17 23:43:48][   82.154860] /tmp/ln_filelist10017: messages_0000000241_20140717162807_1.tgz
[2014-07-17 23:43:48][   82.157999] remote file list: [/OSM/coffer_log/log_secondary/his_debug/message]
[2014-07-17 23:43:48][   82.161241] /tmp/sn_filelist10017: messages_0000000210_20140710142536_1.tgz
[2014-07-17 23:43:48][   82.162257] /OSM/script/ism_os_update.sh is not exist.
[2014-07-17 23:43:48][   82.164443] /tmp/sn_filelist10017: messages_0000000211_20140710161131_1.tgz
[2014-07-17 23:43:48][   82.167582] /tmp/sn_filelist10017: messages_0000000212_20140710175531_1.tgz
[2014-07-17 23:43:48][   82.169452] set disk write when remove boot_rescue/update_pkg dir
[2014-07-17 23:43:48][   82.170718] /tmp/sn_filelist10017: messages_0000000213_20140710211104_1.tgz
[2014-07-17 23:43:48][   82.174001] /tmp/sn_filelist10017: messages_0000000214_20140714180534_1.tgz
[2014-07-17 23:43:48][   82.175512] EXT3-fs (sda1): using internal journal
[2014-07-17 23:43:48][   82.177189] /tmp/sn_filelist10017: messages_0000000215_20140714180758_1.tgz
[2014-07-17 23:43:48][   82.179098] set disk write ok and remove boot_rescue/update_pkg dir
[2014-07-17 23:43:48][   82.180336] /tmp/sn_filelist10017: messages_0000000216_20140714181159_1.tgz
[2014-07-17 23:43:48][   82.183528] /tmp/sn_filelist10017: messages_0000000217_20140714181604_1.tgz
[2014-07-17 23:43:48][   82.186631] /tmp/sn_filelist10017: messages_0000000218_20140714181945_1.tgz
[2014-07-17 23:43:48][   82.189684] /tmp/sn_filelist10017: messages_0000000219_20140714182327_1.tgz
[2014-07-17 23:43:48][   82.192803] /tmp/sn_filelist10017: messages_0000000220_20140714182712_1.tgz
[2014-07-17 23:43:48][   82.195889] /tmp/sn_filelist10017: messages_0000000221_20140714183057_1.tgz
[2014-07-17 23:43:48][   82.199026] /tmp/sn_filelist10017: messages_0000000222_20140714183439_1.tgz
[2014-07-17 23:43:48][   82.202165] /tmp/sn_filelist10017: messages_0000000223_20140714183826_1.tgz
[2014-07-17 23:43:48][   82.203678] ********* set cold patch link file! ***********
[2014-07-17 23:43:48][   82.205376] /tmp/sn_filelist10017: messages_0000000224_20140714184146_1.tgz
[2014-07-17 23:43:48][   82.207571] begin to set cold patch link file
[2014-07-17 23:43:48][   82.208540] /tmp/sn_filelist10017: messages_0000000225_20140715005448_1.tgz
[2014-07-17 23:43:48][   82.211722] /tmp/sn_filelist10017: messages_0000000226_20140715032123_1.tgz
[2014-07-17 23:43:48][   82.214787] append state[normal] to patch_status
[2014-07-17 23:43:48][   82.215014] /tmp/sn_filelist10017: messages_0000000227_20140715065608_1.tgz
[2014-07-17 23:43:48][   82.218785] set cold patch state normal and flush disk
[2014-07-17 23:43:48][   82.218803] /tmp/sn_filelist10017: messages_0000000228_20140715103836_1.tgz
[2014-07-17 23:43:48][   82.222161] /tmp/sn_filelist10017: messages_0000000229_20140715142411_1.tgz
[2014-07-17 23:43:48][   82.222277] set disk readonly
[2014-07-17 23:43:48][   82.225312] /tmp/sn_filelist10017: messages_0000000230_20140715191337_1.tgz
[2014-07-17 23:43:48][   82.228520] /tmp/sn_filelist10017: messages_0000000231_20140715224757_1.tgz
[2014-07-17 23:43:48][   82.231614] /tmp/sn_filelist10017: messages_0000000232_20140716051030_1.tgz
[2014-07-17 23:43:48][   82.234727] /tmp/sn_filelist10017: messages_0000000233_20140716085120_1.tgz
[2014-07-17 23:43:48][   82.237853] /tmp/sn_filelist10017: messages_0000000234_20140716124107_1.tgz
[2014-07-17 23:43:48][   82.240438] ********* set cold patch link file success! ***********
[2014-07-17 23:43:48][   82.241037] /tmp/sn_filelist10017: messages_0000000235_20140716162332_1.tgz
[2014-07-17 23:43:48][   82.244282] /tmp/sn_filelist10017: messages_0000000236_20140716201059_1.tgz
[2014-07-17 23:43:48][   82.247451] /tmp/sn_filelist10017: messages_0000000237_20140717000419_1.tgz
[2014-07-17 23:43:48][   82.248359] [OS_CONF_GROUPCAST_ROUTE]config groupcast route begin
[2014-07-17 23:43:48][   82.250657] /tmp/sn_filelist10017: messages_0000000238_20140717052846_1.tgz
[2014-07-17 23:43:48][   82.252624] [OS_CONF_GROUPCAST_ROUTE]config groupcast route end
[2014-07-17 23:43:48][   82.253803] /tmp/sn_filelist10017: messages_0000000239_20140717090242_1.tgz
[2014-07-17 23:43:48][   82.256955] /tmp/sn_filelist10017: messages_0000000240_20140717124438_1.tgz
[2014-07-17 23:43:48][   82.260086] /tmp/sn_filelist10017: messages_0000000241_20140717162807_1.tgz
[2014-07-17 23:43:48][   82.266160] compare [/tmp/ln_filelist10017] with [/tmp/sn_filelist10017] result[0:the same]
[2014-07-17 23:43:48][   82.269299] compare file list: 
[2014-07-17 23:43:48][][1500000350000][INFO][begin to initial servicectrl.][NONE][main,54][servicectrl]
[2014-07-17 23:43:48][   82.269744] [20537][1500003e50113][ERR][Syscall not registered, cmd = (0x204).][VOS][LVOS_FindSysCall,51][servicectrl]
[2014-07-17 23:43:48][   82.269750] [20537][1500003e5010f][ERR][Unknown syscall (0x204).][VOS][LVOS_SysCallProcUnlockedIoctl,104][servicectrl]
[2014-07-17 23:43:48][   82.272528] merge file list: 
[2014-07-17 23:43:48][   82.275752] /tmp/sync_file_list_17906: messages_0000000241_20140717162807_1.tgz
[2014-07-17 23:43:48][   82.278906] /tmp/sync_file_list_17906: messages_0000000240_20140717124438_1.tgz
[2014-07-17 23:43:48][   82.281999] /tmp/sync_file_list_17906: messages_0000000239_20140717090242_1.tgz
[2014-07-17 23:43:48][   82.285162] /tmp/sync_file_list_17906: messages_0000000238_20140717052846_1.tgz
[2014-07-17 23:43:48][   82.288304] /tmp/sync_file_list_17906: messages_0000000237_20140717000419_1.tgz
[2014-07-17 23:43:48][   82.291427] /tmp/sync_file_list_17906: messages_0000000236_20140716201059_1.tgz
[2014-07-17 23:43:48][   82.294565] /tmp/sync_file_list_17906: messages_0000000235_20140716162332_1.tgz
[2014-07-17 23:43:48][   82.297699] /tmp/sync_file_list_17906: messages_0000000234_20140716124107_1.tgz
[2014-07-17 23:43:48][   82.300837] /tmp/sync_file_list_17906: messages_0000000233_20140716085120_1.tgz
[2014-07-17 23:43:48][   82.304008] /tmp/sync_file_list_17906: messages_0000000232_20140716051030_1.tgz
[2014-07-17 23:43:48][   82.307142] /tmp/sync_file_list_17906: messages_0000000231_20140715224757_1.tgz
[2014-07-17 23:43:48][   82.310350] /tmp/sync_file_list_17906: messages_0000000230_20140715191337_1.tgz
[2014-07-17 23:43:48][   82.314385] /tmp/sync_file_list_17906: messages_0000000229_20140715142411_1.tgz
[2014-07-17 23:43:48][   82.314397] [./os_load_ok.sh]cmdline is not os_boot_osp,need not execute os_backup_bootdata.sh
[2014-07-17 23:43:48][   82.317511] /tmp/sync_file_list_17906: messages_0000000228_20140715103836_1.tgz
[2014-07-17 23:43:48][   82.320665] /tmp/sync_file_list_17906: messages_0000000227_20140715065608_1.tgz
[2014-07-17 23:43:48][   82.323654] [20551][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:48][   82.323829] /tmp/sync_file_list_17906: messages_0000000226_20140715032123_1.tgz
[2014-07-17 23:43:48][   82.326943] /tmp/sync_file_list_17906: messages_0000000225_20140715005448_1.tgz
[2014-07-17 23:43:48][   82.330073] /tmp/sync_file_list_17906: messages_0000000224_20140714184146_1.tgz
[2014-07-17 23:43:48][   82.333205] /tmp/sync_file_list_17906: messages_0000000223_20140714183826_1.tgz
[2014-07-17 23:43:48][   82.336343] /tmp/sync_file_list_17906: messages_0000000222_20140714183439_1.tgz
[2014-07-17 23:43:48][   82.339477] /tmp/sync_file_list_17906: messages_0000000221_20140714183057_1.tgz
[2014-07-17 23:43:48][   82.342625] /tmp/sync_file_list_17906: messages_0000000220_20140714182712_1.tgz
[2014-07-17 23:43:48][   82.345750] /tmp/sync_file_list_17906: messages_0000000219_20140714182327_1.tgz
[2014-07-17 23:43:48][   82.348923] /tmp/sync_file_list_17906: messages_0000000218_20140714181945_1.tgz
[2014-07-17 23:43:48][   82.352074] /tmp/sync_file_list_17906: messages_0000000217_20140714181604_1.tgz
[2014-07-17 23:43:48][   82.353794] [20558][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:48][   82.355239] /tmp/sync_file_list_17906: messages_0000000216_20140714181159_1.tgz
[2014-07-17 23:43:48][   82.358375] /tmp/sync_file_list_17906: messages_0000000215_20140714180758_1.tgz
[2014-07-17 23:43:48][   82.361388] [20560][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:48][   82.361506] /tmp/sync_file_list_17906: messages_0000000214_20140714180534_1.tgz
[2014-07-17 23:43:48][   82.364653] /tmp/sync_file_list_17906: messages_0000000213_20140710211104_1.tgz
[2014-07-17 23:43:48][   82.367784] /tmp/sync_file_list_17906: messages_0000000212_20140710175531_1.tgz
[2014-07-17 23:43:48][   82.368879] boot disk is /dev/sda
[2014-07-17 23:43:48][   82.370921] /tmp/sync_file_list_17906: messages_0000000211_20140710161131_1.tgz
[2014-07-17 23:43:48][   82.374060] /tmp/sync_file_list_17906: messages_0000000210_20140710142536_1.tgz
[2014-07-17 23:43:48][   82.380059] [os_resume_log_from_net.sh] Two backup points are same, no need to sync.
[2014-07-17 23:43:48][   82.391489] [20568][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:43:48][   82.421554] [20575][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:43:49][   82.429122] [20577][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:43:49][   82.436620] boot disk is /dev/sda
[2014-07-17 23:43:49][   82.465840] [OS_GetFileListFromOtherBoard] getting file list...
[2014-07-17 23:43:49][   82.500058] [OS_GetFileListFromOtherBoard] get file list finish[ret:0]...
[2014-07-17 23:43:49][   82.505163] [os_get_file_list.sh] get file list 127.127.127.10:/OSM/coffer_log/log_secondary/his_debug/log_debug and save local:/tmp/tmpsn_filelist10666 success.
[2014-07-17 23:43:49][   82.512745] local file list: [/OSM/coffer_log/log/his_debug/log_debug]
[2014-07-17 23:43:49][   82.515963] /tmp/ln_filelist10666: his_tar_0000000221_20140714231558_1_poweron.tgz
[2014-07-17 23:43:49][   82.519131] /tmp/ln_filelist10666: his_tar_0000000222_20140715010053_1_poweron.tgz
[2014-07-17 23:43:49][   82.522292] /tmp/ln_filelist10666: his_tar_0000000223_20140715165601_1_poweron.tgz
[2014-07-17 23:43:49][   82.525443] /tmp/ln_filelist10666: his_tar_0000000224_20140715232148_1_poweron.tgz
[2014-07-17 23:43:49][   82.528682] /tmp/ln_filelist10666: his_tar_0000000225_20140717014412_1_poweron.tgz
[2014-07-17 23:43:49][   82.530734] boot finish
[2014-07-17 23:43:49][   82.531904] /tmp/ln_filelist10666: his_tar_0000000226_20140717030939_1_poweron.tgz
[2014-07-17 23:43:49][   82.535067] /tmp/ln_filelist10666: his_tar_0000000227_20140717190358_1_poweron.tgz
[2014-07-17 23:43:49][   82.538266] /tmp/ln_filelist10666: his_tar_0000000227_20140717230724_1_poweron.tgz
[2014-07-17 23:43:49][   82.541457] /tmp/ln_filelist10666: his_tar_0000000228_20140717233743_1_poweron.tgz
[2014-07-17 23:43:49][   82.544676] /tmp/ln_filelist10666: his_tar_0000000229_20140717234342_1_poweron.tgz
[2014-07-17 23:43:49][   82.547874] remote file list: [/OSM/coffer_log/log_secondary/his_debug/log_debug]
[2014-07-17 23:43:49][   82.551080] /tmp/sn_filelist10666: his_tar_0000000221_20140714231558_1_poweron.tgz
[2014-07-17 23:43:49][   82.554236] /tmp/sn_filelist10666: his_tar_0000000222_20140715010053_1_poweron.tgz
[2014-07-17 23:43:49][   82.557385] /tmp/sn_filelist10666: his_tar_0000000223_20140715165601_1_poweron.tgz
[2014-07-17 23:43:49][   82.560541] /tmp/sn_filelist10666: his_tar_0000000224_20140715232148_1_poweron.tgz
[2014-07-17 23:43:49][   82.563684] /tmp/sn_filelist10666: his_tar_0000000225_20140717014412_1_poweron.tgz
[2014-07-17 23:43:49][   82.566842] /tmp/sn_filelist10666: his_tar_0000000226_20140717030939_1_poweron.tgz
[2014-07-17 23:43:49][   82.570022] /tmp/sn_filelist10666: his_tar_0000000227_20140717190358_1_poweron.tgz
[2014-07-17 23:43:49][   82.572018] [os_record_abnormal_status.sh]Enter os_record_abnormal_status.sh
[2014-07-17 23:43:49][   82.573176] /tmp/sn_filelist10666: his_tar_0000000227_20140717230724_1_poweron.tgz
[2014-07-17 23:43:49][   82.576289] /tmp/sn_filelist10666: his_tar_0000000228_20140717233743_1_poweron.tgz
[2014-07-17 23:43:49][   82.579448] /tmp/sn_filelist10666: his_tar_0000000229_20140717234342_1_poweron.tgz
[2014-07-17 23:43:49][   82.585537] compare [/tmp/ln_filelist10666] with [/tmp/sn_filelist10666] result[0:the same]
[2014-07-17 23:43:49][   82.586917] [os_record_abnormal_status.sh]Begin to record status
[2014-07-17 23:43:49][   82.588709] compare file list: 
[2014-07-17 23:43:49][   82.590158] [os_record_abnormal_status.sh]Check inputed paramer
[2014-07-17 23:43:49][   82.592043] merge file list: 
[2014-07-17 23:43:49][   82.593554] [os_record_abnormal_status.sh]Input abnormal status is "201"
[2014-07-17 23:43:49][   82.595309] /tmp/sync_file_list_17906: his_tar_0000000229_20140717234342_1_poweron.tgz
[2014-07-17 23:43:49][   82.596793] [os_record_abnormal_status.sh]Input controlor id is ""
[2014-07-17 23:43:49][   82.598518] /tmp/sync_file_list_17906: his_tar_0000000228_20140717233743_1_poweron.tgz
[2014-07-17 23:43:49][   82.601704] /tmp/sync_file_list_17906: his_tar_0000000227_20140717230724_1_poweron.tgz
[2014-07-17 23:43:49][   82.603154] [os_record_abnormal_status.sh]Record status 201 to file /OSM/log/runlog/sys_power_on_record
[2014-07-17 23:43:49][   82.604896] /tmp/sync_file_list_17906: his_tar_0000000227_20140717190358_1_poweron.tgz
[2014-07-17 23:43:49][   82.606438] [os_record_abnormal_status.sh]start ism web service
[2014-07-17 23:43:49][   82.608081] /tmp/sync_file_list_17906: his_tar_0000000226_20140717030939_1_poweron.tgz
[2014-07-17 23:43:49][   82.609971] [os_record_abnormal_status.sh]Start cli agent service
[2014-07-17 23:43:49][   82.611283] /tmp/sync_file_list_17906: his_tar_0000000225_20140717014412_1_poweron.tgz
[2014-07-17 23:43:49][   82.614462] /tmp/sync_file_list_17906: his_tar_0000000224_20140715232148_1_poweron.tgz
[2014-07-17 23:43:49][   82.617635] /tmp/sync_file_list_17906: his_tar_0000000223_20140715165601_1_poweron.tgz
[2014-07-17 23:43:49][   82.620754] /tmp/sync_file_list_17906: his_tar_0000000222_20140715010053_1_poweron.tgz
[2014-07-17 23:43:49][   82.623879] /tmp/sync_file_list_17906: his_tar_0000000221_20140714231558_1_poweron.tgz
[2014-07-17 23:43:49][   82.628201] [os_record_abnormal_status.sh]Leave os_record_abnormal_status.sh
[2014-07-17 23:43:49][   82.630017] [os_resume_log_from_net.sh] Two backup points are same, no need to sync.
[2014-07-17 23:43:49][   82.648607] ISM: power on failed.
[2014-07-17 23:43:49][   82.651779] ISM: [R01ism_setup.sh]kill ism related processs(ibase httpd watchDog).
[2014-07-17 23:43:49][   82.682740] ISM: deploy poweron_failed package.
[2014-07-17 23:43:49][   83.417488]  TimeZoneName=Asia/Beijing
[2014-07-17 23:43:54]ntpd 4.2.4p8@1.1612-o Fri May  9 08:37:26 UTC 2014 (1)
[2014-07-17 23:43:54]precision = 1.000 usec
[2014-07-17 23:43:54]ntp_io: estimated max descriptors: 1024, initial socket boundary: 16
[2014-07-17 23:43:54]Listening on interface #0 wildcard, 0.0.0.0#123 Disabled
[2014-07-17 23:43:54]Listening on interface #1 wildcard, ::#123 Disabled
[2014-07-17 23:43:54]Listening on interface #2 eth2, fec0::11#123 Enabled
[2014-07-17 23:43:54]Listening on interface #3 bond0, fe80::4a46:fbff:fed5:e32#123 Enabled
[2014-07-17 23:43:54]Listening on interface #4 eth2, fe80::4a46:fbff:fed5:e33#123 Enabled
[2014-07-17 23:43:54]Listening on interface #5 lo, ::1#123 Enabled
[2014-07-17 23:43:54]Listening on interface #6 lo, 127.0.0.1#123 Enabled
[2014-07-17 23:43:54]Listening on interface #7 eth2, 100.148.54.112#123 Enabled
[2014-07-17 23:43:54]Listening on interface #8 eth2:1, 172.168.128.101#123 Enabled
[2014-07-17 23:43:54]Listening on interface #9 bond0, 127.127.127.11#123 Enabled
[2014-07-17 23:43:54]kernel time sync status 2040
[2014-07-17 23:43:55]Accepted publickey for ibc_os_hs from 127.127.127.10 port 52327 ssh2
[2014-07-17 23:43:55]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:43:55]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:43:55][   89.390321] [OS_PRODUCE_MD5CHECK_FILE_LIST] before read /tmp_md5sum_check_file_list_11448.
[2014-07-17 23:43:55][   89.394689] [OS_PRODUCE_MD5CHECK_FILE_LIST] end read /tmp_md5sum_check_file_list_11448.
[2014-07-17 23:43:55][   89.401815] [OS_PRODUCE_MD5CHECK_FILE]before read /md5sum_check_file_list_11448.
[2014-07-17 23:43:55][   89.405925] [OS_PRODUCE_MD5CHECK_FILE]end read /md5sum_check_file_list_11448.
[2014-07-17 23:43:56]Received disconnect from 127.127.127.10: 11: disconnected by user
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11503] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11502] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/clock", 1038 bytes, 3109.42Kbyte/sec
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/ifcfg-eth2", 248 bytes, 759.21Kbyte/sec
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/localtime", 311 bytes, 1040.11Kbyte/sec
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/startup_disk/conf/conf_secondary/routes", 27 bytes, 90.30Kbyte/sec
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DOWNLOAD: Client "127.127.127.10", "/tmp/md5sum_sync_30615", 178 bytes, 671.15Kbyte/sec
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11504] [ibc_os_hs] OK DELETE: Client "127.127.127.10", "/tmp/md5sum_sync_30615"
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11507] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11506] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:56]Thu Jul 17 23:43:56 2014 [pid 11556] CONNECT: Client "127.127.127.10"
[2014-07-17 23:43:56]Thu Jul 17 23:43:57 2014 [pid 11555] [ibc_os_hs] OK LOGIN: Client "127.127.127.10"
[2014-07-17 23:43:58]Exiting...
[2014-07-17 23:43:58]attribute: disable should not be in default section [file=/etc/xinetd.conf] [line=17]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/chargen [file=/etc/xinetd.conf] [line=30]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/chargen-udp [file=/etc/xinetd.d/chargen-udp] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/daytime [file=/etc/xinetd.d/daytime] [line=15]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/daytime-udp [file=/etc/xinetd.d/daytime-udp] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/discard [file=/etc/xinetd.d/discard] [line=15]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/discard-udp [file=/etc/xinetd.d/discard-udp] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/echo [file=/etc/xinetd.d/echo] [line=15]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/echo-udp [file=/etc/xinetd.d/echo-udp] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/netstat [file=/etc/xinetd.d/netstat] [line=15]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/rsync [file=/etc/xinetd.d/rsync] [line=16]
[2014-07-17 23:43:58]Server /usr/sbin/rsyncd is not executable [file=/etc/xinetd.d/rsync] [line=9]
[2014-07-17 23:43:58]Error parsing attribute server - DISABLING SERVICE [file=/etc/xinetd.d/rsync] [line=9]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/servers [file=/etc/xinetd.d/servers] [line=12]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/services [file=/etc/xinetd.d/services] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/systat [file=/etc/xinetd.d/systat] [line=14]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/tftp [file=/etc/xinetd.d/tftp] [line=17]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/time [file=/etc/xinetd.d/time] [line=20]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/time-udp [file=/etc/xinetd.d/time-udp] [line=15]
[2014-07-17 23:43:58]Reading included configuration file: /etc/xinetd.d/vsftpd [file=/etc/xinetd.d/vsftpd] [line=15]
[2014-07-17 23:43:58]xinetd Version 2.3.14 started with libwrap loadavg options compiled in.
[2014-07-17 23:43:58]Started working: 1 available service
[2014-07-17 23:43:59]no more processes left in this runlevel
[2014-07-17 23:44:04][   98.149739] ttyS0 is not run
[2014-07-17 23:44:18][  112.260764] [28045][1500003e50113][ERR][Syscall not registered, cmd = (0x204).][VOS][LVOS_FindSysCall,51][servicectrl]
[2014-07-17 23:44:18][  112.260770] [28045][1500003e5010f][ERR][Unknown syscall (0x204).][VOS][LVOS_SysCallProcUnlockedIoctl,104][servicectrl]
[2014-07-17 23:44:24]Accepted keyboard-interactive/pam for admin from 129.7.11.72 port 2622 ssh2
[2014-07-17 23:44:24]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:44:24]lastlog_openseek: Couldn't stat /var/log/lastlog: No such file or directory
[2014-07-17 23:44:48][  142.250629] [35552][1500003e50113][ERR][Syscall not registered, cmd = (0x204).][VOS][LVOS_FindSysCall,51][servicectrl]
[2014-07-17 23:44:48][  142.250635] [35552][1500003e5010f][ERR][Unknown syscall (0x204).][VOS][LVOS_SysCallProcUnlockedIoctl,104][servicectrl]
[2014-07-17 23:45:18][  172.240492] [43059][1500003e50113][ERR][Syscall not registered, cmd = (0x204).][VOS][LVOS_FindSysCall,51][servicectrl]
[2014-07-17 23:45:18][  172.240499] [43059][1500003e5010f][ERR][Unknown syscall (0x204).][VOS][LVOS_SysCallProcUnlockedIoctl,104][servicectrl]
[2014-07-17 23:45:34][  187.592327] agetty_query.ko.gz has been installed!
[2014-07-17 23:45:34][  187.603641] [46904][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:45:34][  187.634947] [46912][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:45:34][  187.642553] [46914][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:45:34][  187.650045] boot disk is /dev/sda
[2014-07-17 23:45:34][  187.673454] [46922][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][cat]
[2014-07-17 23:45:34][  187.704260] [46929][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][cat]
[2014-07-17 23:45:34][  187.711815] [46931][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][cat]
[2014-07-17 23:45:34][  187.719321] boot disk is /dev/sda
[2014-07-17 23:45:34][daemon:NOTICE][Do_Daemon,782]  daemon process start success, msg queue is [0].
[2014-07-17 23:45:34][  187.944206] [46989][00005000040506fb][INFO][Item number is 9.][DRV_API][DRV_IOCNT_PORT_GetConfValue,184]
[2014-07-17 23:45:34][  187.944214] [46989][00005000040506fe][INFO][Configitem NO.0 is 4096.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944222] [46989][00005000040506fe][INFO][Configitem NO.1 is 8192.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944229] [46989][00005000040506fe][INFO][Configitem NO.2 is 16384.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944236] [46989][00005000040506fe][INFO][Configitem NO.3 is 32768.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944243] [46989][00005000040506fe][INFO][Configitem NO.4 is 65536.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944251] [46989][00005000040506fe][INFO][Configitem NO.5 is 131072.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944258] [46989][00005000040506fe][INFO][Configitem NO.6 is 262144.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944265] [46989][00005000040506fe][INFO][Configitem NO.7 is 524288.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944273] [46989][00005000040506fe][INFO][Configitem NO.8 is 1048576.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944280] [46989][00005000040506fb][INFO][Item number is 4.][DRV_API][DRV_IOCNT_PORT_GetConfValue,184]
[2014-07-17 23:45:34][  187.944287] [46989][00005000040506fe][INFO][Configitem NO.0 is 5.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944294] [46989][00005000040506fe][INFO][Configitem NO.1 is 10.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944301] [46989][00005000040506fe][INFO][Configitem NO.2 is 20.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944308] [46989][00005000040506fe][INFO][Configitem NO.3 is 40.][DRV_API][DRV_IOCNT_PORT_GetConfValue,204]
[2014-07-17 23:45:34][  187.944312] [46989][0000500004050690][INFO][IOCOUNT000.][DRV_API][IOCNT_DISK_VER,212]
[2014-07-17 23:45:34][  187.944438] [46989][00005000040506f6][INFO][Item number is 5.][DRV_API][DRV_IOCNT_DISK_GetConfValue,118]
[2014-07-17 23:45:34][  187.944446] [46989][00005000040506f9][INFO][Configitem NO.0 is 4096.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944453] [46989][00005000040506f9][INFO][Configitem NO.1 is 8192.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944460] [46989][00005000040506f9][INFO][Configitem NO.2 is 16384.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944467] [46989][00005000040506f9][INFO][Configitem NO.3 is 32768.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944475] [46989][00005000040506f9][INFO][Configitem NO.4 is 65536.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944481] [46989][00005000040506f6][INFO][Item number is 5.][DRV_API][DRV_IOCNT_DISK_GetConfValue,118]
[2014-07-17 23:45:34][  187.944489] [46989][00005000040506f9][INFO][Configitem NO.0 is 50000000.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944505] [46990][00005000040506f9][INFO][Configitem NO.1 is 100000000.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944513] [46990][00005000040506f9][INFO][Configitem NO.2 is 200000000.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944548] [46990][00005000040506f9][INFO][Configitem NO.3 is 400000000.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  187.944559] [46990][00005000040506f9][INFO][Configitem NO.4 is 800000000.][DRV_API][DRV_IOCNT_DISK_GetConfValue,138]
[2014-07-17 23:45:34][  188.065753] [47020][00005000040501e0][INFO][INI type is BDM_INI.][DRV_API][DRVAPI_IniMidTypeInit,165]
[2014-07-17 23:45:34][  188.065759] [47020][00005000040501e7][INFO][Init initiator template.][DRV_API][DRVAPI_InitiatorTemplateInit,291]
[2014-07-17 23:45:34][  188.065782] [47020][0000500004050265][WARN][Get item failed.][DRV_API][DRV_GetINICmdResNum,67]
[2014-07-17 23:45:34][  188.065785] [47020][0000500004050267][INFO][Get ini queue cmd number is 81920.][DRV_API][DRV_GetINICmdResNum,88]
[2014-07-17 23:45:34][  188.069815] [47021][000050000405026a][INFO][Alloc memery successed, resource pool start at ffffc90015375000.][DRV_API][DRV_InitINICmdResource,130]
[2014-07-17 23:45:34][  188.074102] [47022][000050000405023b][INFO][Driver IO sub system for initiator init successed.][DRV_API][DRV_INI_Init,2328]
[2014-07-17 23:45:35][  188.535066] [47137][00005000040702ca][INFO][MPA soft version:2014.06.09T01][DI][MPA_Init,1175]
[2014-07-17 23:45:35][  188.535072] [47137][00005000040702cc][INFO][MPA check product ver from bsp success, 21][DI][MPA_PangeaProductVerInit,891]
[2014-07-17 23:45:35][  188.547744] [47141][00005000040703a0][ERR][USB disk not found,start to reset usb channel][DI][MPA_UsbNotify,575]
[2014-07-17 23:45:35][  188.547751] [47141][540004061107][INF][In hard reset function.][BSP][SPV2R1_H.dReset,3061][insmod]
[2014-07-17 23:45:35][  188.547757] [47141][540004061108][WAR][Hard reset not support device 7.][BSP][SPV2R1_H.dReset,3074][insmod]
[2014-07-17 23:45:35][  188.547764] [47141][00005000042003e8][INFO][Driver 18 register encl op][DMI][DAL_RegisterEnclOp,122]
[2014-07-17 23:45:35][  188.547769] [47141][00005000042003e8][INFO][Driver 18 register fru op.][DMI][DAL_RegisterFruOp,182]
[2014-07-17 23:45:35][  188.547775] [47141][00005000042003e8][INFO][Driver 18 register temp op][DMI][DAL_RegisterTempOp,172]
[2014-07-17 23:45:35][  188.547780] [47141][00005000042003e8][INFO][Driver 18 register temp set op.][DMI][DAL_RegisterTempSetOp,1641]
[2014-07-17 23:45:35][  188.547785] [47141][00005000042003e8][INFO][Driver 18 register volt op][DMI][DAL_RegisterVoltOp,535]
[2014-07-17 23:45:35][  188.547790] [47141][00005000042003e8][INFO][Driver 18 register volt set op.][DMI][DAL_RegisterVoltSetOp,1704]
[2014-07-17 23:45:35][  188.547794] [47141][00005000042003e8][INFO][Driver 18 register fan op][DMI][DAL_RegisterFanOp,596]
[2014-07-17 23:45:35][  188.547798] [47141][00005000042003e8][INFO][Driver 18 register ps op][DMI][DAL_RegisterPsOp,657]
[2014-07-17 23:45:35][  188.547803] [47141][00005000042003e8][INFO][Driver 18 register cpld op][DMI][DAL_RegisterCpldOp,995]
[2014-07-17 23:45:35][  188.547807] [47141][00005000042003e8][INFO][Driver 18 register bbu op][DMI][DAL_RegisterBbuOp,1056]
[2014-07-17 23:45:35][  188.547811] [47141][00005000042003e8][INFO][Driver 18 register mgmt cpu op][DMI][DAL_RegisterMgmtCpuOp,1239]
[2014-07-17 23:45:35][  188.547816] [47141][00005000042003e8][INFO][Driver 18 register disk sas op][DMI][DAL_RegisterDiskSasOp,69]
[2014-07-17 23:45:35][  188.547821] [47141][00005000042003e8][INFO][Driver 18 register elabel op][DMI][DAL_RegisterElabelOp,215]
[2014-07-17 23:45:35][  188.547825] [47141][00005000042003e8][INFO][Driver 18 register mac op][DMI][DAL_RegisterMacOp,398]
[2014-07-17 23:45:35][  188.547829] [47141][00005000042003e8][INFO][Driver 18 register sn op][DMI][DAL_RegisterSnOp,581]
[2014-07-17 23:45:35][  188.547833] [47141][00005000042003e8][INFO][Driver 18 register prologo op][DMI][DAL_RegisterPrologoOp,459]
[2014-07-17 23:45:35][  188.547837] [47141][00005000042003e8][INFO][Driver 18 register vendor op][DMI][DAL_RegisterVendorOp,642]
[2014-07-17 23:45:35][  188.547841] [47141][00005000042003e8][INFO][Driver 18 register brand op][DMI][DAL_RegisterBrandOp,92]
[2014-07-17 23:45:35][  188.547845] [47141][00005000042003e8][INFO][Driver 18 register esn op][DMI][DAL_RegisterEsnOp,276]
[2014-07-17 23:45:35][  188.547849] [47141][00005000042003e8][INFO][Driver 18 register license op][DMI][DAL_RegisterLicenseOp,337]
[2014-07-17 23:45:35][  188.547853] [47141][00005000042003e8][INFO][Driver 18 register promodel op][DMI][DAL_RegisterPromodelOp,520]
[2014-07-17 23:45:35][  188.547857] [47141][00005000042003e8][INFO][Driver 18 register eth conf op][DMI][DAL_RegisterEthConfOp,704]
[2014-07-17 23:45:35][  188.547861] [47141][00005000042003e8][INFO][Driver 18 register dimm op][DMI][DAL_RegisterDimmOp,779]
[2014-07-17 23:45:35][  188.547866] [47141][00005000042003e8][INFO][Driver 18 alarm element op][DMI][DAL_RegisterAlarmElementOp,72]
[2014-07-17 23:45:35][  188.547870] [47141][00005000042003e8][INFO][Driver 18 alarm set op][DMI][DAL_RegisterAlarmSetOp,134]
[2014-07-17 23:45:35][  188.547874] [47141][00005000042003e8][INFO][Driver 18 register conf picker][DMI][DAL_RegisterConfPicker,80]
[2014-07-17 23:45:35][  188.547879] [47141][00005000042003e8][INFO][MPA register PortSas op][DMI][DAL_RegisterPortSasOp,280]
[2014-07-17 23:45:35][  188.547883] [47141][00005000042003e8][INFO][Driver 18 register led op][DMI][DAL_RegisterLedOp,1301]
[2014-07-17 23:45:35][  188.547887] [47141][00005000042003e8][INFO][Driver 18 register fpga op][DMI][DAL_RegisterFpgaOp,935]
[2014-07-17 23:45:35][  188.547892] [47141][00005000042003e8][INFO][Driver 18 register qsfp op!][DMI][DAL_RegisterQsfpOp,304]
[2014-07-17 23:45:35][  188.547897] [47141][00005000042003e8][INFO][Driver 18 register sfp op][DMI][DAL_RegisterSfpOp,72]
[2014-07-17 23:45:35][  188.547902] [47141][00005000042003e8][INFO][Driver 18 register chip op][DMI][DAL_RegisterChipOp,1405]
[2014-07-17 23:45:35][  188.547907] [47141][00005000042003e8][INFO][Driver 18 register eth switch port op.][DMI][DAL_RegisterPortEthSwitchOp,187]
[2014-07-17 23:45:35][  188.547913] [47141][00005000042003e8][INFO][Driver 18 register eth switch op.][DMI][DAL_RegisterEthSwitchOp,465]
[2014-07-17 23:45:35][  188.547917] [47141][00005000042003e8][INFO][Driver 18 register shake op.][DMI][DAL_RegisterShakeOp,1179]
[2014-07-17 23:45:35][  188.547921] [47141][00005000042003e8][INFO][Driver 18 register wifi op][DMI][DAL_RegisterWifiOp,1468]
[2014-07-17 23:45:35][  188.547925] [47141][00005000042003e8][INFO][Driver 18 register oops info op.][DMI][DAL_RegisterOopsInfoOp,1534]
[2014-07-17 23:45:35][  188.547928] [47141][00005000042003e8][INFO][Driver 18 register ip conf op][DMI][DAL_RegisterIpConfOp,1577]
[2014-07-17 23:45:35][  188.547932] [47141][0000500004070153][WARN][Ipmi channel is 0.][DI][MPA_OpenIpmiDriver,259]
[2014-07-17 23:45:35][  188.547940] [47141][0000500004070153][WARN][MpaIpmiUser :           (null), &MpaIpmiUser : ffffffffa1044f50][DI][MPA_OpenIpmiDriver,280]
[2014-07-17 23:45:35][  188.547944] [47141][0000500004070153][WARN][Create ipmi user failed!RetVal is: -22][DI][MPA_OpenIpmiDriver,285]
[2014-07-17 23:45:35][  188.547950] [47141][0000500004070153][WARN][MPA opens ipmi driver failed!][DI][MPA_Init,1227]
[2014-07-17 23:45:35][  188.547954] sys_init_module: 'mpa'->init suspiciously returned 1, it should follow 0/-E convention
[2014-07-17 23:45:35][  188.547955] sys_init_module: loading module anyway...
[2014-07-17 23:45:35][  188.547960] Pid: 12823, comm: insmod Tainted: P           O 3.4.24.15-0.11-default #14
[2014-07-17 23:45:35][  188.547962] Call Trace:
[2014-07-17 23:45:35][  188.547972]  [<ffffffff8109e914>] sys_init_module+0x214/0x220
[2014-07-17 23:45:35][  188.547978]  [<ffffffff8146b0f9>] system_call_fastpath+0x16/0x1b
[2014-07-17 23:45:35][  188.770486] [47196][00005000040fffff][INFO][UNF Driver Version:01.02.34.T00
[2014-07-17 23:45:35][  188.770488] ][FC_UNF][UNF_Common_init,1089]
[2014-07-17 23:45:35][  188.770492] [47196][00005000040fffff][INFO][UNF Compile Time: Jul  8 2014 03:18:27
[2014-07-17 23:45:35][  188.770494] ][FC_UNF][UNF_Common_init,1091]
[2014-07-17 23:45:35][  188.770499] [47196][00005000040507b7][INFO][Will registe Module (UNF_CBB), ID(14).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:35][  188.770504] [47196][00005000040507e1][INFO][Module ID (14) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:35][  188.770508] [47196][00005000040507e3][INFO][Module (14) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:35][  188.770513] [47196][00005000040507ba][INFO][Driver (UNF_CBB) id (14) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:35][  188.770529] [47196][000050000405025f][INFO][SndRsp = ffffffffa107c810.][DRV_API][DRVAPI_AddSCSITarget,194]
[2014-07-17 23:45:35][  188.770533] [47196][0000500004050260][INFO][XferRdy = ffffffffa107c750.][DRV_API][DRVAPI_AddSCSITarget,195]
[2014-07-17 23:45:35][  188.770537] [47196][0000500004050261][INFO][AbortCmd = ffffffffa107c690.][DRV_API][DRVAPI_AddSCSITarget,197]
[2014-07-17 23:45:35][  188.770541] [47196][0000500004050262][INFO][TskMgmt = ffffffffa107c5d0.][DRV_API][DRVAPI_AddSCSITarget,199]
[2014-07-17 23:45:35][  188.770546] [47196][00005000040fffff][INFO][rsp:0xffffffffa107c810,Xfer:0xffffffffa107c750][FC_UNF][UNF_RegTgtProductHandler,516]
[2014-07-17 23:45:35][  188.770550] [47196][00005000040fffff][INFO][Alloc:0xffffffffa1088da0,Done:0xffffffffa1089ca0][FC_UNF][UNF_RegTgtProductHandler,518]
[2014-07-17 23:45:35][  188.770556] [47196][00005000040501ef][INFO][Find empty template index 0 for driver 14 unf_ini.][DRV_API][DRV_RegisterInitiator,437]
[2014-07-17 23:45:35][  188.770562] [47196][00005000040501f3][INFO][Driver 14 register initiator key param: .][DRV_API][DRV_RegisterInitiator,499]
[2014-07-17 23:45:35][  188.770568] [47196][00005000040501f4][INFO][Name:unf_ini CanQueue:512 sg table size:256 cmd per LUN:64 clustering:0.][DRV_API][DRV_RegisterInitiator,503]
[2014-07-17 23:45:35][  188.770574] [47196][000050000405023f][INFO][Drv type=14 register mirror template ok!][DRV_API][DRVAPI_RegMirDataIntfTemplate,119]
[2014-07-17 23:45:35][  188.770577] UNF_InitMML is called 
[2014-07-17 23:45:35][  188.770592] [47196][00005000040fffff][INFO][Get fw path=/home/][FC_UNF][UNF_GetCfgParms,432]
[2014-07-17 23:45:35][  188.770599] [47196][00005000040fffff][INFO][Set ini_queue_depth succeed value:0x40 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770606] [47196][00005000040fffff][INFO][Set epl_delay_report succeed value:0x5 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770612] [47196][00005000040fffff][INFO][Set fc_max_host_num succeed value:0x2000 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770619] [47196][00005000040fffff][INFO][Set fc_max_storage_num succeed value:0x20 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770625] [47196][00005000040fffff][INFO][Set avoid_linkdown_switch succeed value:0x1 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770632] [47196][00005000040fffff][INFO][Set ini_linkdown_timeout succeed value:0x3 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770638] [47196][00005000040fffff][INFO][Set tgt_linkdown_timeout succeed value:0x3 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770645] [47196][00005000040fffff][INFO][Set multi_dma_switch succeed value:0x1 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770651] [47196][00005000040fffff][INFO][Set msi_switch succeed value:0x1 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770657] [47196][00005000040fffff][INFO][Set tcq_switch succeed value:0x0 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770664] [47196][00005000040fffff][INFO][Set ncq_switch succeed value:0x0 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770670] [47196][00005000040fffff][INFO][Set tape_support succeed value:0x0 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770676] [47196][00005000040fffff][INFO][Set ini_io_retrytimeout succeed value:0x0 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.770683] [47196][00005000040fffff][INFO][Set io_balance succeed value:0x0 ][FC_UNF][UNF_GetCfgParms,467]
[2014-07-17 23:45:35][  188.783447] [47200][00005000040fffff][INFO][Enter Event Thread][FC_UNF][UNF_EventProcess,685]
[2014-07-17 23:45:35][  188.783454] [47200][00005000040fffff][INFO][CM not config io balance.][FC_UNF][UNF_CmCreateIOPerfThread,983]
[2014-07-17 23:45:35][  188.799417] [47204][00005000040fffff][INFO][Delay IO Process thread][FC_UNF][UNF_DispatchIoProcess,631]
[2014-07-17 23:45:35][  188.799467] [47204][00005000040fffff][INFO][register inner mml ok,index 0 
[2014-07-17 23:45:35][  188.799469] ][FC_UNF][UNF_RegisterInnerMml,207]
[2014-07-17 23:45:35][  188.799484] [47204][00005000040fffff][INFO][cm init ok][FC_UNF][UNF_Common_init,1228]
[2014-07-17 23:45:35][  188.912945] [47232][00005000040fffff][INFO][System cpu num is 12.][FC_UNF][QLG_InitModule,83]
[2014-07-17 23:45:35][  189.035151] [47263][00005000040507b7][INFO][Will registe Module (PMFC_CBB), ID(1).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:35][  189.035159] [47263][00005000040507e1][INFO][Module ID (1) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:35][  189.035164] [47263][00005000040507e3][INFO][Module (1) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:35][  189.035170] [47263][00005000040507ba][INFO][Driver (PMFC_CBB) id (1) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:35][  189.035258] [47263][00005000040e06c1][INFO][PMFC CBB version:	 V100.R001.C01.B0181. Compile time Jul  8 2014 03:10:14.][FC_TGT][PF_InitGlobalData,5866]
[2014-07-17 23:45:35][  189.037326] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.037334] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.037342] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.037349] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.037356] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.037363] [47263][00005000040e0829][INFO][No config port_id.][FC_TGT][PMAPI_CfgGetFcSection,1265]
[2014-07-17 23:45:35][  189.038649] [47263][000050000405023f][INFO][Drv type=1 register mirror template ok!][DRV_API][DRVAPI_RegMirDataIntfTemplate,119]
[2014-07-17 23:45:35][  189.038656] [47263][000050000405025f][INFO][SndRsp = ffffffffa1311410.][DRV_API][DRVAPI_AddSCSITarget,194]
[2014-07-17 23:45:35][  189.038661] [47263][0000500004050260][INFO][XferRdy = ffffffffa1311420.][DRV_API][DRVAPI_AddSCSITarget,195]
[2014-07-17 23:45:35][  189.038666] [47263][0000500004050261][INFO][AbortCmd = ffffffffa13145f0.][DRV_API][DRVAPI_AddSCSITarget,197]
[2014-07-17 23:45:35][  189.038671] [47263][0000500004050262][INFO][TskMgmt = ffffffffa1315fe0.][DRV_API][DRVAPI_AddSCSITarget,199]
[2014-07-17 23:45:35][  189.038718] [47263][00005000040501ef][INFO][Find empty template index 0 for driver 1 FC_INI.][DRV_API][DRV_RegisterInitiator,437]
[2014-07-17 23:45:35][  189.038724] [47263][00005000040501f3][INFO][Driver 1 register initiator key param: .][DRV_API][DRV_RegisterInitiator,499]
[2014-07-17 23:45:35][  189.038729] [47263][00005000040501f4][INFO][Name:FC_INI CanQueue:64 sg table size:256 cmd per LUN:64 clustering:0.][DRV_API][DRV_RegisterInitiator,503]
[2014-07-17 23:45:35][  189.051790] [47267][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:35][  189.051796] [47267][00005000040e067e][INFO][Get WWN, ullDevWwn is 0x0,uiResult = ffffffff ][FC_TGT][PMFC_RoutineThread,4079]
[2014-07-17 23:45:35][  189.051800] [47267][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:35][  189.282550] [47324][00005000041b4e42][INFO][Insmod toecore module successfully.][TOE][TC_Init,306]
[2014-07-17 23:45:36][  189.501871] [47379][00005000041b00d0][INFO][Name nic_fl_size get failed, please check.][TOE][cxgb4_get_cfg_parms,16247]
[2014-07-17 23:45:36][  189.501878] [47379][00005000041b00d1][INFO][Set nic_fl_size uiCurrentValue=4 ,uiDefaultValue=4.][TOE][cxgb4_get_cfg_parms,16250]
[2014-07-17 23:45:36][  189.537618] [47388][00005000041b01ba][INFO][Get symbol address ffffffff813fe9f0 for ipv6_get_lladdr.][TOE][cxgb4_init_module,16353]
[2014-07-17 23:45:36][  189.537664] [47388][00005000040507b7][INFO][Will registe Module (cxgb4.ko), ID(24).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:36][  189.537669] [47388][00005000040507e1][INFO][Module ID (24) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:36][  189.537673] [47388][00005000040507e3][INFO][Module (24) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:36][  189.537678] [47388][00005000040507ba][INFO][Driver (cxgb4.ko) id (24) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:36][  189.697119] [47428][00005000040507b7][INFO][Will registe Module (drvtom.ko), ID(21).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:36][  189.697126] [47428][00005000040507e1][INFO][Module ID (21) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:36][  189.697132] [47428][00005000040507e3][INFO][Module (21) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:36][  189.697136] [47428][00005000040507ba][INFO][Driver (drvtom.ko) id (21) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:36][  190.057819] [47519][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:36][  190.077124] [47523][000050000405025f][INFO][SndRsp = ffffffffa14d0780.][DRV_API][DRVAPI_AddSCSITarget,194]
[2014-07-17 23:45:36][  190.077129] [47523][0000500004050260][INFO][XferRdy = ffffffffa14d00f0.][DRV_API][DRVAPI_AddSCSITarget,195]
[2014-07-17 23:45:36][  190.077133] [47523][0000500004050261][INFO][AbortCmd = ffffffffa14cc960.][DRV_API][DRVAPI_AddSCSITarget,197]
[2014-07-17 23:45:36][  190.077137] [47523][0000500004050262][INFO][TskMgmt = ffffffffa14cf150.][DRV_API][DRVAPI_AddSCSITarget,199]
[2014-07-17 23:45:36][  190.077143] [47523][00005000040507b7][INFO][Will registe Module (FCOE), ID(7).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:36][  190.077147] [47523][00005000040507e1][INFO][Module ID (7) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:36][  190.077151] [47523][00005000040507e3][INFO][Module (7) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:36][  190.077156] [47523][00005000040507ba][INFO][Driver (FCOE) id (7) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:36][  190.077160] [47523][00005000041a03a0][INFO][There have 8 params in fcoe_comm_cfg.][FCOE][FCOE_ShowConfigInfo,261]
[2014-07-17 23:45:36][  190.077164] [47523][00005000041a03a1][INFO][FCOE---------------configFile.ini------------------.][FCOE][FCOE_ShowConfigInfo,262]
[2014-07-17 23:45:36][  190.077171] [47523][00005000041a03a2][INFO][FCOE support_cfg_sets = 2.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077178] [47523][00005000041a03a2][INFO][FCOE default_rerty_times = 3.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077184] [47523][00005000041a03a2][INFO][FCOE default_retry_period = 5.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077192] [47523][00005000041a03a5][WARN][Read config_value failure, default_flashout_time use the default value = 5.][FCOE][FCOE_ShowConfigInfo,290]
[2014-07-17 23:45:36][  190.077199] [47523][00005000041a03a2][INFO][FCOE max_host_num = 16.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077205] [47523][00005000041a03a2][INFO][FCOE max_exch_num = 2048.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077212] [47523][00005000041a03a2][INFO][FCOE vn2vn_vlan_id = 569.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077218] [47523][00005000041a03a2][INFO][FCOE vn2vn_feature_support = 0.][FCOE][FCOE_ShowConfigInfo,267]
[2014-07-17 23:45:36][  190.077223] [47523][00005000041a03a6][INFO][List the current config_value,  CfgSets = 2, RetryTimes = 3,  RetryPeriod = 5,  FlashoutTime = 5,  MaxHostNum = 16,  MaxExchNum = 2048,  Vn2vnVlanId = 569 , OpenVn2vn = 0.][FCOE][FCOE_ShowConfigInfo,304]
[2014-07-17 23:45:36][  190.077229] [47523][00005000041a03a7][INFO][FCOE---------------configFile.ini------------------.][FCOE][FCOE_ShowConfigInfo,317]
[2014-07-17 23:45:36][  190.077237] [47523][00005000041a016b][WARN][FCOE(lo): Get system Port ID failed.][FCOE][FCOE_DeviceNotification,3712]
[2014-07-17 23:45:36][  190.077242] [47523][00005000041a016c][INFO][FCOE(0x22001):unsupported card, vender:0x8086 , func:0x10d3.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:36][  190.077246] [47523][00005000041a016c][INFO][FCOE(0x22000):unsupported card, vender:0x8086 , func:0x10d3.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:36][  190.199182] [47554][00005000041002b5][INFO][SAS module debug level 4 .][SAS_INI][PMS_uSDCInit,5372]
[2014-07-17 23:45:36][  190.199187] [47554][00005000041002b6][INFO][PMC sas version .1.01.123][SAS_INI][PMS_uSDCInit,5373]
[2014-07-17 23:45:36][  190.199191] [47554][00005000040507b7][INFO][Will registe Module (pmsas.ko), ID(0).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:36][  190.199196] [47554][00005000040507e1][INFO][Module ID (0) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:36][  190.199200] [47554][00005000040507e3][INFO][Module (0) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:36][  190.199204] [47554][00005000040507ba][INFO][Driver (pmsas.ko) id (0) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:36][  190.199319] PSINI_InitMML is called 
[2014-07-17 23:45:36][  190.199326] [47554][00005000040501ef][INFO][Find empty template index 0 for driver 0 PMSAS 8001.][DRV_API][DRV_RegisterInitiator,437]
[2014-07-17 23:45:36][  190.199333] [47554][00005000040501f3][INFO][Driver 0 register initiator key param: .][DRV_API][DRV_RegisterInitiator,499]
[2014-07-17 23:45:36][  190.199338] [47554][00005000040501f4][INFO][Name:PMSAS 8001 CanQueue:4096 sg table size:128 cmd per LUN:8 clustering:0.][DRV_API][DRV_RegisterInitiator,503]
[2014-07-17 23:45:37][  190.312177] [47582][00005000040507b7][INFO][Will registe Module (SAS Sal), ID(15).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:37][  190.312183] [47582][00005000040507e1][INFO][Module ID (15) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:37][  190.312188] [47582][00005000040507e3][INFO][Module (15) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:37][  190.312193] [47582][00005000040507ba][INFO][Driver (SAS Sal) id (15) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:37][  190.312199] [47582][00005000040501ef][INFO][Find empty template index 0 for driver 15 SAL HOST.][DRV_API][DRV_RegisterInitiator,437]
[2014-07-17 23:45:37][  190.312205] [47582][00005000040501f3][INFO][Driver 15 register initiator key param: .][DRV_API][DRV_RegisterInitiator,499]
[2014-07-17 23:45:37][  190.312210] [47582][00005000040501f4][INFO][Name:SAL HOST CanQueue:1024 sg table size:128 cmd per LUN:64 clustering:1.][DRV_API][DRV_RegisterInitiator,503]
[2014-07-17 23:45:37][  190.312214] [47582][00005000041003a9][INFO][SAL_InitMML enter][SAS_INI][SAL_InitMML,338]
[2014-07-17 23:45:37][  190.325476] [47586][0000500004100046][INFO][disc module init ok][SAS_INI][SAINI_DiscModuleInit,361]
[2014-07-17 23:45:37][  190.325481] [47586][00005000041002fc][INFO][Change upper Debug Level to 0x4 ,ret:0x0][SAS_INI][SAL_SetUpperDebugLevel,416]
[2014-07-17 23:45:37][  190.325836] [47586][00005000041002e8][INFO][sal module init (complied at:Jul  8 2014 03:14:19)][SAS_INI][SAL_ModuleInit,1164]
[2014-07-17 23:45:37][  190.447522] [47616][0000500004101223][INFO][Quark Driver Version:1.03.008][SAS_INI][Quark_Init,1628]
[2014-07-17 23:45:37][  190.447617] [47616][00005000041001ad][INFO][Pangea V2R1 Card position:0x20][SAS_INI][SAL_GetCardNum,210]
[2014-07-17 23:45:37][  190.447621] [47616][0000500004101217][INFO][Card:0 is going to probe now...][SAS_INI][Quark_ProbeStub,782]
[2014-07-17 23:45:37][  190.447633] [47616][00005000041001ad][INFO][Pangea V2R1 Card position:0x20][SAS_INI][SAL_GetCardNum,210]
[2014-07-17 23:45:37][  190.447639] [47616][00005000041002d9][INFO][Alloc card in slot:0][SAS_INI][SAL_AllocCard,267]
[2014-07-17 23:45:37][  190.448042] [47616][0000500004101208][INFO][Card slot:0 item num:103 sec name:sas_card_slot_0][SAS_INI][Quark_GetCardCfg,2561]
[2014-07-17 23:45:37][  190.448516] [47616][0000500004101209][INFO][Card:0 set up logic port:0x1f2000 succeed][SAS_INI][Quark_SetUpPortId,2651]
[2014-07-17 23:45:37][  190.448521] [47616][0000500004101209][INFO][Card:0 set up logic port:0x1f2001 succeed][SAS_INI][Quark_SetUpPortId,2651]
[2014-07-17 23:45:37][  190.448525] [47616][0000500004101209][INFO][Card:0 set up logic port:0x1f2002 succeed][SAS_INI][Quark_SetUpPortId,2651]
[2014-07-17 23:45:37][  190.448595] [47616][0000500004101120][INFO][Card:0 Bar:0 virtual addr:ffffc90014ae0000][SAS_INI][Quark_InitPcie,1233]
[2014-07-17 23:45:37][  190.448625] [47616][0000500004101120][INFO][Card:0 Bar:1 virtual addr:ffffc90014b00000][SAS_INI][Quark_InitPcie,1233]
[2014-07-17 23:45:37][  190.448639] [47616][000050000410112c][INFO][Card:0 InboundQ: 0 element num:2048 size:128][SAS_INI][Quark_GetHwRequireMem,1491]
[2014-07-17 23:45:37][  190.448644] [47616][000050000410112c][INFO][Card:0 OutboundQ: 0 element num:512 size:128][SAS_INI][Quark_GetHwRequireMem,1507]
[2014-07-17 23:45:37][  190.448648] [47616][000050000410112c][INFO][Card:0 OutboundQ: 1 element num:512 size:128][SAS_INI][Quark_GetHwRequireMem,1507]
[2014-07-17 23:45:37][  190.448653] [47616][000050000410112c][INFO][Card:0 OutboundQ: 2 element num:512 size:128][SAS_INI][Quark_GetHwRequireMem,1507]
[2014-07-17 23:45:37][  190.448657] [47616][000050000410112c][INFO][Card:0 OutboundQ: 3 element num:512 size:128][SAS_INI][Quark_GetHwRequireMem,1507]
[2014-07-17 23:45:37][  190.448717] [47616][0000500004101127][INFO][Card:0 index: 0 allocate total len:4(vir addr:ffff880101912000)][SAS_INI][Quark_AllocHWMem,4593]
[2014-07-17 23:45:37][  190.448724] [47616][0000500004101127][INFO][Card:0 index: 1 allocate total len:16(vir addr:ffff880101917000)][SAS_INI][Quark_AllocHWMem,4593]
[2014-07-17 23:45:37][  190.448898] [47616][0000500004101127][INFO][Card:0 index: 2 allocate total len:1048576(vir addr:ffff880031600000)][SAS_INI][Quark_AllocHWMem,4593]
[2014-07-17 23:45:37][  190.449221] [47616][0000500004101127][INFO][Card:0 index: 3 allocate total len:2097152(vir addr:ffff880031000000)][SAS_INI][Quark_AllocHWMem,4593]
[2014-07-17 23:45:37][  190.449275] [47616][0000500004101128][INFO][Card:0 inbound: 0 allocate total len:262144(vir addr:ffff880030c00000)][SAS_INI][Quark_AllocHWMem,4628]
[2014-07-17 23:45:37][  190.449291] [47616][0000500004101129][INFO][Card:0 outbound: 0 allocate total len:65536(vir addr:ffff880101920000)][SAS_INI][Quark_AllocHWMem,4662]
[2014-07-17 23:45:37][  190.449308] [47616][0000500004101129][INFO][Card:0 outbound: 1 allocate total len:65536(vir addr:ffff880101940000)][SAS_INI][Quark_AllocHWMem,4662]
[2014-07-17 23:45:37][  190.449335] [47617][0000500004101129][INFO][Card:0 outbound: 2 allocate total len:65536(vir addr:ffff8800315a0000)][SAS_INI][Quark_AllocHWMem,4662]
[2014-07-17 23:45:37][  190.449358] [47617][0000500004101129][INFO][Card:0 outbound: 3 allocate total len:65536(vir addr:ffff8800315c0000)][SAS_INI][Quark_AllocHWMem,4662]
[2014-07-17 23:45:37][  190.451107] [47617][000050000410112d][INFO][Card:0 pre alloc 512 sgl node, each ext sgl size:2048][SAS_INI][Quark_PreAllocSGLNode,4723]
[2014-07-17 23:45:37][  190.451340] quark 0000:0a:00.0: irq 91 for MSI/MSI-X
[2014-07-17 23:45:37][  190.451351] quark 0000:0a:00.0: irq 92 for MSI/MSI-X
[2014-07-17 23:45:37][  190.451363] quark 0000:0a:00.0: irq 93 for MSI/MSI-X
[2014-07-17 23:45:37][  190.451375] quark 0000:0a:00.0: irq 94 for MSI/MSI-X
[2014-07-17 23:45:37][  190.451419] [47617][0000500004101141][INFO][Card:0 request 0 MSIX IRQ Vector 91 OK with 0][SAS_INI][Quark_InitIntrMSIX,8078]
[2014-07-17 23:45:37][  190.451432] [47617][0000500004101141][INFO][Card:0 request 1 MSIX IRQ Vector 92 OK with 0][SAS_INI][Quark_InitIntrMSIX,8078]
[2014-07-17 23:45:37][  190.451446] [47617][0000500004101141][INFO][Card:0 request 2 MSIX IRQ Vector 93 OK with 0][SAS_INI][Quark_InitIntrMSIX,8078]
[2014-07-17 23:45:37][  190.451462] [47617][0000500004101141][INFO][Card:0 request 3 MSIX IRQ Vector 94 OK with 0][SAS_INI][Quark_InitIntrMSIX,8078]
[2014-07-17 23:45:37][  190.451467] [47617][0000500004101136][INFO][Card:0 Init HW...][SAS_INI][Quark_InitHW,6306]
[2014-07-17 23:45:37][  190.451472] [47617][0000500004101136][INFO][Card:0 running in normal mode][SAS_INI][Quark_BootModeDetect,5547]
[2014-07-17 23:45:37][  190.451479] [47617][0000500004101130][INFO][Card:0 scratch pad 1:0x3c0f, cost 0 ms][SAS_INI][Quark_WaitMPIReady,4965]
[2014-07-17 23:45:37][  190.872780] [47723][000050000410113b][INFO][Card:0 MPI config ok][SAS_INI][Quark_InitHW,6402]
[2014-07-17 23:45:37][  191.064539] [47771][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:38][  192.071255] [48023][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:39][  193.077975] [48275][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:40][  194.084694] [48527][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:41][  194.428606] [48613][000050000410127b][ERR][Card:0 set nvmd rsp failed,Status:0x20ff][SAS_INI][Quark_SetNVMDDataRsp,415]
[2014-07-17 23:45:41][  194.428617] [48613][00005000041010b7][ERR][card:0 set nvmd data failed][SAS_INI][Quark_SetNVMDData,289]
[2014-07-17 23:45:41][  194.428623] [48613][000050000410114c][ERR][Card:0 Write I2C failed!][SAS_INI][Quark_WriteI2CSwitchConfig,63]
[2014-07-17 23:45:41][  194.428628] [48613][0000500004101136][INFO][Card:0 is old card or board 8072][SAS_INI][Quark_IdentifyHWEdition,5575]
[2014-07-17 23:45:41][  194.428636] [48613][00005000040501eb][INFO][Get initiator template successed, index 0 driver 15 SAL HOST.][DRV_API][DRVAPI_GetInitiatorTemplate,373]
[2014-07-17 23:45:41][  194.428641] [48613][00005000040501ec][INFO][Driver 15 index 0 register initiator key param: .][DRV_API][DRVAPI_GetInitiatorTemplate,375]
[2014-07-17 23:45:41][  194.428646] [48613][00005000040501ed][INFO][Name:SAL HOST CanQueue:1024 sg table size:128 cmd per LUN:64 clustering:1.][DRV_API][DRVAPI_GetInitiatorTemplate,382]
[2014-07-17 23:45:41][  194.428685] scsi6 : SAL HOST
[2014-07-17 23:45:41][  194.428772] [48613][00005000040501f8][INFO][Add BDM INI.][DRV_API][DRV_AddInitiator,608]
[2014-07-17 23:45:41][  194.428778] [48613][00005000040501fc][INFO][Get empty map index 0 successed.][DRV_API][DRVAPI_AllocInitiatorId,742]
[2014-07-17 23:45:41][  194.428784] [48613][00005000040501fe][INFO][Allocate initiator id 6 to drv 15, index 0.][DRV_API][DRVAPI_AllocInitiatorId,775]
[2014-07-17 23:45:41][  194.428789] [48613][00005000040501f9][INFO][Add initiator, ret 0.][DRV_API][DRV_AddInitiator,618]
[2014-07-17 23:45:41][  194.428795] [48613][00005000041002df][INFO][Card:0 alloc host ok, Initiator No:6][SAS_INI][SAL_AddCard,662]
[2014-07-17 23:45:41][  194.429088] [48613][000050000410017a][INFO][card:0 alloc Notify mem:294912 byte OK][SAS_INI][SAL_ErrNotifyRscInit,2612]
[2014-07-17 23:45:41][  194.429564] [48613][000050000410017a][INFO][card:0 alloc dev mem:1163264 byte OK][SAS_INI][SAL_DevInit,162]
[2014-07-17 23:45:41][  194.432820] [48614][000050000410017a][INFO][card:0 alloc Msg mem:9043968 byte OK][SAS_INI][SAL_MsgRscInit,135]
[2014-07-17 23:45:41][  194.432956] [48614][00005000041000b5][INFO][Card:0 expphy0:0 expphy1:0 priphy0:0 priphy1:0][SAS_INI][SAINI_InitDiscRsc,4245]
[2014-07-17 23:45:41][  194.433430] [48614][000050000410002a][INFO][Card:0 change delay thread support max device:512][SAS_INI][SASINI_InitDevChgDelay,1818]
[2014-07-17 23:45:41][  194.433458] [48614][000050000410002d][INFO][Card:0 init delay time:3s][SAS_INI][SASINI_InitDevChgDelay,1881]
[2014-07-17 23:45:41][  194.433481] [48614][0000500004100015][INFO][dev change delay thread starting...][SAS_INI][SASINI_DevChgDelayDutyTestThread,773]
[2014-07-17 23:45:41][  194.433504] [48614][000050000410017a][INFO][Card:0 alloc wire event mem:3072 bytes OK][SAS_INI][SAL_WireNotifyRscInit,975]
[2014-07-17 23:45:41][  194.433531] [48614][0000500004101037][INFO][Card:0 allocate memory 3608 KB][SAS_INI][Quark_DumpRsc,130]
[2014-07-17 23:45:41][  194.433536] [48614][000050000410029f][INFO][Card:0 turn off all led][SAS_INI][Quark_HookUpperLayer2Work,232]
[2014-07-17 23:45:41][  194.433580] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433613] [48614][0000500004101276][INFO][Card:0 set phy:0 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433641] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433668] [48614][0000500004101276][INFO][Card:0 set phy:1 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433694] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433721] [48614][0000500004101276][INFO][Card:0 set phy:2 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433749] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433775] [48614][0000500004101276][INFO][Card:0 set phy:3 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433801] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433827] [48614][0000500004101276][INFO][Card:0 set phy:4 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433853] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433879] [48614][0000500004101276][INFO][Card:0 set phy:5 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433906] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433933] [48614][0000500004101276][INFO][Card:0 set phy:6 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.433959] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.433985] [48614][0000500004101276][INFO][Card:0 set phy:7 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434019] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434048] [48614][0000500004101276][INFO][Card:0 set phy:8 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434075] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434101] [48614][0000500004101276][INFO][Card:0 set phy:9 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434128] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434155] [48614][0000500004101276][INFO][Card:0 set phy:10 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434182] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434208] [48614][0000500004101276][INFO][Card:0 set phy:11 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434234] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434261] [48614][0000500004101276][INFO][Card:0 set phy:12 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434286] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434312] [48614][0000500004101276][INFO][Card:0 set phy:13 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434340] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434366] [48614][0000500004101276][INFO][Card:0 set phy:14 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434393] [48614][0000500004101183][INFO][Card:0 set phy profile c1:0xfd, c2:0x34, c3:0xf7][SAS_INI][Quark_OpEmphasisAndAmplitude,2715]
[2014-07-17 23:45:41][  194.434419] [48614][0000500004101276][INFO][Card:0 set phy:15 profile rsp OK(Status:0x0)][SAS_INI][Quark_SetPhyProfileRsp,3313]
[2014-07-17 23:45:41][  194.434625] [48614][00005000041010d7][INFO][Card:0 is going to start phy: 8(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434631] [48614][00005000041010d7][INFO][Card:0 is going to start phy: 9(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434636] [48614][00005000041010d7][INFO][Card:0 is going to start phy:10(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434641] [48614][00005000041010d7][INFO][Card:0 is going to start phy:11(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434646] [48614][00005000041010d7][INFO][Card:0 is going to start phy:12(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434651] [48614][00005000041010d7][INFO][Card:0 is going to start phy:13(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434656] [48614][00005000041010d7][INFO][Card:0 is going to start phy:14(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434661] [48614][00005000041010d7][INFO][Card:0 is going to start phy:15(addr:0xa002030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:41][  194.434666] [48614][000050000410123f][INFO][Card:0/Phy: 8 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434671] [48614][000050000410123f][INFO][Card:0/Phy: 9 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434676] [48614][000050000410123f][INFO][Card:0/Phy:10 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434682] [48614][00005000041002fb][INFO][Notify event:0,Logic Portid:0x1f2000,Protocol:1(SAS),Max speed:12,Port type:0,Port Width:8,Board type:0x1,Board id:0x0,sfp support:0][SAS_INI][SAL_EventNotify,389]
[2014-07-17 23:45:41][  194.434687] [48614][000050000410123f][INFO][Card:0/Phy:11 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434692] [48614][000050000410123f][INFO][Card:0/Phy:12 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434699] [48614][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id33!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.434707] [48614][00005000041002fb][INFO][Notify event:0,Logic Portid:0x1f2001,Protocol:1(SAS),Max speed:12,Port type:0,Port Width:4,Board type:0x1,Board id:0x0,sfp support:2][SAS_INI][SAL_EventNotify,389]
[2014-07-17 23:45:41][  194.434713] [48614][00005000041002fb][INFO][Notify event:0,Logic Portid:0x1f2002,Protocol:1(SAS),Max speed:12,Port type:0,Port Width:4,Board type:0x1,Board id:0x0,sfp support:2][SAS_INI][SAL_EventNotify,389]
[2014-07-17 23:45:41][  194.434719] [48614][000050000410123f][INFO][Card:0/Phy:13 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434724] [48614][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id34!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.434730] [48614][000050000410123f][INFO][Card:0/Phy:14 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434734] [48614][000050000410123f][INFO][Card:0/Phy:15 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:41][  194.434739] [48614][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id35!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.434746] [48614][0000500004100328][INFO][Card:0 will close Logic PortId:0x1f2001(No cable in port)][SAS_INI][SAL_OpPortByModprsl,498]
[2014-07-17 23:45:41][  194.434752] [48614][0000500004100002][INFO][Card:0 handle wire notify event and refresh port:0x1f2001(Index:1) wire type:2(0:Elec,1:Optical,2:Idle)][SAS_INI][SAL_OperPortByWireEvent,575]
[2014-07-17 23:45:41][  194.434758] [48614][0000500004101215][INFO][12G SAS Card:0(INI) Probe in Normal mode OK! cost time:3992 ms][SAS_INI][Quark_Probe,465]
[2014-07-17 23:45:41][  194.434793] [48614][0000500004100328][INFO][Card:0 will close Logic PortId:0x1f2002(No cable in port)][SAS_INI][SAL_OpPortByModprsl,498]
[2014-07-17 23:45:41][  194.434800] [48614][0000500004100002][INFO][Card:0 handle wire notify event and refresh port:0x1f2002(Index:2) wire type:2(0:Elec,1:Optical,2:Idle)][SAS_INI][SAL_OperPortByWireEvent,575]
[2014-07-17 23:45:41][  194.468252] [48623][0000500004101263][INFO][Get free port:0][SAS_INI][Quark_PhyUp,901]
[2014-07-17 23:45:41][  194.468258] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:8 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468265] [48623][0000500004100217][INFO][Card:0/port:0/phy:8 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468271] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:8 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468288] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:9 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468293] [48623][0000500004100217][INFO][Card:0/port:0/phy:9 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468297] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:9 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468311] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:10 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468316] [48623][0000500004100217][INFO][Card:0/port:0/phy:10 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468321] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:10 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468330] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:11 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468336] [48623][0000500004100217][INFO][Card:0/port:0/phy:11 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468342] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:11 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468360] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:12 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468365] [48623][0000500004100217][INFO][Card:0/port:0/phy:12 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468369] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:12 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468379] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:13 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468385] [48623][0000500004100217][INFO][Card:0/port:0/phy:13 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468391] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:13 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468397] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:14 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468402] [48623][0000500004100217][INFO][Card:0/port:0/phy:14 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468406] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:14 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.468416] [48623][0000500004101265][INFO][Card:0/Port:0(index:0)/Phy:15 physical link up,status:OK][SAS_INI][Quark_PhyUp,925]
[2014-07-17 23:45:41][  194.468421] [48623][0000500004100217][INFO][Card:0/port:0/phy:15 event:0x2(Link Up) rate:4(12.0G)][SAS_INI][SAL_PhyEvent,127]
[2014-07-17 23:45:41][  194.468426] [48623][0000500004100226][INFO][Card:0/Logic PortId:0x1f2000/Port(fw):0/Phy id:15 link up][SAS_INI][SAL_PhyUp,668]
[2014-07-17 23:45:41][  194.553216] [48644][0000500004090173][INFO][Scanning all pci bus ...][PCIE][PCIECORE_FindAllPcieBus,1003]
[2014-07-17 23:45:41][  194.553225] [48644][0000500004090175][INFO][Scanning - 0E00 8086  [b:00 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553233] [48644][0000500004090175][INFO][Scanning - 0E02 8086  [b:00 d:01 f:00], devfn=0008 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553241] [48644][0000500004090175][INFO][Scanning - 0E04 8086  [b:00 d:02 f:00], devfn=0010 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553247] [48644][0000500004090175][INFO][Scanning - 0E06 8086  [b:00 d:02 f:02], devfn=0012 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553254] [48644][0000500004090175][INFO][Scanning - 0E08 8086  [b:00 d:03 f:00], devfn=0018 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553260] [48644][0000500004090175][INFO][Scanning - 0E0A 8086  [b:00 d:03 f:02], devfn=001A ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553267] [48644][0000500004090175][INFO][Scanning - 0E20 8086  [b:00 d:04 f:00], devfn=0020 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553274] [48644][0000500004090175][INFO][Scanning - 0E21 8086  [b:00 d:04 f:01], devfn=0021 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553281] [48644][0000500004090175][INFO][Scanning - 0E22 8086  [b:00 d:04 f:02], devfn=0022 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553288] [48644][0000500004090175][INFO][Scanning - 0E23 8086  [b:00 d:04 f:03], devfn=0023 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553295] [48644][0000500004090175][INFO][Scanning - 0E24 8086  [b:00 d:04 f:04], devfn=0024 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553301] [48644][0000500004090175][INFO][Scanning - 0E25 8086  [b:00 d:04 f:05], devfn=0025 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553307] [48644][0000500004090175][INFO][Scanning - 0E26 8086  [b:00 d:04 f:06], devfn=0026 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553314] [48644][0000500004090175][INFO][Scanning - 0E27 8086  [b:00 d:04 f:07], devfn=0027 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553320] [48644][0000500004090175][INFO][Scanning - 0E28 8086  [b:00 d:05 f:00], devfn=0028 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553326] [48644][0000500004090175][INFO][Scanning - 0E29 8086  [b:00 d:05 f:01], devfn=0029 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553333] [48644][0000500004090175][INFO][Scanning - 0E2A 8086  [b:00 d:05 f:02], devfn=002A ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553340] [48644][0000500004090175][INFO][Scanning - 0E2C 8086  [b:00 d:05 f:04], devfn=002C ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553346] [48644][0000500004090175][INFO][Scanning - 1D3E 8086  [b:00 d:11 f:00], devfn=0088 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553353] [48644][0000500004090175][INFO][Scanning - 1D2D 8086  [b:00 d:1a f:00], devfn=00D0 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553359] [48644][0000500004090175][INFO][Scanning - 1D10 8086  [b:00 d:1c f:00], devfn=00E0 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553366] [48644][0000500004090175][INFO][Scanning - 1D12 8086  [b:00 d:1c f:01], devfn=00E1 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553372] [48644][0000500004090175][INFO][Scanning - 1D14 8086  [b:00 d:1c f:02], devfn=00E2 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553378] [48644][0000500004090175][INFO][Scanning - 1D26 8086  [b:00 d:1d f:00], devfn=00E8 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553385] [48644][0000500004090175][INFO][Scanning - 244E 8086  [b:00 d:1e f:00], devfn=00F0 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553392] [48644][0000500004090175][INFO][Scanning - 1D41 8086  [b:00 d:1f f:00], devfn=00F8 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553398] [48644][0000500004090175][INFO][Scanning - 1D02 8086  [b:00 d:1f f:02], devfn=00FA ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553404] [48644][0000500004090175][INFO][Scanning - 1D22 8086  [b:00 d:1f f:03], devfn=00FB ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553411] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:01 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553418] [48644][0000500004090175][INFO][Scanning - 87D0 10B5  [b:01 d:00 f:01], devfn=0001 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553424] [48644][0000500004090175][INFO][Scanning - 87D0 10B5  [b:01 d:00 f:02], devfn=0002 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553431] [48644][0000500004090175][INFO][Scanning - 87D0 10B5  [b:01 d:00 f:03], devfn=0003 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553437] [48644][0000500004090175][INFO][Scanning - 87D0 10B5  [b:01 d:00 f:04], devfn=0004 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553444] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:01 f:00], devfn=0008 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553450] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:08 f:00], devfn=0040 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553456] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:09 f:00], devfn=0048 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553463] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:0a f:00], devfn=0050 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553469] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:0b f:00], devfn=0058 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553476] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:02 d:0c f:00], devfn=0060 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553482] [48644][0000500004090175][INFO][Scanning - 8725 10B5  [b:03 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553488] [48644][0000500004090175][INFO][Scanning - 8072 11F8  [b:0a d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553495] [48644][0000500004090175][INFO][Scanning - 1657 14E4  [b:13 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553501] [48644][0000500004090175][INFO][Scanning - 1657 14E4  [b:13 d:00 f:01], devfn=0001 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553507] [48644][0000500004090175][INFO][Scanning - 1657 14E4  [b:13 d:00 f:02], devfn=0002 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553513] [48644][0000500004090175][INFO][Scanning - 1657 14E4  [b:13 d:00 f:03], devfn=0003 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553520] [48644][0000500004090175][INFO][Scanning - 1D6B 8086  [b:2e d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553526] [48644][0000500004090175][INFO][Scanning - 10D3 8086  [b:30 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553533] [48644][0000500004090175][INFO][Scanning - 10D3 8086  [b:32 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553540] [48644][0000500004090175][INFO][Scanning - 10D3 8086  [b:34 d:00 f:00], devfn=0000 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553546] [48644][0000500004090175][INFO][Scanning - 0E80 8086  [b:ff d:08 f:00], devfn=0040 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553552] [48644][0000500004090175][INFO][Scanning - 0E90 8086  [b:ff d:09 f:00], devfn=0048 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553559] [48644][0000500004090175][INFO][Scanning - 0EC0 8086  [b:ff d:0a f:00], devfn=0050 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553565] [48644][0000500004090175][INFO][Scanning - 0EC1 8086  [b:ff d:0a f:01], devfn=0051 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553572] [48644][0000500004090175][INFO][Scanning - 0EC2 8086  [b:ff d:0a f:02], devfn=0052 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553578] [48644][0000500004090175][INFO][Scanning - 0EC3 8086  [b:ff d:0a f:03], devfn=0053 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553585] [48644][0000500004090175][INFO][Scanning - 0E1E 8086  [b:ff d:0b f:00], devfn=0058 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553591] [48644][0000500004090175][INFO][Scanning - 0E1F 8086  [b:ff d:0b f:03], devfn=005B ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553597] [48644][0000500004090175][INFO][Scanning - 0EE0 8086  [b:ff d:0c f:00], devfn=0060 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553604] [48644][0000500004090175][INFO][Scanning - 0EE2 8086  [b:ff d:0c f:01], devfn=0061 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553610] [48644][0000500004090175][INFO][Scanning - 0EE4 8086  [b:ff d:0c f:02], devfn=0062 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553617] [48644][0000500004090175][INFO][Scanning - 0EE1 8086  [b:ff d:0d f:00], devfn=0068 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553623] [48644][0000500004090175][INFO][Scanning - 0EE3 8086  [b:ff d:0d f:01], devfn=0069 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553629] [48644][0000500004090175][INFO][Scanning - 0EE5 8086  [b:ff d:0d f:02], devfn=006A ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553635] [48644][0000500004090175][INFO][Scanning - 0EA0 8086  [b:ff d:0e f:00], devfn=0070 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553642] [48644][0000500004090175][INFO][Scanning - 0E30 8086  [b:ff d:0e f:01], devfn=0071 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553648] [48644][0000500004090175][INFO][Scanning - 0EA8 8086  [b:ff d:0f f:00], devfn=0078 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553654] [48644][0000500004090175][INFO][Scanning - 0E71 8086  [b:ff d:0f f:01], devfn=0079 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553661] [48644][0000500004090175][INFO][Scanning - 0EAA 8086  [b:ff d:0f f:02], devfn=007A ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553667] [48644][0000500004090175][INFO][Scanning - 0EAB 8086  [b:ff d:0f f:03], devfn=007B ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553673] [48644][0000500004090175][INFO][Scanning - 0EAC 8086  [b:ff d:0f f:04], devfn=007C ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553680] [48644][0000500004090175][INFO][Scanning - 0EAD 8086  [b:ff d:0f f:05], devfn=007D ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553687] [48644][0000500004090175][INFO][Scanning - 0EB0 8086  [b:ff d:10 f:00], devfn=0080 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553693] [48644][0000500004090175][INFO][Scanning - 0EB1 8086  [b:ff d:10 f:01], devfn=0081 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553700] [48644][0000500004090175][INFO][Scanning - 0EB2 8086  [b:ff d:10 f:02], devfn=0082 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553706] [48644][0000500004090175][INFO][Scanning - 0EB3 8086  [b:ff d:10 f:03], devfn=0083 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553712] [48644][0000500004090175][INFO][Scanning - 0EB4 8086  [b:ff d:10 f:04], devfn=0084 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553719] [48644][0000500004090175][INFO][Scanning - 0EB5 8086  [b:ff d:10 f:05], devfn=0085 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553726] [48644][0000500004090175][INFO][Scanning - 0EB6 8086  [b:ff d:10 f:06], devfn=0086 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553732] [48644][0000500004090175][INFO][Scanning - 0EB7 8086  [b:ff d:10 f:07], devfn=0087 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553739] [48644][0000500004090175][INFO][Scanning - 0E1D 8086  [b:ff d:13 f:00], devfn=0098 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553745] [48644][0000500004090175][INFO][Scanning - 0E34 8086  [b:ff d:13 f:01], devfn=0099 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553752] [48644][0000500004090175][INFO][Scanning - 0E81 8086  [b:ff d:13 f:04], devfn=009C ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553758] [48644][0000500004090175][INFO][Scanning - 0E36 8086  [b:ff d:13 f:05], devfn=009D ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553765] [48644][0000500004090175][INFO][Scanning - 0EC8 8086  [b:ff d:16 f:00], devfn=00B0 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553771] [48644][0000500004090175][INFO][Scanning - 0EC9 8086  [b:ff d:16 f:01], devfn=00B1 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553777] [48644][0000500004090175][INFO][Scanning - 0ECA 8086  [b:ff d:16 f:02], devfn=00B2 ][PCIE][PCIECORE_FindAllPcieBus,1023]
[2014-07-17 23:45:41][  194.553783] [48644][0000500004090177][INFO][Device Scan: 86 device(s) found][PCIE][PCIECORE_FindAllPcieBus,1042]
[2014-07-17 23:45:41][  194.558422] [48645][0000500004090aaa][INFO][Device(0:1.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558444] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id36!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558468] [48645][0000500004090aaa][INFO][Device(0:2.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558484] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id37!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558515] [48645][0000500004090aaa][INFO][Device(0:2.2) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558532] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id38!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558559] [48645][0000500004090aaa][INFO][Device(0:3.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558575] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id39!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558611] [48645][0000500004090aaa][INFO][Device(0:3.2) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558627] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id40!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558654] [48645][0000500004090aaa][INFO][Device(0:1c.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558671] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id41!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558707] [48645][0000500004090aaa][INFO][Device(0:1c.1) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558723] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id42!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558759] [48645][0000500004090aaa][INFO][Device(0:1c.2) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558776] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id43!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558797] [48645][0000500004090aaa][INFO][The device(1:0.0) eeprom file is "/OSM/modules/nt.bin" ][PCIE][PCIECORE_GetExtPortProperties,1084]
[2014-07-17 23:45:41][  194.558914] [48645][0000500004090aaa][INFO][Device(1:0.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.558931] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id44!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.558942] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(1:0.1) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.558991] [48645][0000500004090aaa][INFO][Device(1:0.1) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559007] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id45!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559026] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(1:0.2) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559068] [48645][0000500004090aaa][INFO][Device(1:0.2) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559085] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id46!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559096] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(1:0.3) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559138] [48645][0000500004090aaa][INFO][Device(1:0.3) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559155] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id47!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559165] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(1:0.4) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559208] [48645][0000500004090aaa][INFO][Device(1:0.4) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559225] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id48!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559232] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:1.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559272] [48645][0000500004090aaa][INFO][Device(2:1.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559289] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id49!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559296] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:8.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559335] [48645][0000500004090aaa][INFO][Device(2:8.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559353] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id50!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559359] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:9.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559398] [48645][0000500004090aaa][INFO][Device(2:9.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559416] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id51!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559422] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:a.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559462] [48645][0000500004090aaa][INFO][Device(2:a.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559480] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id52!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559492] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:b.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559526] [48645][0000500004090aaa][INFO][Device(2:b.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559545] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id53!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559552] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(2:c.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559592] [48645][0000500004090aaa][INFO][Device(2:c.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.559610] [48645][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id54!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.559615] [48645][0000500004090aaa][INFO][Can't find eeprom Switch(3:0.0) configure in conf][PCIE][PCIECORE_IsEepromConf,2237]
[2014-07-17 23:45:41][  194.559680] [48645][0000500004090122][INFO][The device(3:0.0) io remap addr:0x40000000000 is greater the target size:0x2000000000][PCIE][PCIECORE_MapBarResource,697]
[2014-07-17 23:45:41][  194.570410] [48648][0000500004090aaa][INFO][Device(3:0.0) port in event][PCIE][PCIECORE_NotifyPortEventInfo,505]
[2014-07-17 23:45:41][  194.570432] [48648][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id55!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.570627] [48648][0000500004090aaa][INFO][The all dma device initialize successfully][PCIE][PCIECORE_InitListDevices,1560]
[2014-07-17 23:45:41][  194.570649] [48648][0000500004090aaa][INFO][The all Nt device initialize successfully][PCIE][PCIECORE_InitListDevices,1567]
[2014-07-17 23:45:41][  194.570671] [48648][0000500004099823][INFO][No device bridge to bus 0x1c][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.570675] [48648][0000500004099823][INFO][No device bridge to bus 0x25][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.570709] [48648][0000500004090448][INFO][Check eeprom header.][PCIE][PCIECORE_CheckEeprom,810]
[2014-07-17 23:45:41][  194.570712] [48648][00005000040903fe][INFO][------EEPROM Header ------][PCIE][PCIECORE_EepShowConTent,637]
[2014-07-17 23:45:41][  194.570891] [48648][0000500004090401][INFO][ Signature : 5A (Valid)][PCIE][PCIECORE_EepShowConTent,663]
[2014-07-17 23:45:41][  194.570894] [48648][0000500004090402][INFO][----- Registers (684 bytes) -----][PCIE][PCIECORE_EepShowConTent,668]
[2014-07-17 23:45:41][  194.570898] [48648][0000500004090403][INFO][  Port   Offset   Value][PCIE][PCIECORE_EepShowConTent,672]
[2014-07-17 23:45:41][  194.570902] [48648][0000500004090404][INFO][ --------------------------][PCIE][PCIECORE_EepShowConTent,673]
[2014-07-17 23:45:41][  194.571167] [48648][00005000040903fd][INFO][   00     0BFC   008E3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.571432] [48648][00005000040903fd][INFO][   00     0BFC   008E2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.571696] [48648][00005000040903fd][INFO][   00     0BFC   00AE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.571960] [48648][00005000040903fd][INFO][   00     0BFC   00AE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.572231] [48649][00005000040903fd][INFO][   00     0BFC   00CE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.572496] [48649][00005000040903fd][INFO][   00     0BFC   00CE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.572761] [48649][00005000040903fd][INFO][   00     0BFC   00EE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.573026] [48649][00005000040903fd][INFO][   00     0BFC   00EE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.573291] [48649][00005000040903fd][INFO][   08     0BFC   008E3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.573555] [48649][00005000040903fd][INFO][   08     0BFC   008E2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.573820] [48649][00005000040903fd][INFO][   08     0BFC   00AE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.574085] [48649][00005000040903fd][INFO][   08     0BFC   00AE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.574350] [48649][00005000040903fd][INFO][   08     0BFC   00CE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.574615] [48649][00005000040903fd][INFO][   08     0BFC   00CE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.574879] [48649][00005000040903fd][INFO][   08     0BFC   00EE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.575144] [48649][00005000040903fd][INFO][   08     0BFC   00EE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.575409] [48649][00005000040903fd][INFO][   16     0BFC   008E3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.575674] [48649][00005000040903fd][INFO][   16     0BFC   008E2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.575939] [48649][00005000040903fd][INFO][   16     0BFC   00AE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.576204] [48650][00005000040903fd][INFO][   16     0BFC   00AE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.576469] [48650][00005000040903fd][INFO][   16     0BFC   00CE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.576734] [48650][00005000040903fd][INFO][   16     0BFC   00CE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.576999] [48650][00005000040903fd][INFO][   16     0BFC   00EE3103][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.577263] [48650][00005000040903fd][INFO][   16     0BFC   00EE2E30][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.577527] [48650][00005000040903fd][INFO][   00     0BFC   008AC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.577793] [48650][00005000040903fd][INFO][   00     0BFC   008ABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.578058] [48650][00005000040903fd][INFO][   00     0BFC   00AAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.578323] [48650][00005000040903fd][INFO][   00     0BFC   00AABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.578588] [48650][00005000040903fd][INFO][   00     0BFC   00CAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.578852] [48650][00005000040903fd][INFO][   00     0BFC   00CABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.579116] [48650][00005000040903fd][INFO][   00     0BFC   00EAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.579381] [48650][00005000040903fd][INFO][   00     0BFC   00EABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.579647] [48650][00005000040903fd][INFO][   08     0BFC   008AC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.579912] [48650][00005000040903fd][INFO][   08     0BFC   008ABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.580177] [48651][00005000040903fd][INFO][   08     0BFC   00AAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.580443] [48651][00005000040903fd][INFO][   08     0BFC   00AABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.580708] [48651][00005000040903fd][INFO][   08     0BFC   00CAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.580974] [48651][00005000040903fd][INFO][   08     0BFC   00CABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.581240] [48651][00005000040903fd][INFO][   08     0BFC   00EAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.581505] [48651][00005000040903fd][INFO][   08     0BFC   00EABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.581771] [48651][00005000040903fd][INFO][   16     0BFC   008AC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.582036] [48651][00005000040903fd][INFO][   16     0BFC   008ABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.582301] [48651][00005000040903fd][INFO][   16     0BFC   00AAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.582567] [48651][00005000040903fd][INFO][   16     0BFC   00AABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.582832] [48651][00005000040903fd][INFO][   16     0BFC   00CAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.583098] [48651][00005000040903fd][INFO][   16     0BFC   00CABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.583364] [48651][00005000040903fd][INFO][   16     0BFC   00EAC0A3][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.583630] [48651][00005000040903fd][INFO][   16     0BFC   00EABFFF][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.583896] [48651][00005000040903fd][INFO][   00     0BFC   008E1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.584162] [48652][00005000040903fd][INFO][   00     0BFC   008E6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.584426] [48652][00005000040903fd][INFO][   00     0BFC   00AE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.584692] [48652][00005000040903fd][INFO][   00     0BFC   00AE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.584957] [48652][00005000040903fd][INFO][   00     0BFC   00CE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.585221] [48652][00005000040903fd][INFO][   00     0BFC   00CE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.585486] [48652][00005000040903fd][INFO][   00     0BFC   00EE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.585750] [48652][00005000040903fd][INFO][   00     0BFC   00EE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.586015] [48652][00005000040903fd][INFO][   08     0BFC   008E1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.586280] [48652][00005000040903fd][INFO][   08     0BFC   008E6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.586544] [48652][00005000040903fd][INFO][   08     0BFC   00AE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.586809] [48652][00005000040903fd][INFO][   08     0BFC   00AE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.587074] [48652][00005000040903fd][INFO][   08     0BFC   00CE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.587340] [48652][00005000040903fd][INFO][   08     0BFC   00CE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.587604] [48652][00005000040903fd][INFO][   08     0BFC   00EE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.587869] [48652][00005000040903fd][INFO][   08     0BFC   00EE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.588056] [48653][0000500004100214][INFO][Card:0 ready to turn led.][SAS_INI][Sal_PortLedFunc,4452]
[2014-07-17 23:45:41][  194.588081] [48653][000050000410113b][INFO][Card:0 port 0 Led opcode:2 uiVal is 0x1, mask 0x1][SAS_INI][Quark_GetLEDVal,9018]
[2014-07-17 23:45:41][  194.588090] [48653][000050000410113b][INFO][Card:0 port 1 Led opcode:4 uiVal is 0x1, mask 0x505][SAS_INI][Quark_GetLEDVal,9018]
[2014-07-17 23:45:41][  194.588104] [48653][000050000410113b][INFO][Card:0 port 2 Led opcode:4 uiVal is 0x1, mask 0xf0d][SAS_INI][Quark_GetLEDVal,9018]
[2014-07-17 23:45:41][  194.588141] [48653][00005000040903fd][INFO][   16     0BFC   008E1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.588409] [48653][00005000040903fd][INFO][   16     0BFC   008E6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.588674] [48653][00005000040903fd][INFO][   16     0BFC   00AE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.588939] [48653][00005000040903fd][INFO][   16     0BFC   00AE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.589204] [48653][00005000040903fd][INFO][   16     0BFC   00CE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.589470] [48653][00005000040903fd][INFO][   16     0BFC   00CE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.589735] [48653][00005000040903fd][INFO][   16     0BFC   00EE1B06][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.590000] [48653][00005000040903fd][INFO][   16     0BFC   00EE6006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.590265] [48653][00005000040903fd][INFO][   00     0360   00002100][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.590530] [48653][00005000040903fd][INFO][   00     0358   00000001][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.590795] [48653][00005000040903fc][INFO][ NT Link  00D4   0000000C][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.591059] [48653][00005000040903fc][INFO][ NT Link  00D8   FFFFFC00][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.591324] [48653][00005000040903fc][INFO][ NT Link  00DC   FC000000][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.591588] [48653][00005000040903fc][INFO][ NT Link  00E0   FFF00000][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.591853] [48653][00005000040903fc][INFO][ NT Link  00E8   0000000C][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.592119] [48654][00005000040903fc][INFO][ NT Link  00EC   FFFFFC00][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.592387] [48654][00005000040903fc][INFO][ NT Link  00F0   FC000000][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.592653] [48654][00005000040903fc][INFO][ NT Link  00F4   FFF00000][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.592919] [48654][00005000040903fd][INFO][   00     0070   0000002F][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.593184] [48654][00005000040903fc][INFO][ NT Link  0070   0000002F][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.593450] [48654][00005000040903fc][INFO][ NT Link  0000   872510B5][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.593716] [48654][00005000040903fc][INFO][ NT Link  0070   0000002F][PCIE][PCIECORE_EepShowContentHelper,296]
[2014-07-17 23:45:41][  194.593982] [48654][00005000040903fd][INFO][   00     03A4   00890901][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.594248] [48654][00005000040903fd][INFO][   09     0F70   00000008][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.594513] [48654][00005000040903fd][INFO][   09     0074   00416C03][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.594780] [48654][00005000040903fd][INFO][   09     0098   00000003][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.595045] [48654][00005000040903fd][INFO][   09     046C   00000F60][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.595311] [48654][00005000040903fd][INFO][   00     0A30   11000010][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.595577] [48654][00005000040903fd][INFO][   08     0B80   00001006][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.595843] [48654][00005000040903fd][INFO][   00     030C   80000001][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.596113] [48655][00005000040903fd][INFO][   00     02C8   01708F71][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.596379] [48655][00005000040903fd][INFO][   00     0F70   20000000][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.596645] [48655][00005000040903fd][INFO][   00     022C   F0F00000][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.596910] [48655][00005000040903fd][INFO][   00     0F30   00001400][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.597176] [48655][00005000040903fd][INFO][   08     022C   F0F00000][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.597441] [48655][00005000040903fd][INFO][   08     0F30   00001400][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.597707] [48655][00005000040903fd][INFO][   00     0BFC   008A8500][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.597973] [48655][00005000040903fd][INFO][   00     0BFC   00AA8500][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.598238] [48655][00005000040903fd][INFO][   00     0BFC   008AB402][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.598504] [48655][00005000040903fd][INFO][   00     0BFC   00AAB402][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.598769] [48655][00005000040903fd][INFO][   00     0BFC   008AB593][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.599035] [48655][00005000040903fd][INFO][   00     0BFC   00AAB593][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.599301] [48655][00005000040903fd][INFO][   00     0BFC   00CA8500][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.599566] [48655][00005000040903fd][INFO][   00     0BFC   00EA8500][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.599832] [48655][00005000040903fd][INFO][   00     0BFC   00CAB402][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.600100] [48656][00005000040903fd][INFO][   00     0BFC   00EAB402][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.600370] [48656][00005000040903fd][INFO][   00     0BFC   00CAB5D7][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.600636] [48656][00005000040903fd][INFO][   00     0BFC   00EAB5D7][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.600902] [48656][00005000040903fd][INFO][   00     0BD8   CC000002][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.601168] [48656][00005000040903fd][INFO][   00     0BD4   80FC6E40][PCIE][PCIECORE_EepShowContentHelper,302]
[2014-07-17 23:45:41][  194.601434] [48656][000050000409040a][INFO][Eep version : FF][PCIE][PCIECORE_EepShowConTent,756]
[2014-07-17 23:45:41][  194.601439] [48656][000050000409040b][INFO][Eep of Chip ffff version : FF][PCIE][PCIECORE_EepShowConTent,759]
[2014-07-17 23:45:41][  194.601532] [48656][000050000409041a][INFO][Get eeprom data......][PCIE][PCIECORE_EepContextCompare,515]
[2014-07-17 23:45:41][  194.632726] [48664][000050000409041d][INFO][Ok (2ce(hex) bytes)][PCIE][PCIECORE_EepContextCompare,538]
[2014-07-17 23:45:41][  194.632731] [48664][000050000409041e][INFO][Read backup eeprom file(/OSM/modules/nt.bin)][PCIE][PCIECORE_EepContextCompare,541]
[2014-07-17 23:45:41][  194.711896] [48684][000050000409041d][INFO][Read size (2be(hex) bytes)][PCIE][PCIECORE_EepContextCompare,568]
[2014-07-17 23:45:41][  194.711902] [48684][0000500004090424][INFO][Eeprom context != File!][PCIE][PCIECORE_EepContextCompare,574]
[2014-07-17 23:45:41][  194.711916] [48684][000050000409044d][INFO][EEPRom context Invalid!!][PCIE][PCIECORE_CheckEeprom,838]
[2014-07-17 23:45:41][  194.711920] [48684][00005000040901c0][INFO][EEPROM status 3:][PCIE][PCIECORE_CheckEepromHelp,880]
[2014-07-17 23:45:41][  194.711925] [48684][00005000040901c2][ERR][The device(b:01 s:00 f:00) eeprom context is invalid, status(3).][PCIE][PCIECORE_CheckEepromHelp,902]
[2014-07-17 23:45:41][  194.711930] [48684][0000500004090330][INFO][device 8725 vendor 10b5 (1:0.0)notify event 47.][PCIE][PCIECORE_NotifyEvent,554]
[2014-07-17 23:45:41][  194.711955] [48684][0000500004090aaa][ERR][The pcie device(2:1.0) is downport for nt.][PCIE][PCIECORE_ProductIsExpectedLinkStatus,500]
[2014-07-17 23:45:41][  194.711960] [48684][0000500004099823][INFO][No device bridge to bus 0x4][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.711966] [48684][00005000040502e7][INFO][SendEvent to mod34. Device 1 Event 47 , (DRV_DEVT_PCIE_EEPROMERR), Dev type 1,evnt id56!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:41][  194.711972] [48684][0000500004099823][INFO][No device bridge to bus 0x5][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.711976] [48684][0000500004099823][INFO][No device bridge to bus 0x6][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.711980] [48684][0000500004099823][INFO][No device bridge to bus 0x7][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.711984] [48684][0000500004099823][INFO][No device bridge to bus 0x8][PCIE][PCIECORE_GetLinkPeerDev,1642]
[2014-07-17 23:45:41][  194.712017] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712086] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712146] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712205] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712262] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712321] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712388] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712454] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712522] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.712653] intel_alloc_coherent: 0000:01:00.1, set 64 dma mask success!
[2014-07-17 23:45:41][  194.712680] intel_alloc_coherent: 0000:0a:00.0, set 64 dma mask success!
[2014-07-17 23:45:41][  194.712735] 64bit 0000:01:00.1 uses identity mapping
[2014-07-17 23:45:41][  194.712969] [48684][00005000040900aa][INFO][Bus Physic Address: 2fc00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1461]
[2014-07-17 23:45:41][  194.712973] [48684][00005000040900aa][INFO][Kernel Virtual Address: ffff88002fc00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1463]
[2014-07-17 23:45:41][  194.712977] [48684][00005000040900aa][INFO][DMA buffer Size is: 1562 Kb][PCIE][PCIECORE_AllocDracoDmaBuffer,1469]
[2014-07-17 23:45:41][  194.712986] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.713138] intel_alloc_coherent: 0000:01:00.2, set 64 dma mask success!
[2014-07-17 23:45:41][  194.713164] intel_alloc_coherent: 0000:0a:00.0, set 64 dma mask success!
[2014-07-17 23:45:41][  194.713215] 64bit 0000:01:00.2 uses identity mapping
[2014-07-17 23:45:41][  194.713448] [48684][00005000040900aa][INFO][Bus Physic Address: 2fe00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1461]
[2014-07-17 23:45:41][  194.713452] [48684][00005000040900aa][INFO][Kernel Virtual Address: ffff88002fe00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1463]
[2014-07-17 23:45:41][  194.713456] [48684][00005000040900aa][INFO][DMA buffer Size is: 1562 Kb][PCIE][PCIECORE_AllocDracoDmaBuffer,1469]
[2014-07-17 23:45:41][  194.713465] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.713645] intel_alloc_coherent: 0000:01:00.3, set 64 dma mask success!
[2014-07-17 23:45:41][  194.713670] intel_alloc_coherent: 0000:0a:00.0, set 64 dma mask success!
[2014-07-17 23:45:41][  194.713721] 64bit 0000:01:00.3 uses identity mapping
[2014-07-17 23:45:41][  194.713960] [48684][00005000040900aa][INFO][Bus Physic Address: 2f800000][PCIE][PCIECORE_AllocDracoDmaBuffer,1461]
[2014-07-17 23:45:41][  194.713964] [48684][00005000040900aa][INFO][Kernel Virtual Address: ffff88002f800000][PCIE][PCIECORE_AllocDracoDmaBuffer,1463]
[2014-07-17 23:45:41][  194.713968] [48684][00005000040900aa][INFO][DMA buffer Size is: 1562 Kb][PCIE][PCIECORE_AllocDracoDmaBuffer,1469]
[2014-07-17 23:45:41][  194.713977] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714197] intel_alloc_coherent: 0000:01:00.4, set 64 dma mask success!
[2014-07-17 23:45:41][  194.714222] intel_alloc_coherent: 0000:0a:00.0, set 64 dma mask success!
[2014-07-17 23:45:41][  194.714273] 64bit 0000:01:00.4 uses identity mapping
[2014-07-17 23:45:41][  194.714514] [48684][00005000040900aa][INFO][Bus Physic Address: 2fa00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1461]
[2014-07-17 23:45:41][  194.714518] [48684][00005000040900aa][INFO][Kernel Virtual Address: ffff88002fa00000][PCIE][PCIECORE_AllocDracoDmaBuffer,1463]
[2014-07-17 23:45:41][  194.714522] [48684][00005000040900aa][INFO][DMA buffer Size is: 1562 Kb][PCIE][PCIECORE_AllocDracoDmaBuffer,1469]
[2014-07-17 23:45:41][  194.714531] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714584] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714638] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714692] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714746] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714800] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714854] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.714988] [48684][0000500004090aaa][INFO][No Devices need to save register value!!][PCIE][PCIECORE_LoadStateConf,3067]
[2014-07-17 23:45:41][  194.715039] [48684][0000500004090aaa][INFO][The device(BDF:100) is not support to query temperature.][PCIE][PCIECORE_InitTempDevices,1164]
[2014-07-17 23:45:41][  194.718328] DRHD: handling fault status reg 2
[2014-07-17 23:45:41][  194.718333] DMAR:[DMA Write] Request device [0a:00.0] fault addr ff4ff000 
[2014-07-17 23:45:41][  194.718335] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:41][  194.718349] 64bit 0000:0a:00.0 uses identity mapping
[2014-07-17 23:45:41][  194.718364] [48685][0000500004100207][INFO][Current Chip Firmware Ver:3.4.14.3 EEPROM Ver:0.0.0.0 ILA Ver:3.4.2.3 HW:PMC-Sierra,Inc.PM8072 rev 5][SAS_INI][SAL_CommGetChipInfo,1281]
[2014-07-17 23:45:41][  194.718373] [48685][00005000041000dd][INFO][Card:0 Phyid: 0 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.718378] [48685][00005000041000dd][INFO][Card:0 Phyid: 1 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.718382] [48685][00005000041000dd][INFO][Card:0 Phyid: 2 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.718387] [48685][00005000041000dd][INFO][Card:0 Phyid: 3 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.731876] [48689][00005000041000dd][INFO][Card:0 Phyid: 4 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.731881] [48689][00005000041000dd][INFO][Card:0 Phyid: 5 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.731885] [48689][00005000041000dd][INFO][Card:0 Phyid: 6 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.731890] [48689][00005000041000dd][INFO][Card:0 Phyid: 7 is already closed,status:0x2][SAS_INI][SAL_CommSwitchPhy,1531]
[2014-07-17 23:45:41][  194.743857] [48692][00005000040900aa][WARN][Poll Device Fault thread PCIE_DEVFAULT is start.][PCIE][PCIECORE_PollDeviceFaultThread,2028]
[2014-07-17 23:45:41][  194.743879] [48692][0000500004090152][INFO][Disable Doorbell Interrupt!][PCIE][PCIECORE_DisableDracoNtDoorBellInt,805]
[2014-07-17 23:45:41][  194.743932] pci 0000:03:00.0: irq 95 for MSI/MSI-X
[2014-07-17 23:45:41][  194.743947] [48692][00005000040900aa][INFO][request irq for PCIE_MIRROR_NT.][PCIE][PCIECORE_RegDracoNtInt,949]
[2014-07-17 23:45:41][  194.743976] [48692][00005000042003e8][INFO][Driver 3 register temp op][DMI][DAL_RegisterTempOp,172]
[2014-07-17 23:45:41][  194.743981] [48692][00005000040507b7][INFO][Will registe Module (pcie), ID(3).][DRV_API][DRV_RegDriverObj,564]
[2014-07-17 23:45:41][  194.743986] [48692][00005000040507e1][INFO][Module ID (3) has NOT been registered.][DRV_API][DRV_PNPM_ObjExistById,1030]
[2014-07-17 23:45:41][  194.743990] [48692][00005000040507e3][INFO][Module (3) has be Registered sucessful in Array.][DRV_API][DRV_PNPM_AddDrv,1073]
[2014-07-17 23:45:41][  194.743995] [48692][00005000040507ba][INFO][Driver (pcie) id (3) has been installed success.][DRV_API][DRV_RegDriverObj,583]
[2014-07-17 23:45:41][  194.743999] [48692][000050000409032f][INFO][Pcie module install OK return code 0 
[2014-07-17 23:45:41][  194.744000] ][PCIE][PCIECORE_RegDrvModToFrame,652]
[2014-07-17 23:45:41][  194.744004] [48692][0000500004090211][INFO][Initial mml function.][PCIE][PCIECORE_RegIntfToFrameAndInitMml,756]
[2014-07-17 23:45:41][  194.744009] [48692][0000500004090001][INFO][Register mml success!][PCIE][PCIECORE_MMLInit,3951]
[2014-07-17 23:45:41][  194.854348] [48719][00005000040b02e1][INFO][<========================================================>][PCIE_AER][PCIEAER_Init,1920]
[2014-07-17 23:45:41][  194.854354] [48719][00005000040b02e2][INFO][PCIE AER driver v1.4.1 © Huawei,Inc.2009
[2014-07-17 23:45:41][  194.854356] - built on Jul  8 2014 03:05:32][PCIE_AER][PCIEAER_Init,1925]
[2014-07-17 23:45:41][  194.854420] [48719][00005000040b0030][INFO][Get config ok][PCIE_AER][PCIEAER_GetCfgComSection,710]
[2014-07-17 23:45:41][  194.854425] [48719][00005000040b0035][INFO][aer CorErrCount_notify_valve =:1e][PCIE_AER][PCIEAER_ReadCfgFile,1105]
[2014-07-17 23:45:41][  194.854430] [48719][00005000040b0036][INFO][aer Aer Notify Level =:0][PCIE_AER][PCIEAER_ReadCfgFile,1106]
[2014-07-17 23:45:41][  194.854435] [48719][00005000040b0037][INFO][aer Aer Poll Time =:3][PCIE_AER][PCIEAER_ReadCfgFile,1107]
[2014-07-17 23:45:41][  194.854439] [48719][00005000040b0038][INFO][aer Aer Print Level ==:2][PCIE_AER][PCIEAER_ReadCfgFile,1108]
[2014-07-17 23:45:41][  194.854444] [48719][00005000040b0039][INFO][aer Aer err Report Count=:3][PCIE_AER][PCIEAER_ReadCfgFile,1109]
[2014-07-17 23:45:41][  194.854448] [48719][00005000040b003a][INFO][aer Aer Record time ==:3c][PCIE_AER][PCIEAER_ReadCfgFile,1110]
[2014-07-17 23:45:41][  194.854452] [48719][00005000040b003b][INFO][aer Aer Report time ==:b4][PCIE_AER][PCIEAER_ReadCfgFile,1111]
[2014-07-17 23:45:41][  194.854455] [48719][00005000040b003c][INFO][aer Aer Corerr record ==:a][PCIE_AER][PCIEAER_ReadCfgFile,1112]
[2014-07-17 23:45:41][  194.854459] [48719][00005000040b003d][INFO][aer Aer UnCorerr record ==:1][PCIE_AER][PCIEAER_ReadCfgFile,1113]
[2014-07-17 23:45:41][  194.854463] [48719][00005000040b003e][INFO][aer Aer device cfg number ==:13][PCIE_AER][PCIEAER_ReadCfgFile,1114]
[2014-07-17 23:45:41][  194.854467] [48719][00005000040b003f][INFO][aer Aer list cfg number ==:b][PCIE_AER][PCIEAER_ReadCfgFile,1115]
[2014-07-17 23:45:41][  194.854471] [48719][00005000040b0040][INFO][aer Aer root port number ==:8][PCIE_AER][PCIEAER_ReadCfgFile,1116]
[2014-07-17 23:45:41][  194.863666] [48721][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 01: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863674] [48721][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 01: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863686] [48721][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 02: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863692] [48721][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 02: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863710] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 02: 02][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863718] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 02: 02][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863740] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 03: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863748] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 03: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863769] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 03: 02][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863781] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 03: 02][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863796] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 1c: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863810] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.863818] [48722][00005000040b017b][ERR][Device(0:1c.0) don't support AER][PCIE_AER][PCIEAER_SetPcieDevErrMask,568]
[2014-07-17 23:45:41][  194.863834] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 1c: 01][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863847] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.863861] [48722][00005000040b017b][ERR][Device(0:1c.1) don't support AER][PCIE_AER][PCIEAER_SetPcieDevErrMask,568]
[2014-07-17 23:45:41][  194.863880] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 00: 1c: 02][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863888] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.863896] [48722][00005000040b017b][ERR][Device(0:1c.2) don't support AER][PCIE_AER][PCIEAER_SetPcieDevErrMask,568]
[2014-07-17 23:45:41][  194.863907] [48722][00005000040b00d8][INFO][reg test  PCI_BRIDGE_CTL_SERR2   2!][PCIE_AER][PCIEAER_Initadjustdevice,5023]
[2014-07-17 23:45:41][  194.863919] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.863931] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863950] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.863966] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.863978] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 01][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.863997] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 01][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864005] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864023] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 02][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864044] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 02][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864059] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864083] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 03][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864108] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 03][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864120] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864129] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 04][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864137] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 01: 00: 04][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864148] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864167] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 01: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864181] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 01: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864191] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864204] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 08: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864220] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 08: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864236] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864250] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 09: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864260] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 09: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864267] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864278] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0a: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864291] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0a: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864304] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864324] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0b: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864332] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0b: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864355] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864381] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0c: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864394] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 02: 0c: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864406] [48722][00005000040b00ad][ERR][NOT NB or Not supported  root port][PCIE_AER][PCIEAER_IsAerNBPort,1184]
[2014-07-17 23:45:41][  194.864417] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 03: 00: 00][PCIE_AER][PCIEAER_SetPcieDevErrMask,559]
[2014-07-17 23:45:41][  194.864429] [48722][00005000040b00b9][INFO][Set Err Mask(unmask): 03: 00: 00][PCIE_AER][PCIEAER_SetErrMask,2425]
[2014-07-17 23:45:41][  194.864443] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864455] [48722][00005000040b0aaa][INFO][The device(0:1.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864466] [48722][0000500004090aaa][INFO][The pci device(a:0.0) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864473] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864484] [48722][0000500004090aaa][INFO][The pci device(13:0.0) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864492] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864504] [48722][0000500004090aaa][INFO][The pci device(13:0.1) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864510] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864529] [48722][0000500004090aaa][INFO][The pci device(13:0.2) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864538] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864550] [48722][0000500004090aaa][INFO][The pci device(13:0.3) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864557] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864567] [48722][0000500004090aaa][INFO][The pci device(30:0.0) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864578] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864591] [48722][0000500004090aaa][INFO][The pci device(32:0.0) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864599] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864618] [48722][0000500004090aaa][INFO][The pci device(34:0.0) not need save register][PCIE][PCIECORE_CreateCardSwResource,3833]
[2014-07-17 23:45:41][  194.864641] [48722][00005000040b00cc][INFO][Check if it is bridge!][PCIE_AER][PCIEAER_AddDevToList,2658]
[2014-07-17 23:45:41][  194.864652] [48722][00005000040b0aaa][INFO][The device(2:1.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864671] [48722][00005000040b0aaa][INFO][The device(2:8.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864679] [48722][00005000040b0aaa][INFO][The device(2:9.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864690] [48722][00005000040b0aaa][INFO][The device(2:a.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864700] [48722][00005000040b0aaa][INFO][The device(2:b.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864717] [48722][00005000040b0aaa][INFO][The device(2:c.0) is not supported to build sublist][PCIE_AER][PCIEAER_InitSubordinateList,2983]
[2014-07-17 23:45:41][  194.864728] [48722][00005000040b028b][INFO][
[2014-07-17 23:45:41][  194.864729] Begin search aer list ...][PCIE_AER][PCIEAER_IsrErrReportInit,2401]
[2014-07-17 23:45:41][  194.864737] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.864744] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.864758] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:1.0).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.864768] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.864800] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.864829] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.864851] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865009] [48722][00005000040b007b][INFO][Enable Aer OK!][PCIE_AER][PCIEAER_EnableRootPort,1293]
[2014-07-17 23:45:41][  194.865013] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865016] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865021] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:2.0).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865025] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865037] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865053] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865058] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865102] [48722][00005000040b007b][INFO][Enable Aer OK!][PCIE_AER][PCIEAER_EnableRootPort,1293]
[2014-07-17 23:45:41][  194.865106] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865109] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865114] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:2.2).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865118] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865128] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865145] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865150] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865193] [48722][00005000040b007b][INFO][Enable Aer OK!][PCIE_AER][PCIEAER_EnableRootPort,1293]
[2014-07-17 23:45:41][  194.865197] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865201] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865206] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:3.0).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865209] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865220] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865234] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865240] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865279] [48722][00005000040b007b][INFO][Enable Aer OK!][PCIE_AER][PCIEAER_EnableRootPort,1293]
[2014-07-17 23:45:41][  194.865283] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865286] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865291] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:3.2).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865295] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865305] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865321] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865326] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865368] [48722][00005000040b007b][INFO][Enable Aer OK!][PCIE_AER][PCIEAER_EnableRootPort,1293]
[2014-07-17 23:45:41][  194.865373] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865376] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865381] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:1c.0).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865385] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865396] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865411] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865416] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865429] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.865434] [48722][00005000040b0077][INFO][Find device(0:1c.0) PCI Capability PCI_EXT_CAP_ID_ERR(1) failed.][PCIE_AER][PCIEAER_EnableRootPort,1261]
[2014-07-17 23:45:41][  194.865439] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865444] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865449] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:1c.1).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865453] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865463] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865478] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865483] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865496] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.865501] [48722][00005000040b0077][INFO][Find device(0:1c.1) PCI Capability PCI_EXT_CAP_ID_ERR(1) failed.][PCIE_AER][PCIEAER_EnableRootPort,1261]
[2014-07-17 23:45:41][  194.865505] [48722][00005000040b0213][INFO][AER probe...][PCIE_AER][PCIEAER_AerProbe,211]
[2014-07-17 23:45:41][  194.865508] [48722][00005000040b012e][INFO][alloc root port controller...][PCIE_AER][PCIEAER_AllocRPC,4323]
[2014-07-17 23:45:41][  194.865514] [48722][00005000040b0289][INFO][Create aer thread for pcie device(0:1c.2).][PCIE_AER][PCIEAER_CreateHandleThread,2343]
[2014-07-17 23:45:41][  194.865518] [48722][00005000040b0287][INFO][Create error handle thread][PCIE_AER][PCIEAER_CreateThread,2300]
[2014-07-17 23:45:41][  194.865528] [48722][00005000040b006c][INFO][Enable root port AER...!][PCIE_AER][PCIEAER_EnableRootPort,1175]
[2014-07-17 23:45:41][  194.865542] [48722][00005000040b0074][INFO][check aer isr if reported!][PCIE_AER][PCIEAER_EnableRootPort,1233]
[2014-07-17 23:45:41][  194.865548] [48722][00005000040b006c][INFO][Enable root port AER Suprisedown ...!][PCIE_AER][PCIEAER_EnableRootPortSuprisedown,1109]
[2014-07-17 23:45:41][  194.865561] [48722][000050000409035f][INFO][Header == 0][PCIE][PCIECORE_FindExtCapbility,1027]
[2014-07-17 23:45:41][  194.865566] [48722][00005000040b0077][INFO][Find device(0:1c.2) PCI Capability PCI_EXT_CAP_ID_ERR(1) failed.][PCIE_AER][PCIEAER_EnableRootPort,1261]
[2014-07-17 23:45:41][  194.865571] [48722][00005000040b028e][INFO][Aer list search completed
[2014-07-17 23:45:41][  194.865573] ][PCIE_AER][PCIEAER_IsrErrReportInit,2415]
[2014-07-17 23:45:41][  194.865884] [48722][00005000040b0154][INFO][Do not save CSR register of none PCI bridge device(1:0.1)][PCIE_AER][PCIEAER_SaveAllOnBoardSwitchCSRRegs,4819]
[2014-07-17 23:45:41][  194.865891] [48722][00005000040b0154][INFO][Do not save CSR register of none PCI bridge device(1:0.2)][PCIE_AER][PCIEAER_SaveAllOnBoardSwitchCSRRegs,4819]
[2014-07-17 23:45:41][  194.865897] [48722][00005000040b0154][INFO][Do not save CSR register of none PCI bridge device(1:0.3)][PCIE_AER][PCIEAER_SaveAllOnBoardSwitchCSRRegs,4819]
[2014-07-17 23:45:41][  194.865903] [48722][00005000040b0154][INFO][Do not save CSR register of none PCI bridge device(1:0.4)][PCIE_AER][PCIEAER_SaveAllOnBoardSwitchCSRRegs,4819]
[2014-07-17 23:45:41][  194.866098] [48722][00005000040b02a6][INFO][Aer register pcie successfully!][PCIE_AER][PCIEAER_RegisterDrvPCIE,751]
[2014-07-17 23:45:41][  194.866113] [48722][00005000040b0aaa][INFO][The device(3:0.0)  uncorrectable error:140000][PCIE_AER][PCIEAER_CleanNTLinkSideErrReg,1839]
[2014-07-17 23:45:41][  194.871704] [48724][00005000040b02ec][INFO][AER init successfully!][PCIE_AER][PCIEAER_Init,2006]
[2014-07-17 23:45:41][  194.871959] [48724][00005000040b02dc][ERR][Detecte nt link err! Virtual: [03:00:00] 0x40000][PCIE_AER][PCIEAER_GetLinkSideUnCorStatus,1445]
[2014-07-17 23:45:41][  194.871965] [48724][00005000040b0000][INFO][Driver 0 report device 3:0.0 chip error, errinfo:0][PCIE_AER][PCIEAER_GetPCIDevFromChipErrEvent,136]
[2014-07-17 23:45:41][  194.871996] [48724][00005000040b0002][INFO][Get chiperr device: 8725 10b5 [3:0:0]][PCIE_AER][PCIEAER_GetPCIDevFromChipErrEvent,147]
[2014-07-17 23:45:41][  194.880211] [48726][00005000040b0276][INFO][pciehp.ko is not registered][PCIE_AER][PCIEAER_ThreadHandle,2066]
[2014-07-17 23:45:41][  194.978371] [48750][00005000040a0311][INFO][Get config ok][PCIE_HP][PCIEHP_GetCfgComSection,309]
[2014-07-17 23:45:41][  194.978377] [48750][00005000040a000c][INFO][Hotplug wait time is:5][PCIE_HP][PCIEHP_ReadCfgFile,793]
[2014-07-17 23:45:41][  194.978381] [48750][00005000040a030c][INFO][Hotplug retry time is 5.][PCIE_HP][PCIEHP_ReadCfgFile,796]
[2014-07-17 23:45:41][  194.978384] [48750][00005000040a030c][INFO][Hotplug slot count is 2.][PCIE_HP][PCIEHP_ReadCfgFile,799]
[2014-07-17 23:45:41][  194.978388] [48750][00005000040a030c][INFO][Hotplug AC slot count is 3.][PCIE_HP][PCIEHP_ReadCfgFile,802]
[2014-07-17 23:45:41][  194.978392] [48750][00005000040a030c][INFO][The device type which surpport to AC down is 1.][PCIE_HP][PCIEHP_ReadCfgFile,806]
[2014-07-17 23:45:41][  194.978396] [48750][00005000040a030c][INFO][The device type which surpport to AC down is f.][PCIE_HP][PCIEHP_ReadCfgFile,806]
[2014-07-17 23:45:41][  194.978400] [48750][00005000040a030c][INFO][The device type which surpport to AC down is 2.][PCIE_HP][PCIEHP_ReadCfgFile,806]
[2014-07-17 23:45:41][  194.978405] [48750][00005000040a0054][INFO][Initialize the device for hot plug bus/slot :0/12][PCIE_HP][PCIEHP_InitSlot,1150]
[2014-07-17 23:45:41][  194.978430] [48750][00005000040a0268][INFO][Slot 0 control register  value is 0x19.][PCIE_HP][PCIEHP_GetPowerStatus,346]
[2014-07-17 23:45:41][  194.978446] [48750][00005000040a0261][INFO][Read slot 0 reg 280 control register  value 8 by bsp .][PCIE_HP][PCIEHP_GetAdapterStatus,214]
[2014-07-17 23:45:41][  194.978450] [48750][00005000040a012d][INFO][[00:02:02] Support Hotplug][PCIE_HP][PCIEHP_InitSlotAdd,1107]
[2014-07-17 23:45:41][  194.978464] [48750][00005000040a0054][INFO][Initialize the device for hot plug bus/slot :0/18][PCIE_HP][PCIEHP_InitSlot,1150]
[2014-07-17 23:45:41][  194.978484] [48750][00005000040a0268][INFO][Slot 1 control register  value is 0x18.][PCIE_HP][PCIEHP_GetPowerStatus,346]
[2014-07-17 23:45:41][  194.978499] [48750][00005000040a0261][INFO][Read slot 1 reg 281 control register  value 0 by bsp .][PCIE_HP][PCIEHP_GetAdapterStatus,214]
[2014-07-17 23:45:41][  194.978503] [48750][00005000040a012d][INFO][[00:03:00] Support Hotplug][PCIE_HP][PCIEHP_InitSlotAdd,1107]
[2014-07-17 23:45:41][  194.978523] [48750][00005000040a00b0][INFO][PCIE_HP init successfully!][PCIE_HP][PCIEHP_ModeInit,1574]
[2014-07-17 23:45:41][  195.080200] [48776][1500000460c33][INFO][Enter ISCSI_INI_ModuleInit.][ISCSI_INI][ISI_ModuleInit,7981][insmod]
[2014-07-17 23:45:41][  195.080242] [48776][00005000040501ef][INFO][Find empty template index 0 for driver 4 ISCSIINI.][DRV_API][DRV_RegisterInitiator,437]
[2014-07-17 23:45:41][  195.080248] [48776][00005000040501f3][INFO][Driver 4 register initiator key param: .][DRV_API][DRV_RegisterInitiator,499]
[2014-07-17 23:45:41][  195.080253] [48776][00005000040501f4][INFO][Name:ISCSIINI CanQueue:2047 sg table size:4096 cmd per LUN:64 clustering:1.][DRV_API][DRV_RegisterInitiator,503]
[2014-07-17 23:45:41][  195.080260] [48776][00005000040501eb][INFO][Get initiator template successed, index 0 driver 4 ISCSIINI.][DRV_API][DRVAPI_GetInitiatorTemplate,373]
[2014-07-17 23:45:41][  195.080265] [48776][00005000040501ec][INFO][Driver 4 index 0 register initiator key param: .][DRV_API][DRVAPI_GetInitiatorTemplate,375]
[2014-07-17 23:45:41][  195.080269] [48776][00005000040501ed][INFO][Name:ISCSIINI CanQueue:2047 sg table size:4096 cmd per LUN:64 clustering:1.][DRV_API][DRVAPI_GetInitiatorTemplate,382]
[2014-07-17 23:45:41][  195.091416] [48779][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:41][  195.091424] scsi7 : ISCSIINI
[2014-07-17 23:45:41][  195.091495] [48779][00005000040501f8][INFO][Add BDM INI.][DRV_API][DRV_AddInitiator,608]
[2014-07-17 23:45:41][  195.091500] [48779][00005000040501fc][INFO][Get empty map index 1 successed.][DRV_API][DRVAPI_AllocInitiatorId,742]
[2014-07-17 23:45:41][  195.091505] [48779][00005000040501fe][INFO][Allocate initiator id 7 to drv 4, index 1.][DRV_API][DRVAPI_AllocInitiatorId,775]
[2014-07-17 23:45:41][  195.091509] [48779][00005000040501f9][INFO][Add initiator, ret 0.][DRV_API][DRV_AddInitiator,618]
[2014-07-17 23:45:41][  195.091940] [48779][1500003e50146][WARN][Can not fill local from share.][VOS][MEM_AllocFromCache,1015][insmod]
[2014-07-17 23:45:41][  195.099060] [48780][150000046044a][INFO][2048 commands now allocated, command size 17368.][ISCSI_INI][preallocate_commands,215][insmod]
[2014-07-17 23:45:41][  195.099074] ISCSI INI register DIAGNOSE succeed.ISCSI INI register DIAGNOSE to CLI succeed.[48780][000050000405023f][INFO][Drv type=2 register mirror template ok!][DRV_API][DRVAPI_RegMirDataIntfTemplate,119]
[2014-07-17 23:45:41][  195.267193] [48823][00005000041002a0][INFO][Card:0 Port(First Phy:8) current stable link rate:0x4(12.0G)][SAS_INI][SAL_CheckWidePortPhyRate,4231]
[2014-07-17 23:45:41][  195.267211] [48823][0000500004100043][INFO][Card:0 port:0 dispatcher discover event(disc type:1 <0-step; 1-full;> )][SAS_INI][SAINI_DiscDispatcher,307]
[2014-07-17 23:45:42][  195.283173] [48827][0000500004100040][INFO][Card:0 Port:0 disc thread start-up...][SAS_INI][SAINI_DiscThread,130]
[2014-07-17 23:45:42][  195.283180] [48827][0000500004100395][INFO][=== Card:0 port:0 start discovering(disc type:full) ===][SAS_INI][SAINI_DoDiscover,3959]
[2014-07-17 23:45:42][  195.283185] [48827][0000500004100387][INFO][Card:0 port:0 clr port rsc,remove all device from device list of Disc][SAS_INI][SAINI_ClearPortRsc,451]
[2014-07-17 23:45:42][  195.283192] [48827][0000500004100052][INFO][Port:0 discover add device:0x54846fb8ca16513f(expander),Valid? Before:No Now:Yes][SAS_INI][SAINI_AddPortDev,1091]
[2014-07-17 23:45:42][  195.283210] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x54846fb8ca16513f(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.283310] [48827][000050000410125e][INFO][Reg dev addr:0x54846fb8ca16513f,dev id:0x4800 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.283325] [48827][0000500004100236][INFO][Card:0 port:0 disc-thread add SMP dev:0x54846fb8ca16513f succeed][SAS_INI][SAL_DiscAddDisk,1003]
[2014-07-17 23:45:42][  195.283330] [48827][000050000410039c][INFO][Card:0 port:0 add expander:0x54846fb8ca16513f to expander list][SAS_INI][SAINI_AddExpList,410]
[2014-07-17 23:45:42][  195.283336] [48827][00005000041003a8][INFO][Card:0 port:0 up stream,send report general to expander:0x54846fb8ca16513f][SAS_INI][SAINI_UpStreamDiscovering,3801]
[2014-07-17 23:45:42][  195.284403] [48827][00005000041003cc][INFO][Card:0 port:0 expander:0x54846fb8ca16513f,num of phy:37,configuring:0,configrable:0,long response:0x1,change times:67][SAS_INI][SAINI_ParseReportGeneralResp,1360]
[2014-07-17 23:45:42][  195.284409] [48827][000050000410005f][INFO][Card:0 port:0 report general to dev:0x54846fb8ca16513f response OK][SAS_INI][SAINI_ExecuteReportGeneral,1478]
[2014-07-17 23:45:42][  195.285128] [48827][0000500004100082][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp,start phy:0,end phy:10,num of descr:10][SAS_INI][SAINI_UpStreamDiscList,2727]
[2014-07-17 23:45:42][  195.285296] [48827][0000500004100082][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp,start phy:10,end phy:20,num of descr:10][SAS_INI][SAINI_UpStreamDiscList,2727]
[2014-07-17 23:45:42][  195.285433] [48827][0000500004100082][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp,start phy:20,end phy:30,num of descr:10][SAS_INI][SAINI_UpStreamDiscList,2727]
[2014-07-17 23:45:42][  195.285607] [48827][0000500004100082][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp,start phy:30,end phy:37,num of descr:7][SAS_INI][SAINI_UpStreamDiscList,2727]
[2014-07-17 23:45:42][  195.285613] [48827][00005000041003a9][INFO][Card:0 port:0 has no more expander to do up stream][SAS_INI][SAINI_UpStreamDiscovering,3787]
[2014-07-17 23:45:42][  195.285618] [48827][00005000041003aa][INFO][Card:0 port:0 down stream discover][SAS_INI][SAINI_DownStreamDiscover,3539]
[2014-07-17 23:45:42][  195.285624] [48827][00005000041003a8][INFO][Card:0 port:0 down stream,send report general to expander:0x54846fb8ca16513f][SAS_INI][SAINI_DownStreamDiscovering,3473]
[2014-07-17 23:45:42][  195.285755] [48827][00005000041003cc][INFO][Card:0 port:0 expander:0x54846fb8ca16513f,num of phy:37,configuring:0,configrable:0,long response:0x1,change times:0][SAS_INI][SAINI_ParseReportGeneralResp,1360]
[2014-07-17 23:45:42][  195.285761] [48827][000050000410005f][INFO][Card:0 port:0 report general to dev:0x54846fb8ca16513f response OK][SAS_INI][SAINI_ExecuteReportGeneral,1478]
[2014-07-17 23:45:42][  195.285986] [48827][0000500004100095][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp start phy:0,end phy:10,num of descr:10][SAS_INI][SAINI_DownStreamDiscList,3141]
[2014-07-17 23:45:42][  195.285995] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:0(T)change:0 to 1 times,and current attached addr:0x5000c50055daff59(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286005] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:1(T)change:0 to 1 times,and current attached addr:0x5000c50055e49455(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286014] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:2(T)change:0 to 1 times,and current attached addr:0x5000c50055ead07d(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286023] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:3(T)change:0 to 1 times,and current attached addr:0x5000c50055efdfe1(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286032] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:4(T)change:0 to 1 times,and current attached addr:0x5000c50055e4930d(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286041] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:5(T)change:0 to 1 times,and current attached addr:0x5000c50055ccd3a9(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286050] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:6(T)change:0 to 1 times,and current attached addr:0x5000c50042461e85(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286059] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:7(T)change:0 to 1 times,and current attached addr:0x5000c50055e48971(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286068] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:8(T)change:0 to 1 times,and current attached addr:0x5000c50055e48fb9(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286077] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:9(T)change:0 to 1 times,and current attached addr:0x5000c50055ead061(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286219] [48827][0000500004100095][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp start phy:10,end phy:20,num of descr:10][SAS_INI][SAINI_DownStreamDiscList,3141]
[2014-07-17 23:45:42][  195.286225] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:10(T)change:0 to 1 times,and current attached addr:0x5000c50055e49241(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286232] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:11(T)change:0 to 1 times,and current attached addr:0x5000c50055e47295(last addr:0x0),rate:0xa][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286451] [48827][0000500004100095][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp start phy:20,end phy:30,num of descr:10][SAS_INI][SAINI_DownStreamDiscList,3141]
[2014-07-17 23:45:42][  195.286458] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:28 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286463] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:29 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286576] [48827][0000500004100095][INFO][Card:0 Port:0 Expander:0x54846fb8ca16513f discover list resp start phy:30,end phy:37,num of descr:7][SAS_INI][SAINI_DownStreamDiscList,3141]
[2014-07-17 23:45:42][  195.286582] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:30 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286587] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:31 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286592] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:32 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286597] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:33 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286603] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:34 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286608] [48827][00005000041003dd][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:35 attached father addr:0xa002030405060708][SAS_INI][SAINI_CheckAttaDev,2872]
[2014-07-17 23:45:42][  195.286613] [48827][00005000041003d9][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:36 RoutAttri:0 virtual:yes][SAS_INI][SAINI_DownStreamDiscList,3185]
[2014-07-17 23:45:42][  195.286619] [48827][0000500004100099][INFO][Card:0 port:0 expander:0x54846fb8ca16513f phy:36(D)change:0 to 0 times,and current attached addr:0x54846fb8ca16513e(last addr:0x0),rate:0xb][SAS_INI][SAINI_DownStreamDiscList,3237]
[2014-07-17 23:45:42][  195.286626] [48827][00005000041003a9][INFO][Card:0 port:0 has no more expander to do down stream][SAS_INI][SAINI_DownStreamDiscovering,3458]
[2014-07-17 23:45:42][  195.286632] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x54846fb8ca16513f is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286637] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055daff59 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286642] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e49455 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286647] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055ead07d is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286652] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055efdfe1 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286656] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e4930d is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286661] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055ccd3a9 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286666] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50042461e85 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286671] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e48971 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286676] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e48fb9 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286681] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055ead061 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286686] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e49241 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286691] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x5000c50055e47295 is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286696] [48827][00005000041003e7][INFO][Card:0 port:0 disc over,device:0x54846fb8ca16513e is valid? before:no,now:Yes][SAS_INI][SAINI_ReportDevChg,3340]
[2014-07-17 23:45:42][  195.286701] [48827][000050000410038a][INFO][Card:0 port:0(status:0x2) discover done with result:0x0(Successful)][SAS_INI][SAINI_NotifyDiscDone,827]
[2014-07-17 23:45:42][  195.286713] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055daff59(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.286718] [48827][0000500004100040][INFO][Card:0 Port:0 disc thread end (cost time:16 ms)][SAS_INI][SAINI_DiscThread,159]
[2014-07-17 23:45:42][  195.286777] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055daff59,dev id:0x14801 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.286790] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e49455(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.286818] [48827][000050000410128c][INFO][Card id:0,Dev id:0x14801,Port Id:0,Tag:48,SSP Tag:16447,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.286837] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055e49455,dev id:0x24802 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.286849] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055ead07d(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.286866] [48827][000050000410128c][INFO][Card id:0,Dev id:0x24802,Port Id:0,Tag:66,SSP Tag:16449,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.286897] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055ead07d,dev id:0x34803 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.286907] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055efdfe1(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.286922] [48827][000050000410128c][INFO][Card id:0,Dev id:0x34803,Port Id:0,Tag:68,SSP Tag:16451,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.286954] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055efdfe1,dev id:0x44804 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.286965] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e4930d(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.286981] [48827][000050000410128c][INFO][Card id:0,Dev id:0x44804,Port Id:0,Tag:70,SSP Tag:16453,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287012] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055e4930d,dev id:0x54805 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287023] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055ccd3a9(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287039] [48827][000050000410128c][INFO][Card id:0,Dev id:0x54805,Port Id:0,Tag:72,SSP Tag:16455,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287069] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50055ccd3a9,dev id:0x64806 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287080] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50042461e85(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287095] [48827][000050000410128c][INFO][Card id:0,Dev id:0x64806,Port Id:0,Tag:74,SSP Tag:16457,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287127] [48827][000050000410125e][INFO][Reg dev addr:0x5000c50042461e85,dev id:0x74807 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287139] [48827][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e48971(ST:1),event time:0 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287155] [48827][000050000410128c][INFO][Card id:0,Dev id:0x74807,Port Id:0,Tag:76,SSP Tag:16459,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287193] [48828][000050000410125e][INFO][Reg dev addr:0x5000c50055e48971,dev id:0x84808 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287230] [48828][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e48fb9(ST:1),event time:4 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287238] [48828][000050000410128c][INFO][Card id:0,Dev id:0x84808,Port Id:0,Tag:78,SSP Tag:16461,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287295] [48828][000050000410125e][INFO][Reg dev addr:0x5000c50055e48fb9,dev id:0x94809 rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287309] [48828][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055ead061(ST:1),event time:4 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287328] [48828][000050000410128c][INFO][Card id:0,Dev id:0x94809,Port Id:0,Tag:64,SSP Tag:16463,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287359] [48828][000050000410125e][INFO][Reg dev addr:0x5000c50055ead061,dev id:0xa480a rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287376] [48828][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e49241(ST:1),event time:4 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287397] [48828][000050000410128c][INFO][Card id:0,Dev id:0xa480a,Port Id:0,Tag:82,SSP Tag:16465,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287428] [48828][000050000410125e][INFO][Reg dev addr:0x5000c50055e49241,dev id:0xb480b rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287449] [48828][0000500004100244][INFO][Card:0 port:0 will add dev:0x5000c50055e47295(ST:1),event time:4 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287465] [48828][000050000410128c][INFO][Card id:0,Dev id:0xb480b,Port Id:0,Tag:84,SSP Tag:16467,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287507] [48828][000050000410125e][INFO][Reg dev addr:0x5000c50055e47295,dev id:0xc480c rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287527] [48828][0000500004100244][INFO][Card:0 port:0 will add dev:0x54846fb8ca16513e(ST:1),event time:4 ms][SAS_INI][SAL_HandleDiskAdd,1392]
[2014-07-17 23:45:42][  195.287546] [48828][000050000410128c][INFO][Card id:0,Dev id:0xc480c,Port Id:0,Tag:86,SSP Tag:16469,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287590] [48828][000050000410125e][INFO][Reg dev addr:0x54846fb8ca16513e,dev id:0xd480d rsp,status:0x0(OK)][SAS_INI][Quark_RegDevRsp,530]
[2014-07-17 23:45:42][  195.287611] [48828][000050000410026a][INFO][Card:0 dev:0x54846fb8ca16513e get free scsi id:0 for frame][SAS_INI][SAL_SetScsiID,3031]
[2014-07-17 23:45:42][  195.287625] [48828][0000500004100024][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:0:0] disk:0x54846fb8ca16513f expander:0x807060504030201 slot:36 state:0(Disk empty)][SAS_INI][SASINI_ExpChgDelaySTMove,1582]
[2014-07-17 23:45:42][  195.287639] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:0:0] disk:0x54846fb8ca16513f expander:0x807060504030201 slot:36 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287658] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055daff59 get free scsi id:45 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287687] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:45:0] disk:0x5000c50055daff59 expander:0x54846fb8ca16513f slot:0 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287698] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:45:0] disk:0x5000c50055daff59 expander:0x54846fb8ca16513f slot:0 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287707] [48828][000050000410128c][INFO][Card id:0,Dev id:0xd480d,Port Id:0,Tag:88,SSP Tag:16471,event:0x36(xfer frame issued)][SAS_INI][Quark_SASEvent,2682]
[2014-07-17 23:45:42][  195.287713] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e49455 get free scsi id:46 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287721] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:46:0] disk:0x5000c50055e49455 expander:0x54846fb8ca16513f slot:1 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287734] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:46:0] disk:0x5000c50055e49455 expander:0x54846fb8ca16513f slot:1 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287750] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055ead07d get free scsi id:47 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287763] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:47:0] disk:0x5000c50055ead07d expander:0x54846fb8ca16513f slot:2 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287777] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:47:0] disk:0x5000c50055ead07d expander:0x54846fb8ca16513f slot:2 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287790] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055efdfe1 get free scsi id:48 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287800] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:48:0] disk:0x5000c50055efdfe1 expander:0x54846fb8ca16513f slot:3 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287811] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:48:0] disk:0x5000c50055efdfe1 expander:0x54846fb8ca16513f slot:3 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287820] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e4930d get free scsi id:49 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287829] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:49:0] disk:0x5000c50055e4930d expander:0x54846fb8ca16513f slot:4 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287844] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:49:0] disk:0x5000c50055e4930d expander:0x54846fb8ca16513f slot:4 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287860] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055ccd3a9 get free scsi id:50 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287870] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:50:0] disk:0x5000c50055ccd3a9 expander:0x54846fb8ca16513f slot:5 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287881] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:50:0] disk:0x5000c50055ccd3a9 expander:0x54846fb8ca16513f slot:5 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287891] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50042461e85 get free scsi id:51 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287900] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:51:0] disk:0x5000c50042461e85 expander:0x54846fb8ca16513f slot:6 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287910] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:51:0] disk:0x5000c50042461e85 expander:0x54846fb8ca16513f slot:6 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287919] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e48971 get free scsi id:52 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287930] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:52:0] disk:0x5000c50055e48971 expander:0x54846fb8ca16513f slot:7 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287942] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:52:0] disk:0x5000c50055e48971 expander:0x54846fb8ca16513f slot:7 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287953] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e48fb9 get free scsi id:53 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287963] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:53:0] disk:0x5000c50055e48fb9 expander:0x54846fb8ca16513f slot:8 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.287974] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:53:0] disk:0x5000c50055e48fb9 expander:0x54846fb8ca16513f slot:8 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.287983] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055ead061 get free scsi id:54 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.287995] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:54:0] disk:0x5000c50055ead061 expander:0x54846fb8ca16513f slot:9 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.288006] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:54:0] disk:0x5000c50055ead061 expander:0x54846fb8ca16513f slot:9 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.288015] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e49241 get free scsi id:55 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.288024] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:55:0] disk:0x5000c50055e49241 expander:0x54846fb8ca16513f slot:10 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.288036] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:55:0] disk:0x5000c50055e49241 expander:0x54846fb8ca16513f slot:10 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.288045] [48828][000050000410026a][INFO][Card:0 dev:0x5000c50055e47295 get free scsi id:56 for disk][SAS_INI][SAL_SetScsiID,3064]
[2014-07-17 23:45:42][  195.288055] [48828][000050000410001c][INFO][Card:0 logic port:0 state change:0(Add disk) [6:0:56:0] disk:0x5000c50055e47295 expander:0x54846fb8ca16513f slot:11 state:0(Disk empty)][SAS_INI][SASINI_DiskChgDelayStateMove,1160]
[2014-07-17 23:45:42][  195.288066] [48828][0000500004100017][INFO][Card:0 logic port:0 disk in [6:0:56:0] disk:0x5000c50055e47295 expander:0x54846fb8ca16513f slot:11 state:3(Disk fact in) flag:0][SAS_INI][SASINI_ChgDelayDevINProc,977]
[2014-07-17 23:45:42][  195.451173] [48869][0000500004100302][INFO][Report device:0(Frame in) [6:0:0:0] disk addr:0x54846fb8ca16513f state:1 WWN:0x54846fb8ca16503f expander:0x807060504030201 port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451190] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:45:0] disk addr:0x5000c50055daff59 state:1 WWN:0x54846fb8ca165000 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451198] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:46:0] disk addr:0x5000c50055e49455 state:1 WWN:0x54846fb8ca165001 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451206] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 8 Event 0 , (DRV_DEVT_IN), Dev type 8,evnt id57!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451214] [48869][0000500004203039][INFO][EHP Receive frame IN event, LoopNum:0x1f2000, scsi_addr:[6: 0: 0: 0], WWN: 0x54846fb8ca16503f, MngtType: SAS_SES !][DMI][EHP_ReceiveFrameEvent,2187]
[2014-07-17 23:45:42][  195.451220] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:47:0] disk addr:0x5000c50055ead07d state:1 WWN:0x54846fb8ca165002 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451228] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:48:0] disk addr:0x5000c50055efdfe1 state:1 WWN:0x54846fb8ca165003 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451233] [48869][0000500004203039][DBG][SpecialEnclFlag = 0, wwn 0x54846fb8ca16503f.][DMI][EHP_ReceiveFrameEvent,2201]
[2014-07-17 23:45:42][  195.451237] [48869][0000500004203039][DBG][Relation enclosure, wwn 0x54846fb8ca16503f.][DMI][EHP_ReceiveFrameEvent,2206]
[2014-07-17 23:45:42][  195.451242] [48869][0000500004203039][INFO][Allocate thread listindex 0 to handle frame event wwn 0x54846fb8ca16503f.][DMI][EHP_ReceiveFrameEvent,2216]
[2014-07-17 23:45:42][  195.451249] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:49:0] disk addr:0x5000c50055e4930d state:1 WWN:0x54846fb8ca165004 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451258] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:50:0] disk addr:0x5000c50055ccd3a9 state:1 WWN:0x54846fb8ca165005 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451264] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id58!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451270] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165000 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x0.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451276] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:51:0] disk addr:0x5000c50042461e85 state:1 WWN:0x54846fb8ca165006 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451283] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:52:0] disk addr:0x5000c50055e48971 state:1 WWN:0x54846fb8ca165007 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451289] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165000 event, fwwn = 0x54846fb8ca16503f, phy id = 0x0.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451296] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:53:0] disk addr:0x5000c50055e48fb9 state:1 WWN:0x54846fb8ca165008 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451302] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id59!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451307] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165001 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x1.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451312] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165001 event, fwwn = 0x54846fb8ca16503f, phy id = 0x1.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451318] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id60!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451324] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:54:0] disk addr:0x5000c50055ead061 state:1 WWN:0x54846fb8ca165009 expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451330] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165002 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x2.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451336] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:55:0] disk addr:0x5000c50055e49241 state:1 WWN:0x54846fb8ca16500a expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451343] [48869][0000500004100302][INFO][Report device:80(Disk in) [6:0:56:0] disk addr:0x5000c50055e47295 state:1 WWN:0x54846fb8ca16500b expander:0x54846fb8ca16503f port:0x1f2000][SAS_INI][SAL_ReportDevEvent,679]
[2014-07-17 23:45:42][  195.451348] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165002 event, fwwn = 0x54846fb8ca16503f, phy id = 0x2.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451366] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id61!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451371] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165003 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x3.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451376] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165003 event, fwwn = 0x54846fb8ca16503f, phy id = 0x3.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451382] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id62!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451387] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165004 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x4.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451393] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165004 event, fwwn = 0x54846fb8ca16503f, phy id = 0x4.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451399] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id63!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451404] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165005 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x5.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451409] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165005 event, fwwn = 0x54846fb8ca16503f, phy id = 0x5.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451416] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id64!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451421] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165006 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x6.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451426] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165006 event, fwwn = 0x54846fb8ca16503f, phy id = 0x6.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451432] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id65!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451437] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165007 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x7.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451442] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165007 event, fwwn = 0x54846fb8ca16503f, phy id = 0x7.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451449] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id66!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451454] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165000 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x0.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451459] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id67!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451464] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165001 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x1.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451469] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id68!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451474] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165008 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x8.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451479] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165008 event, fwwn = 0x54846fb8ca16503f, phy id = 0x8.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451486] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id69!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451491] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165009 event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0x9.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451496] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca165009 event, fwwn = 0x54846fb8ca16503f, phy id = 0x9.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451502] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id70!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451507] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca16500a event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0xa.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451512] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca16500a event, fwwn = 0x54846fb8ca16503f, phy id = 0xa.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451519] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id71!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451524] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165002 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x2.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451542] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 80 , (INTERNEL_IN), Dev type 5,evnt id72!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451547] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca16500b event --INTERNEL IN--, fwwn 0x54846fb8ca16503f, slot 0xb.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451552] [48869][0000500004202eea][INFO][Convert general disk 0x54846fb8ca16500b event, fwwn = 0x54846fb8ca16503f, phy id = 0xb.][DMI][DAL_FillGeneralEnclDiskEventData,133]
[2014-07-17 23:45:42][  195.451558] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id73!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451563] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165003 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x3.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451568] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id74!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451573] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165004 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x4.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451579] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id75!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451583] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165005 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x5.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451589] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id76!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451594] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165006 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x6.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451599] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id77!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451604] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165007 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x7.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451609] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id78!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451614] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165008 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x8.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451619] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id79!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451624] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca165009 event --IN--, fwwn 0x54846fb8ca16503f, slot 0x9.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451629] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id80!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451634] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca16500a event --IN--, fwwn 0x54846fb8ca16503f, slot 0xa.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.451654] [48869][00005000040502e7][INFO][SendEvent to mod34. Device 5 Event 0 , (DRV_DEVT_IN), Dev type 5,evnt id81!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.451659] [48869][0000500004202ee9][INFO][Receive disk 0x54846fb8ca16500b event --IN--, fwwn 0x54846fb8ca16503f, slot 0xb.][DMI][DAL_DiskEventHandle,446]
[2014-07-17 23:45:42][  195.455412] [48870][0000500004141300][INFO][Resver Port Mem Succeed,size(13200) addr(ffff880073d53000).][ISCSI_TGT][IST_SetupFreePortList,306]
[2014-07-17 23:45:42][  195.455448] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 0.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455453] [48870][0000500004140564][INFO][[EVENT][cpu 8]IST_MgtThread run begin!][ISCSI_TGT][IST_MgtThread,1347]
[2014-07-17 23:45:42][  195.455478] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 1.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455482] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_0  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455505] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 2.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455510] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_1  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455535] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 3.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455539] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_2  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455563] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 4.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455567] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_3  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455590] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 5.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455595] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_4  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455619] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 6.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455624] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_5  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455645] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 7.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455649] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_6  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455670] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 8.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455674] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_7  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455696] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 9.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455701] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_8  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455722] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 10.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455726] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_9  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455748] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 11.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455752] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_10  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455774] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 12.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455778] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_11  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455801] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 13.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455805] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_12  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455826] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 14.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455830] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_13  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455852] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 15.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455856] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_14  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455877] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 16.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455882] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_15  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455902] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 17.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455906] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_16  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455928] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 18.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455932] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_17  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455953] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 19.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455957] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_18  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.455978] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 20.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.455983] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_19  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.456006] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 21.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.456010] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_20  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.456031] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 22.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.456035] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_21  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.456057] [48870][000050000414059a][INFO][[EVENT][cpu 0]Create tx thread 23.][ISCSI_TGT][IST_CreatePerThread,81]
[2014-07-17 23:45:42][  195.456061] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_22  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.456086] [48870][00005000041405a4][INFO][[EVENT][cpu 8]Xmit thread ist_tx_23  running!][ISCSI_TGT][IST_DoXmitThread,725]
[2014-07-17 23:45:42][  195.456090] [48870][000050000414077a][INFO][ISCSI TGT register DIAGNOSE succeed.][ISCSI_TGT][IST_RegDiagnose,1049]
[2014-07-17 23:45:42][  195.456098] [48870][00005000041403bf][INFO][ISCSI TGT register DIAGNOSE to CLI succeed.][ISCSI_TGT][IST_RegDiagnose,1058]
[2014-07-17 23:45:42][  195.456113] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id3!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456119] [48870][000050000405025f][INFO][SndRsp = ffffffffa1d591b0.][DRV_API][DRVAPI_AddSCSITarget,194]
[2014-07-17 23:45:42][  195.456122] [48870][0000500004050260][INFO][XferRdy = ffffffffa1d5b7f0.][DRV_API][DRVAPI_AddSCSITarget,195]
[2014-07-17 23:45:42][  195.456126] [48870][0000500004050261][INFO][AbortCmd = ffffffffa1d58c40.][DRV_API][DRVAPI_AddSCSITarget,197]
[2014-07-17 23:45:42][  195.456130] [48870][0000500004050262][INFO][TskMgmt = ffffffffa1d5a400.][DRV_API][DRVAPI_AddSCSITarget,199]
[2014-07-17 23:45:42][  195.456134] [48870][00005000041405b8][INFO][Load iSCSI module sucessfully.Ret =0.][ISCSI_TGT][ISCSI_RegisterIntf,398]
[2014-07-17 23:45:42][  195.456139] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (22002) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456145] [48870][000050000414172f][INFO][[EVENT][cpu 1]InvalidPort3:0x22002 is filtered.][ISCSI_TGT][IST_PortIsValid,216]
[2014-07-17 23:45:42][  195.456152] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (22002) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.456171] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id4!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456194] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (22001) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456209] [48870][000050000414172f][INFO][[EVENT][cpu 1]InvalidPort2:0x22001 is filtered.][ISCSI_TGT][IST_PortIsValid,216]
[2014-07-17 23:45:42][  195.456226] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (22001) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.456241] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id5!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456257] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (22000) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456267] [48870][000050000414172f][INFO][[EVENT][cpu 1]InvalidPort1:0x22000 is filtered.][ISCSI_TGT][IST_PortIsValid,216]
[2014-07-17 23:45:42][  195.456282] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (22000) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.456307] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id6!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456316] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (20003) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456325] [48870][000050000414055f][INFO][[EVENT][cpu 1]ID=0 port (20003) in send for exe.][ISCSI_TGT][IST_FirePortEvent,1115]
[2014-07-17 23:45:42][  195.456339] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id7!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456346] [48870][0000500004140556][INFO][[EVENT][cpu 8]Portin(0x20003) process begin.][ISCSI_TGT][IST_PortIn,1019]
[2014-07-17 23:45:42][  195.456358] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (20002) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456367] [48870][000050000414055f][INFO][[EVENT][cpu 1]ID=0 port (20002) in send for exe.][ISCSI_TGT][IST_FirePortEvent,1115]
[2014-07-17 23:45:42][  195.456378] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id8!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456383] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (20001) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456395] [48870][000050000414055f][INFO][[EVENT][cpu 1]ID=0 port (20001) in send for exe.][ISCSI_TGT][IST_FirePortEvent,1115]
[2014-07-17 23:45:42][  195.456410] [48870][0000500004141302][INFO][Alloc Sess Mem(194560)(ffffc90014e41000).][ISCSI_TGT][IST_SetupFreeSessionList,501]
[2014-07-17 23:45:42][  195.456415] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id9!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456420] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (20000) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456424] [48870][000050000414055f][INFO][[EVENT][cpu 1]ID=0 port (20000) in send for exe.][ISCSI_TGT][IST_FirePortEvent,1115]
[2014-07-17 23:45:42][  195.456434] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id10!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456438] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f00) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456444] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (21f00) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.456449] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id11!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456456] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f01) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456464] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f01) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456480] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id12!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456490] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f02) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456498] [48870][0000500004141306][INFO][Alloc Conn Mem(74752)for(128) session get(ffffc9001482b000).][ISCSI_TGT][IST_SetupFreeConnList,718]
[2014-07-17 23:45:42][  195.456512] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f02) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456534] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id13!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456549] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f03) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456570] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f03) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456599] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id14!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456626] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f04) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456634] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f04) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456645] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id15!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456661] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f05) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456672] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f05) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456714] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id16!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456723] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f06) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456744] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f06) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456754] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id17!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456775] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f07) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456792] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f07) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456803] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id18!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456822] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (21f08) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.456857] [48870][000050000414055d][INFO][[EVENT][cpu 1]ID=0 port (21f08) is bond port.][ISCSI_TGT][IST_FirePortEvent,1103]
[2014-07-17 23:45:42][  195.456871] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 64 , (ADD_BONDING), Dev type 13,evnt id21!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456884] [48870][000050000414146e][INFO][[EVENT][cpu 1]Bond evt=64 master:0x21f00, slave=0x22001.][ISCSI_TGT][IST_BondingEvent,1313]
[2014-07-17 23:45:42][  195.456898] [48870][000050000414146f][ERR][[EVENT][cpu 1]Bond evt=64 master:0x21f00, slave=0x22001 not valid.][ISCSI_TGT][IST_BondingEvent,1318]
[2014-07-17 23:45:42][  195.456911] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 65 , (DEL_BONDING), Dev type 13,evnt id26!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456927] [48870][000050000414146e][INFO][[EVENT][cpu 1]Bond evt=65 master:0x21f00, slave=0x22001.][ISCSI_TGT][IST_BondingEvent,1313]
[2014-07-17 23:45:42][  195.456953] [48870][000050000414146f][ERR][[EVENT][cpu 1]Bond evt=65 master:0x21f00, slave=0x22001 not valid.][ISCSI_TGT][IST_BondingEvent,1318]
[2014-07-17 23:45:42][  195.456967] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 64 , (ADD_BONDING), Dev type 13,evnt id30!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.456977] [48870][000050000414146e][INFO][[EVENT][cpu 1]Bond evt=64 master:0x21f00, slave=0x22001.][ISCSI_TGT][IST_BondingEvent,1313]
[2014-07-17 23:45:42][  195.456988] [48870][000050000414146f][ERR][[EVENT][cpu 1]Bond evt=64 master:0x21f00, slave=0x22001 not valid.][ISCSI_TGT][IST_BondingEvent,1318]
[2014-07-17 23:45:42][  195.456999] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id33!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457009] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (1f2000) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457024] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (1f2000) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457038] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id34!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457054] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (1f2001) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457065] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (1f2001) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457081] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id35!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457088] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (1f2002) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457095] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (1f2002) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457106] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id36!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457117] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32002) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457125] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32002) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457135] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id37!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457140] [48870][000050000414130d][INFO][Alloc CMD Mem(3564000)(ffffc9001b201000).][ISCSI_TGT][IST_SetupFreeCmdList,885]
[2014-07-17 23:45:42][  195.457150] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32003) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457159] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32003) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457169] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id38!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457183] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32000) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457189] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32000) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457206] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id39!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457212] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32001) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457222] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32001) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457235] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id40!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457252] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32004) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457265] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32004) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457277] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id41!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457293] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32005) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457302] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32005) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457320] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id42!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457335] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32006) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457343] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32006) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457362] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id43!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457370] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32007) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457378] [48870][000050000414055c][INFO][[EVENT][cpu 8]PortIN(0x20003) process succeed.][ISCSI_TGT][IST_PortIn,1074]
[2014-07-17 23:45:42][  195.457382] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32007) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457389] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id44!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457393] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32008) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457397] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32008) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457402] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id45!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457406] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32009) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457412] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32009) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457418] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id46!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457423] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200a) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457427] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200a) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457434] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id47!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457453] [48870][0000500004140556][INFO][[EVENT][cpu 8]Portin(0x20002) process begin.][ISCSI_TGT][IST_PortIn,1019]
[2014-07-17 23:45:42][  195.457464] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200b) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457468] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200b) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457473] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id48!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457477] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200c) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457481] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200c) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457486] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id49!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457490] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200d) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457494] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200d) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457517] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id50!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457521] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200e) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457525] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200e) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457532] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id51!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457556] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (3200f) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457571] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (3200f) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457583] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id52!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457587] [48870][0000500004141302][INFO][Alloc Sess Mem(194560)(ffffc90015124000).][ISCSI_TGT][IST_SetupFreeSessionList,501]
[2014-07-17 23:45:42][  195.457599] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32010) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457606] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32010) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457620] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id53!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457627] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32011) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457631] [48870][0000500004141306][INFO][Alloc Conn Mem(74752)for(128) session get(ffffc90014ddd000).][ISCSI_TGT][IST_SetupFreeConnList,718]
[2014-07-17 23:45:42][  195.457649] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32011) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457668] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id54!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457679] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32012) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457685] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32012) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.457696] [48870][00005000040502e7][INFO][SendEvent to mod20. Device 13 Event 0 , (DRV_DEVT_IN), Dev type 13,evnt id55!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:42][  195.457703] [48870][0000500004140561][INFO][[EVENT][cpu 1]ID=0 port (32013) begin exe.][ISCSI_TGT][IST_PortInEvent,1176]
[2014-07-17 23:45:42][  195.457724] [48870][000050000414055e][INFO][[EVENT][cpu 1]ID=0 port (32013) isnnot a iscsi port.][ISCSI_TGT][IST_FirePortEvent,1111]
[2014-07-17 23:45:42][  195.458274] [48870][000050000414130d][INFO][Alloc CMD Mem(3564000)(ffffc9001b569000).][ISCSI_TGT][IST_SetupFreeCmdList,885]
[2014-07-17 23:45:42][  195.458512] [48870][000050000414055c][INFO][[EVENT][cpu 8]PortIN(0x20002) process succeed.][ISCSI_TGT][IST_PortIn,1074]
[2014-07-17 23:45:42][  195.458517] [48870][0000500004140556][INFO][[EVENT][cpu 8]Portin(0x20001) process begin.][ISCSI_TGT][IST_PortIn,1019]
[2014-07-17 23:45:42][  195.458566] [48870][0000500004141302][INFO][Alloc Sess Mem(194560)(ffffc90015155000).][ISCSI_TGT][IST_SetupFreeSessionList,501]
[2014-07-17 23:45:42][  195.458609] [48870][0000500004141306][INFO][Alloc Conn Mem(74752)for(128) session get(ffffc90014f81000).][ISCSI_TGT][IST_SetupFreeConnList,718]
[2014-07-17 23:45:42][  195.459255] [48871][000050000414130d][INFO][Alloc CMD Mem(3564000)(ffffc9001b8d1000).][ISCSI_TGT][IST_SetupFreeCmdList,885]
[2014-07-17 23:45:42][  195.459493] [48871][000050000414055c][INFO][[EVENT][cpu 8]PortIN(0x20001) process succeed.][ISCSI_TGT][IST_PortIn,1074]
[2014-07-17 23:45:42][  195.459497] [48871][0000500004140556][INFO][[EVENT][cpu 8]Portin(0x20000) process begin.][ISCSI_TGT][IST_PortIn,1019]
[2014-07-17 23:45:42][  195.459550] [48871][0000500004141302][INFO][Alloc Sess Mem(194560)(ffffc90015186000).][ISCSI_TGT][IST_SetupFreeSessionList,501]
[2014-07-17 23:45:42][  195.459592] [48871][0000500004141306][INFO][Alloc Conn Mem(74752)for(128) session get(ffffc90014f95000).][ISCSI_TGT][IST_SetupFreeConnList,718]
[2014-07-17 23:45:42][  195.460233] [48871][000050000414130d][INFO][Alloc CMD Mem(3564000)(ffffc9001bc39000).][ISCSI_TGT][IST_SetupFreeCmdList,885]
[2014-07-17 23:45:42][  195.460471] [48871][000050000414055c][INFO][[EVENT][cpu 8]PortIN(0x20000) process succeed.][ISCSI_TGT][IST_PortIn,1074]
[2014-07-17 23:45:42][  195.466941] [48873][0000500004140575][INFO][[EVENT][cpu 0]Modules Init Succeed!][ISCSI_TGT][IST_ModuleInit,3428]
[2014-07-17 23:45:42][  195.569948] [48898][000050000414169e][INFO][[EVENT][cpu 0]BEGIN:iscsi_sw.ko insmod.][ISCSI_TGT][ISCSI_TransInit,1077]
[2014-07-17 23:45:42][  195.569955] [48898][00005000041416ab][INFO][[EVENT][cpu 0]Begin reg rans :1.][ISCSI_TGT][IST_RegTrans,367]
[2014-07-17 23:45:42][  195.569960] [48898][0000500004141692][INFO][[EVENT][cpu 0]Trans(ffffffffa1ee74a8)  RefCnt=40000000.][ISCSI_TGT][ISCSI_TagTrans,67]
[2014-07-17 23:45:42][  195.569966] [48898][0000500004141698][INFO][[EVENT][cpu 0]PstTrans(ffffffffa1ee74a8) type(1) pstOps=ffffffffa1efe000 registe succeed.][ISCSI_TGT][IST_RegTrans,377]
[2014-07-17 23:45:42][  195.569970] [48898][000050000414169f][INFO][[EVENT][cpu 0]END:iscsi_sw.ko  insmod.][ISCSI_TGT][ISCSI_TransInit,1089]
[2014-07-17 23:45:42][  195.688994] [48928][0000500004210004][INFO][BSP-Adapter Version is 200-001-01-0029.][BSPA][BSPA_Init,165]
[2014-07-17 23:45:42][  195.689004] [48928][0000500004210067][INFO][OS Malloc CPU memory success.][BSPA][BSPA_CpuMemZeroMalloc,78]
[2014-07-17 23:45:42][  195.689158] [48928][00005000042100a2][ERR][BSPA get cpu bus speed failed.][BSPA][BSPA_CpuDataInit,996]
[2014-07-17 23:45:42][  195.689162] [48928][00005000042100a7][INFO][Cpu0 data init success.][BSPA][BSPA_CpuDataInit,1011]
[2014-07-17 23:45:42][  195.689166] [48928][00005000042100af][INFO][CPU 0 object init success.][BSPA][BSPA_CpuInit,1120]
[2014-07-17 23:45:42][  195.689170] [48928][00005000042100b0][ERR][CPU object init success.][BSPA][BSPA_CpuInit,1123]
[2014-07-17 23:45:42][  195.689174] [48928][00005000042003e8][INFO][Driver 37 register cpu op][DMI][DAL_RegisterCpuOp,718]
[2014-07-17 23:45:42][  195.689178] [48928][00005000042100a9][INFO][Register cpu ops success.][BSPA][BSPA_CpuOpsRegister,1042]
[2014-07-17 23:45:42][  195.689191] [48928][0000500004210193][INFO][OS Malloc DIMM memory success.][BSPA][BSPA_DimmMemZeroMalloc,159]
[2014-07-17 23:45:42][  195.689220] [48928][540004060680][INF][Dimm Slot info:15(0).][BSP][SPV2R1_G.otInfo,3720][insmod]
[2014-07-17 23:45:43][  196.396535] [49105][54000406064b][INF][Read dimm size 8192 MB.][BSP][SP7_GetDimmInfo,3501][insmod]
[2014-07-17 23:45:43][  197.081202] [49277][54000406064b][INF][Read dimm size 8192 MB.][BSP][SP7_GetDimmInfo,3501][insmod]
[2014-07-17 23:45:44][  197.765867] [49448][54000406064b][INF][Read dimm size 8192 MB.][BSP][SP7_GetDimmInfo,3501][insmod]
[2014-07-17 23:45:44][  197.765971] [49448][00005000042003e8][INFO][Driver 37 register dimm op][DMI][DAL_RegisterDimmOp,779]
[2014-07-17 23:45:44][  197.765975] [49448][00005000042101c9][INFO][Register dimm ops success.][BSPA][BSPA_DIMMOpsRegister,1586]
[2014-07-17 23:45:44][  197.765978] [49448][00005000042101f7][INFO][Pruduct type is not support.][BSPA][BSPA_TempInit,165]
[2014-07-17 23:45:44][  197.765982] [49448][00005000042101fa][INFO][Pruduct type is not support.][BSPA][BSPA_TempOpsRegister,199]
[2014-07-17 23:45:44][  197.766009] [49448][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][insmod]
[2014-07-17 23:45:44][  197.766064] [49448][0000500004210267][INFO][BSPA get bios0 version is 10.01.05T06.][BSPA][BSPA_BiosDataInit,211]
[2014-07-17 23:45:44][  197.766068] [49448][00005000042003e8][INFO][Driver 37 register bios op][DMI][DAL_RegisterBiosOp,1117]
[2014-07-17 23:45:44][  197.766072] [49448][000050000421026b][INFO][Register bios ops success.][BSPA][BSPA_BiosOpsRegister,288]
[2014-07-17 23:45:44][  197.766089] [49448][000050000421032c][INFO][BSPA  total mem size 24 GB .][BSPA][BSPA_SysDataInit,316]
[2014-07-17 23:45:44][  197.766092] [49448][000050000421032e][INFO][BSPA sys  data init success.][BSPA][BSPA_SysInit,369]
[2014-07-17 23:45:44][  197.766097] [49448][000050000421032f][INFO][BSPA   sys init success.][BSPA][BSPA_SysInit,373]
[2014-07-17 23:45:44][  197.766102] [49448][00005000042003e8][INFO][Driver 37 register sys op][DMI][DAL_RegisterSysOp,112]
[2014-07-17 23:45:44][  197.766106] [49448][0000500004210331][INFO][Register sys ops success.][BSPA][BSPA_SysOpsRegister,401]
[2014-07-17 23:45:44][  197.774302] [49450][00005000042102c4][INFO][BSPA get uart link state is 1.][BSPA][BSPA_UartDataInit,170]
[2014-07-17 23:45:44][  197.774307] [49450][00005000042003e8][INFO][Driver 37 register uart op][DMI][DAL_RegisterUartOp,1342]
[2014-07-17 23:45:44][  197.774311] [49450][00005000042102c8][INFO][Register uart ops success.][BSPA][BSPA_PortOpsRegister,247]
[2014-07-17 23:45:44][  197.774317] [49450][540004060fb0][INF][Begin To Register Handler For Interrupt:0x2.][BSP][SPV2R1_R.andler,4307][insmod]
[2014-07-17 23:45:44][  197.774322] [49450][0000500004210133][INFO][BSPA install pcie hot plug gpe handler success.][BSPA][BSPA_RegisterPCIEHotPlug,545]
[2014-07-17 23:45:44][  197.774329] [49450][540004060fb0][INF][Begin To Register Handler For Interrupt:0x5.][BSP][SPV2R1_R.andler,4307][insmod]
[2014-07-17 23:45:44][  197.774334] [49450][0000500004210137][INFO][BSP install power off gpe handler success.][BSPA][BSPA_RegisterPowerButton,589]
[2014-07-17 23:45:44][  197.774340] [49450][00005000042003e8][INFO][Driver 37 register fru op.][DMI][DAL_RegisterFruOp,182]
[2014-07-17 23:45:44][  197.774344] [49450][00005000042102c8][INFO][Register Fru ops success.][BSPA][BSPA_FruOpsRegister,313]
[2014-07-17 23:45:44][  197.774349] [49450][00005000042102c6][INFO][Encl ops init success!][BSPA][BSPA_EnclInit,223]
[2014-07-17 23:45:44][  197.774354] [49450][00005000042003e8][INFO][Driver 37 register encl op][DMI][DAL_RegisterEnclOp,122]
[2014-07-17 23:45:44][  197.774358] [49450][00005000042102c8][INFO][Register Encl ops success.][BSPA][BSPA_EnclOpsRegister,167]
[2014-07-17 23:45:44][  197.774758] [49450][00005000040b0024][INFO][the chip err device is 8725 10b5[3:0:0]][PCIE_AER][PCIEAER_RecChipErr,736]
[2014-07-17 23:45:44][  197.774764] [49450][00005000040b0379][ERR][Device(3:0.0) is not end point][PCIE_AER][PCIEAER_FindOBDSPForEndpoint,397]
[2014-07-17 23:45:44][  197.774769] [49450][00005000040b0026][INFO][the chip err device is 8725 10b5[3:0]][PCIE_AER][PCIEAER_RecChipErr,750]
[2014-07-17 23:45:44][  197.774776] [49450][00005000040b0018][WARN][Do chip error recovery ...][PCIE_AER][PCIEAER_DoChipErr,426]
[2014-07-17 23:45:44][  197.774845] [49450][00005000040502e7][INFO][SendEvent to mod34. Device 3 Event 38 , (DRV_DEVT_PCIEERR_INREPAIR), Dev type 3,evnt id82!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:44][  197.774878] [49450][00005000040b02cc][INFO][Root Port(3:0.0) Recovered! ][PCIE_AER][PCIEAER_RecoverPCIESwitchCSRRegs,1546]
[2014-07-17 23:45:44][  197.774883] [49450][00005000040b02d0][INFO][Iterate Recovered Root Port Tree!][PCIE_AER][PCIEAER_RecoverPCIESwitchCSRRegs,1556]
[2014-07-17 23:45:44][  197.775186] [49450][00005000040b0aaa][INFO][Stop NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2069]
[2014-07-17 23:45:44][  197.775194] [49450][0000500004090aaa][INFO][Notify xnet nt(3:0.0) link down][PCIE][PCIECORE_NotifyXnetLinkStatus,517]
[2014-07-17 23:45:44][  197.775251] [49450][0000500004090470][INFO][Change AER--Reg value:00000830 0k!][PCIE][PCIECORE_ControlErrReport,139]
[2014-07-17 23:45:44][  197.775256] [49450][0000500004090aaa][WARN][Kill thread(PCIE_NTTHREAD_0) .][PCIE][PCIECORE_KillNtThreadByChannel,502]
[2014-07-17 23:45:44][  197.775701] [49450][00005000040501d2][ERR][GetSysWWN Function Pointer is NULL!][DRV_API][DRV_API_GetSysWwn,43]
[2014-07-17 23:45:44][  197.775998] [sched_delayed] sched: RT throttling activated
[2014-07-17 23:45:44][  197.970033] [49499][0000500004200000][INFO][DMI Module Init Start][DMI][DMI_ModuleInit,135]
[2014-07-17 23:45:44][  197.970046] [49499][0000500004200000][INFO][Init heal module succeed.][DMI][DMI_HealInit,56]
[2014-07-17 23:45:44][  197.970067] [49499][0000500004200000][INFO][register dpl list debug command][DMI][DPL_DebugCmdInit,312]
[2014-07-17 23:45:44][  197.970072] [49499][0000500004200000][WARN][Debug cmd [ls] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970077] [49499][0000500004200000][WARN][Debug cmd [showver] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970081] [49499][0000500004200000][WARN][Debug cmd [showglobal] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970086] [49499][0000500004200000][WARN][Debug cmd [poweroff] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970091] [49499][0000500004200000][WARN][Debug cmd [setstartfinish] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970095] [49499][0000500004200000][WARN][Debug cmd [routine] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970100] [49499][0000500004200000][WARN][Debug cmd [setlink] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970105] [49499][0000500004200000][WARN][Debug cmd [loglevel] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970109] [49499][0000500004200000][WARN][Debug cmd [enclupgrade] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970114] [49499][0000500004200000][WARN][Debug cmd [enclvercheck] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970119] [49499][0000500004200000][WARN][Debug cmd [fruupgrade] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970123] [49499][0000500004200000][WARN][Debug cmd [fruvercheck] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970128] [49499][0000500004200000][WARN][Debug cmd [verupdate] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970133] [49499][0000500004200000][WARN][Debug cmd [showproconfig] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970138] [49499][0000500004200000][WARN][Debug cmd [showhealtask] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970142] [49499][0000500004200000][WARN][Debug cmd [sethealdead] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970147] [49499][0000500004200000][INFO][register dpl enclosure debug command][DMI][DPL_EnclDebugCmdInit,71]
[2014-07-17 23:45:44][  197.970151] [49499][0000500004200000][WARN][Debug cmd [showtopo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970156] [49499][0000500004200000][WARN][Debug cmd [showencl] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970160] [49499][0000500004200000][INFO][register dlp fru debug command][DMI][DPL_FruDebugCmdInit,204]
[2014-07-17 23:45:44][  197.970165] [49499][0000500004200000][WARN][Debug cmd [showfru] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970170] [49499][0000500004200000][WARN][Debug cmd [setfrusupport] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970174] [49499][0000500004200000][WARN][Debug cmd [showfrusupport] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970179] [49499][0000500004200000][WARN][Debug cmd [sendcardbutton] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970184] [49499][0000500004200000][WARN][Debug cmd [alarm] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970188] [49499][0000500004200000][INFO][register dpl device debug command][DMI][DPL_DeviceDebugCmdInit,65]
[2014-07-17 23:45:44][  197.970193] [49499][0000500004200000][WARN][Debug cmd [showdev] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970197] [49499][0000500004200000][WARN][Debug cmd [setdev] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970204] [49499][0000500004200000][INFO][Register msc enclosure debug command.][DMI][MSC_EnclosureDebugCmdInit,2881]
[2014-07-17 23:45:44][  197.970209] [49499][0000500004200000][WARN][Debug cmd [structsize] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970214] [49499][0000500004200000][WARN][Debug cmd [nodeinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970218] [49499][0000500004200000][WARN][Debug cmd [enclinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970223] [49499][0000500004200000][WARN][Debug cmd [ctrlinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970227] [49499][0000500004200000][WARN][Debug cmd [cpuinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970232] [49499][0000500004200000][WARN][Debug cmd [dimminfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970237] [49499][0000500004200000][WARN][Debug cmd [showtemp] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970241] [49499][0000500004200000][WARN][Debug cmd [showvolt] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970246] [49499][0000500004200000][WARN][Debug cmd [showportrec] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970251] [49499][0000500004200000][WARN][Debug cmd [showcascadeoverrun] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970255] [49499][0000500004200000][WARN][Debug cmd [bbuinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970260] [49499][0000500004200000][WARN][Debug cmd [faninfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970264] [49499][0000500004200000][WARN][Debug cmd [portcfgdb] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970269] [49499][0000500004200000][WARN][Debug cmd [intfboard] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970274] [49499][0000500004200000][WARN][Debug cmd [wifiinfo] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970278] [49499][0000500004200000][WARN][Debug cmd [clearroute] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970283] [49499][0000500004200000][WARN][Debug cmd [showbondport] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970288] [49499][0000500004200000][WARN][Debug cmd [showsnap] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970292] [49499][0000500004200000][WARN][Debug cmd [ethshared] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970297] [49499][0000500004200000][WARN][Debug cmd [getmgtip] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970302] [49499][0000500004200000][WARN][Debug cmd [setmgtip] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970306] [49499][0000500004200000][WARN][Debug cmd [notifyos] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970311] [49499][0000500004200000][WARN][Debug cmd [hssdnotify] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970316] [49499][0000500004200000][WARN][Debug cmd [showpowercost] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970321] [49499][0000500004200000][WARN][Debug cmd [modpowercost] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970325] [49499][0000500004200000][WARN][Debug cmd [showportiocnt] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970330] [49499][0000500004200000][WARN][Debug cmd [ntfctrlstatus] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970335] [49499][0000500004200000][WARN][Debug cmd [stepupcpu] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970340] [49499][0000500004200000][WARN][Debug cmd [stepdowncpu] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970344] [49499][0000500004200000][WARN][Debug cmd [powersimulate] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970349] [49499][0000500004200000][WARN][Debug cmd [gethwstatus] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970354] [49499][0000500004200000][WARN][Debug cmd [getbufferingswitch] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970359] [49499][0000500004200000][WARN][Debug cmd [setbufferingswitch] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970370] [49499][0000500004200000][INFO][Register dmi cli debug command.][DMI][DMI_DoCliDebugCmdInit,2928]
[2014-07-17 23:45:44][  197.970374] [49499][0000500004200000][WARN][Debug cmd [getbufferingswitch] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970379] [49499][0000500004200000][WARN][Debug cmd [setbufferingswitch] Handler register Success.][DMI][DMI_RegisterDebugCmd,168]
[2014-07-17 23:45:44][  197.970398] [49499][0000500004200000][INFO][Create thread(0) for probe enclosure success, pid: 13361.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970409] [49499][0000500004200000][INFO][Create thread(1) for probe enclosure success, pid: 13362.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970421] [49499][0000500004200000][INFO][Create thread(2) for probe enclosure success, pid: 13363.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970432] [49499][0000500004200000][INFO][Create thread(3) for probe enclosure success, pid: 13364.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970442] [49499][0000500004200000][INFO][Create thread(4) for probe enclosure success, pid: 13365.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970456] [49499][0000500004200000][INFO][Create thread(5) for probe enclosure success, pid: 13366.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970468] [49499][0000500004200000][INFO][Create thread(6) for probe enclosure success, pid: 13367.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970480] [49499][0000500004200000][INFO][Create thread(7) for probe enclosure success, pid: 13368.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970492] [49499][0000500004200000][INFO][Create thread(8) for probe enclosure success, pid: 13369.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970503] [49499][0000500004200000][INFO][Create thread(9) for probe enclosure success, pid: 13370.][DMI][DMI_InitProbeEnclThread,3129]
[2014-07-17 23:45:44][  197.970507] [49499][0000500004200000][INFO][Create probe enclosure thread success.][DMI][DMI_ModuleInit,197]
[2014-07-17 23:45:44][  197.970520] [49499][0000500004200000][INFO][Start Routine Thread Encl Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970526] [49499][0000500004200000][INFO][Rregister healtask Routine_Encl(0) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970538] [49499][0000500004200000][INFO][Start Routine Thread Fru Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970543] [49499][0000500004200000][INFO][Rregister healtask Routine_Fru(1) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970554] [49499][0000500004200000][INFO][Start Routine Thread VTA Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970560] [49499][0000500004200000][INFO][Rregister healtask Routine_VTA(2) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970575] [49499][0000500004200000][INFO][Start Routine Thread FPB Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970580] [49499][0000500004200000][INFO][Rregister healtask Routine_FPB(3) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970591] [49499][0000500004200000][INFO][Start Routine Thread Chip Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970597] [49499][0000500004200000][INFO][Rregister healtask Routine_Chip(4) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970609] [49499][0000500004200000][INFO][Start Routine Thread Port Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970614] [49499][0000500004200000][INFO][Rregister healtask Routine_Port(5) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970626] [49499][0000500004200000][INFO][Start Routine Thread SaPc Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970632] [49499][0000500004200000][INFO][Rregister healtask Routine_SaPc(6) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970645] [49499][0000500004200000][INFO][Start Routine Thread SFP Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970650] [49499][0000500004200000][INFO][Rregister healtask Routine_SFP(7) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970663] [49499][0000500004200000][INFO][Start Routine Thread Misc Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970668] [49499][0000500004200000][INFO][Rregister healtask Routine_Misc(8) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970680] [49499][0000500004200000][INFO][Start Routine Thread Disk Success][DMI][DPL_StartRoutineThread,359]
[2014-07-17 23:45:44][  197.970686] [49499][0000500004200000][INFO][Rregister healtask Routine_Disk(9) sim 0 status 1 succeed.][DMI][DMI_RouteHealRegister,277]
[2014-07-17 23:45:44][  197.970690] [49499][0000500004200000][INFO][Create routine thread success.][DMI][DMI_ModuleInit,213]
[2014-07-17 23:45:44][  197.970702] [49499][0000500004200000][INFO][Start PowerCost Thread Success.][DMI][DMI_PowerCostInit,1159]
[2014-07-17 23:45:44][  197.970706] [49499][0000500004200000][INFO][Driver adapter register to frame begin.][DMI][DADP_RegisterIntf,87]
[2014-07-17 23:45:44][  197.970711] [49499][00005000040501d4][INFO][DEV Regist API.][DRV_API][DRV_DevRegIntfTemplate,145]
[2014-07-17 23:45:44][  197.970715] [49499][00005000040501d5][INFO][GetSysWWN Pointer = ffffffffa203eb20.][DRV_API][DRV_DevRegIntfTemplate,146]
[2014-07-17 23:45:44][  197.970719] [49499][00005000040501d6][INFO][GetNextEtherIpConfig Pointer =           (null).][DRV_API][DRV_DevRegIntfTemplate,147]
[2014-07-17 23:45:44][  197.970723] [49499][00005000040501d7][INFO][GetPortIP Pointer = ffffffffa2041fd0.][DRV_API][DRV_DevRegIntfTemplate,148]
[2014-07-17 23:45:44][  197.970728] [49499][00005000040501d8][INFO][GetPortRoute Pointer = ffffffffa2041200.][DRV_API][DRV_DevRegIntfTemplate,149]
[2014-07-17 23:45:44][  197.970732] [49499][0000500004200000][INFO][Driver adapter register to frame finished.][DMI][DADP_RegisterIntf,101]
[2014-07-17 23:45:44][  197.970737] [49499][00005000042003e8][INFO][Dmi register obj creater.][DMI][DAL_RegisterObjCreater,81]
[2014-07-17 23:45:44][  197.970740] [49499][00005000042003e8][INFO][Notify ehp start event handle.][DMI][DAL_RegisterObjCreater,84]
[2014-07-17 23:45:44][  197.970746] [49499][0000500004200000][INFO][Register message handler success, pid: 730.][DMI][DMI_MsgHandlerInit,657]
[2014-07-17 23:45:44][  197.970760] [49499][0000500004200000][INFO][Create message handler thread success.][DMI][DMI_MsgHandlerInit,661]
[2014-07-17 23:45:44][  197.970772] [49499][0000500004200000][INFO][Create report handler thread success.][DMI][DMI_ReportInit,547]
[2014-07-17 23:45:44][  197.970780] [49499][0000500004200000][INFO][DMI Module Init End][DMI][DMI_ModuleInit,284]
[2014-07-17 23:45:44][  197.981654] [49502][0000500004200000][INFO][Enter Thread Encl, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981662] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981668] [49502][0000500004200000][INFO][Enter Thread Fru, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981674] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981679] [49502][0000500004200000][INFO][Enter Thread VTA, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981685] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981691] [49502][0000500004200000][INFO][Enter Thread FPB, Same Type Period 1s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981696] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981703] [49502][0000500004200000][INFO][Enter Thread Chip, Same Type Period 1s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981708] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981714] [49502][0000500004200000][INFO][Enter Thread Port, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981720] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981726] [49502][0000500004200000][INFO][Enter Thread SaPc, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981732] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981737] [49502][0000500004200000][INFO][Enter Thread SFP, Same Type Period 0s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981742] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981749] [49502][0000500004200000][INFO][Enter Thread Misc, Same Type Period 1s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981754] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  197.981760] [49502][0000500004200000][INFO][Enter Thread Disk, Same Type Period 1s][DMI][DPL_RoutineThread,840]
[2014-07-17 23:45:44][  197.981765] [49502][0000500004200000][INFO][Set Thread Cpu Affinity Ret 0][DMI][DPL_RoutineThread,848]
[2014-07-17 23:45:44][  198.015736] [49511][0000500004203039][INFO][EHP need to register scsi.][DMI][EHP_NeedRegisterScsi,1288]
[2014-07-17 23:45:44][  198.015747] [49511][0000500004203039][INFO][EHP Sdev did not exist, scsi_add_device.][DMI][EHP_RegisterScsiDev,470]
[2014-07-17 23:45:44][  198.015817] [49511][0000500004050214][INFO][SCSI alloc slave, add:(6:0:0:0).][DRV_API][DRV_ScsiSlaveAlloc,1499]
[2014-07-17 23:45:44][  198.015831] [49511][000050000410027c][INFO][Card:0 host:6 scsi:0 slave alloc,change dev:0x54846fb8ca16513e(ST:4 ref count:1,0,2) queue depth to 32][SAS_INI][SAL_SlaveAlloc,678]
[2014-07-17 23:45:44][  198.015851] [49511][00005000040502e7][INFO][SendEvent to mod36. Device 5 Event 66 , (ADJUST_DEPTH), Dev type 5,evnt id84!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:44][  198.016685] DRHD: handling fault status reg 102
[2014-07-17 23:45:44][  198.016692] DMAR:[DMA Write] Request device [0a:00.0] fault addr 67ee0000 
[2014-07-17 23:45:44][  198.016694] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:44][  198.016736] scsi scan: INQUIRY result too short (5), using 36
[2014-07-17 23:45:44][  198.016744] scsi 6:0:0:0: Direct-Access                                    PQ: 0 ANSI: 0
[2014-07-17 23:45:44][  198.016943] sd 6:0:0:0: Attached scsi generic sg2 type 0
[2014-07-17 23:45:44][  198.016992] [49511][0000500004203039][INFO][EHP OSAL_scsi_add_device return ok.][DMI][EHP_RegisterScsiDev,475]
[2014-07-17 23:45:44][  198.016997] [49511][0000500004203039][INFO][EHP Register scsi device (6:0:0:0) OK.][DMI][EHP_RegisterScsiDev,496]
[2014-07-17 23:45:44][  198.017006] [49511][0000500004203039][INFO][EHP begin to report special frame][DMI][EHP_ProcessControllerFrameIn,1224]
[2014-07-17 23:45:44][  198.017012] [49511][0000500004203039][INFO][Encl 0x54846fb8ca16503f FRAMESTATE = 1! ][DMI][EHP_NotifyDMIFrameInEvent,1006]
[2014-07-17 23:45:44][  198.017016] [49511][00005000042003e8][INFO][Alloc dmi encl][DMI][DAL_AllocDmiEncl,339]
[2014-07-17 23:45:44][  198.017024] [49511][0000500004203039][INFO][DAL_AllocDmiEncl Successed! WWN: 0x54846fb8ca16503f, FrameState: 1][DMI][EHP_NotifyDMIFrameInEvent,1022]
[2014-07-17 23:45:44][  198.017030] [49511][00005000042003e8][INFO][Add dmi encl 0x54846fb8ca16503f][DMI][DAL_AddDmiEncl,396]
[2014-07-17 23:45:44][  198.017035] [49511][0000500004200000][INFO][Add enclosure 0x54846fb8ca16503f.][DMI][DMI_AddEnclObj,2159]
[2014-07-17 23:45:44][  198.017039] [49511][0000500004200000][INFO][Ctrl enclosure 0x54846fb8ca16503f in][DMI][DMI_AddEnclObj,2167]
[2014-07-17 23:45:44][  198.017046] [49511][0000500004203039][INFO][EHP DAL_AddDmiEncl Successed! WWN: 0x54846fb8ca16503f, FrameState: 3][DMI][EHP_NotifyDMIFrameInEvent,1049]
[2014-07-17 23:45:44][  198.017052] [49511][0000500004200000][INFO][Start probe ctrl enclosure 0x54846fb8ca16503f][DMI][DMI_ProbeEnclThread,2007]
[2014-07-17 23:45:44][  198.017057] [49511][0000500004203039][INFO][Process FrameIN Event Successed, wwn 0x54846fb8ca16503f.][DMI][EHP_ProcessFrameEvent,1668]
[2014-07-17 23:45:44][  198.017235] [49511][00005000041002b0][ERR][msg:ffffc90016964040(uni id:0xffff8800662a7d80) sense len:18,resp len:0(status:0x2)][SAS_INI][Quark_FillSSPIURsp,1419]
[2014-07-17 23:45:44][  198.017243] [49511][000050000410022b][WARN][Msg:ffffc90016964040(Unique Id:0xffff8800662a7d80,CDB:0x25) to Dev:0x54846fb8ca16513e(ST:4) return to midlayer(result:0x2)][SAS_INI][SAL_MsgDone,746]
[2014-07-17 23:45:44][  198.020203] DRHD: handling fault status reg 202
[2014-07-17 23:45:44][  198.020209] DMAR:[DMA Write] Request device [0a:00.0] fault addr 4f096000 
[2014-07-17 23:45:44][  198.020210] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:44][  198.020570] [49512][000050000410022b][WARN][Msg:ffffc90016965180(Unique Id:0xffff8800662a7c80,CDB:0x25) to Dev:0x54846fb8ca16513e(ST:4) return to midlayer(result:0x2)][SAS_INI][SAL_MsgDone,746]
[2014-07-17 23:45:44][  198.020787] DRHD: handling fault status reg 302
[2014-07-17 23:45:44][  198.020792] DMAR:[DMA Write] Request device [0a:00.0] fault addr 4f096000 
[2014-07-17 23:45:44][  198.020793] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:44][  198.021005] [49512][000050000410022b][WARN][Msg:ffffc900169662c0(Unique Id:0xffff8800662a7b80,CDB:0x25) to Dev:0x54846fb8ca16513e(ST:4) return to midlayer(result:0x2)][SAS_INI][SAL_MsgDone,746]
[2014-07-17 23:45:44][  198.021020] sd 6:0:0:0: [sdc] READ CAPACITY failed
[2014-07-17 23:45:44][  198.021024] sd 6:0:0:0: [sdc]  Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[2014-07-17 23:45:44][  198.021029] sd 6:0:0:0: [sdc]  Sense Key : Illegal Request [current] 
[2014-07-17 23:45:44][  198.021034] sd 6:0:0:0: [sdc]  Add. Sense: Invalid command operation code
[2014-07-17 23:45:44][  198.021522] DRHD: handling fault status reg 402
[2014-07-17 23:45:44][  198.021527] DMAR:[DMA Write] Request device [0a:00.0] fault addr 4f096000 
[2014-07-17 23:45:44][  198.021529] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:44][  198.021719] [49512][000050000410022b][WARN][Msg:ffffc9001695ea00(Unique Id:0xffff8800662a7a80,CDB:0x1a) to Dev:0x54846fb8ca16513e(ST:4) return to midlayer(result:0x2)][SAS_INI][SAL_MsgDone,746]
[2014-07-17 23:45:44][  198.022049] DRHD: handling fault status reg 502
[2014-07-17 23:45:44][  198.022053] DMAR:[DMA Write] Request device [0a:00.0] fault addr 4f096000 
[2014-07-17 23:45:44][  198.022055] DMAR:[fault reason 05] PTE Write access is not set
[2014-07-17 23:45:44][  198.022150] [49512][00005000042003e8][INFO][Get encl Logic type success, logictype=1.][DMI][DAL_ProbeEncl,360]
[2014-07-17 23:45:44][  198.022158] [49512][00005000042003e8][INFO][Probe encl mcu type 1, encl type 0.][DMI][DAL_ProbeEncl,382]
[2014-07-17 23:45:44][  198.022205] [49512][0000500004200000][INFO][Encl type 0, not support this func.][DMI][DAL_GetEnclMultiFruMap,461]
[2014-07-17 23:45:44][  198.022209] [49512][0000500004200457][INFO][Get encl multi fru map failed.][DMI][DAL_GetEnclConf,654]
[2014-07-17 23:45:44][  198.022220] [49512][00005000042003e8][INFO][DAL_AddFru][DMI][DAL_AddFru,152]
[2014-07-17 23:45:44][  198.022224] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022229] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x200.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022245] [49512][0000500004200000][INFO][Add Fru  0x200 logic 2 type 1(1:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022250] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022254] [49512][00005000042003e8][INFO][Add dmi fru 0x200, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022259] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022263] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x1000.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022270] [49512][0000500004200000][INFO][Add Fru  0x1000 logic 10 type 1(4:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022273] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022277] [49512][00005000042003e8][INFO][Add dmi fru 0x1000, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022281] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022285] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x1001.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022291] [49512][0000500004200000][INFO][Add Fru  0x1001 logic 10 type 1(4:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022295] [49512][0000500004200000][INFO][(2:2)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022299] [49512][00005000042003e8][INFO][Add dmi fru 0x1001, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022303] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022308] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x2000.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022315] [49512][0000500004200000][INFO][Add Fru  0x2000 logic 20 type 1(5:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022320] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022325] [49512][00005000042003e8][INFO][Add dmi fru 0x2000, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022328] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022333] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x2001.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022338] [49512][0000500004200000][INFO][Add Fru  0x2001 logic 20 type 1(5:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022351] [49512][0000500004200000][INFO][(2:2)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022354] sd 6:0:0:0: [sdc] Test WP failed, assume Write Enabled
[2014-07-17 23:45:44][  198.022359] [49512][00005000042003e8][INFO][Add dmi fru 0x2001, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022362] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022367] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x4000.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022373] [49512][0000500004200000][INFO][Add Fru  0x4000 logic 40 type 1(6:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022377] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022381] [49512][00005000042003e8][INFO][Add dmi fru 0x4000, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022385] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022390] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x4001.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022397] [49512][0000500004200000][INFO][Add Fru  0x4001 logic 40 type 1(6:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022401] [49512][0000500004200000][INFO][(2:2)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022405] [49512][00005000042003e8][INFO][Add dmi fru 0x4001, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022409] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022414] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x4002.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022421] [49512][0000500004200000][INFO][Add Fru  0x4002 logic 40 type 1(6:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022425] [49512][0000500004200000][INFO][(3:3)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022429] [49512][00005000042003e8][INFO][Add dmi fru 0x4002, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022432] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022443] [49512][0000500004200000][INFO][Encl type 0, mgmt board hp notify 1.][DMI][DAL_GetMgmtBoardHpNotifyConf,737]
[2014-07-17 23:45:44][  198.022448] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x400.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022460] sd 6:0:0:0: [sdc] Asking for cache data failed
[2014-07-17 23:45:44][  198.022465] [49512][0000500004200000][INFO][Add Fru  0x400 logic 4 type 1(2:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022469] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022474] [49512][00005000042003e8][INFO][Add dmi fru 0x400, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022478] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022481] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[2014-07-17 23:45:44][  198.022485] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x100.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022492] [49512][0000500004200000][INFO][Add Fru  0x100 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022497] [49512][0000500004200000][INFO][(1:1)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022501] [49512][00005000042003e8][INFO][Add dmi fru 0x100, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022504] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022509] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x101.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022515] [49512][0000500004200000][INFO][Add Fru  0x101 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022519] [49512][0000500004200000][INFO][(2:2)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022523] [49512][00005000042003e8][INFO][Add dmi fru 0x101, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022527] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022532] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x102.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022539] [49512][0000500004200000][INFO][Add Fru  0x102 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022544] [49512][0000500004200000][INFO][(3:3)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022548] [49512][00005000042003e8][INFO][Add dmi fru 0x102, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022552] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022558] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x103.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022564] [49512][0000500004200000][INFO][Add Fru  0x103 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022569] [49512][0000500004200000][INFO][(4:4)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022574] [49512][00005000042003e8][INFO][Add dmi fru 0x103, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022578] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022583] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x104.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022588] [49512][0000500004200000][INFO][Add Fru  0x104 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022592] [49512][0000500004200000][INFO][(5:5)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022596] [49512][00005000042003e8][INFO][Add dmi fru 0x104, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022600] [49512][00005000042003e8][INFO][Alloc dmi fru][DMI][DAL_AllocDmiFru,358]
[2014-07-17 23:45:44][  198.022606] [49512][00005000042003e8][INFO][Add dmi fru to encl 0x54846fb8ca16503f, fru id 0x105.][DMI][DAL_AddDmiFru,415]
[2014-07-17 23:45:44][  198.022613] [49512][0000500004200000][INFO][Add Fru  0x105 logic 1 type 1(0:269488144)][DMI][DMI_AddFruObj,2016]
[2014-07-17 23:45:44][  198.022617] [49512][0000500004200000][INFO][(6:6)][DMI][DMI_AddFruObj,2026]
[2014-07-17 23:45:44][  198.022622] [49512][00005000042003e8][INFO][Add dmi fru 0x105, ret 0x0][DMI][DAL_AddFru,184]
[2014-07-17 23:45:44][  198.022735] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.022742] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.022749] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.022759] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.022772] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022782] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x0][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022786] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022791] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x1][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022795] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022800] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x2][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022818] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022824] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x3][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022828] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.022832] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.022837] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.022841] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.022846] [49512][0000500004200000][ERR][Alarm 0x1280000000 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.022855] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000000, memory:0xffff880072febc00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.022862] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.022866] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.022871] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000001, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.022875] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 1][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.022883] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.022889] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022895] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x0][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022899] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022905] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x1][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022909] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022914] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x2][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022917] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022922] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x3][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022926] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.022930] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.022933] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.022937] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.022941] [49512][0000500004200000][ERR][Alarm 0x1280000001 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.022947] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000001, memory:0xffff880072feb800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.022952] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.022955] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.022961] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000002, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.022965] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 2][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.022972] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.022977] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022983] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x0][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.022988] [49512][0000500004070552][WARN][Return value of usb write is:-19][DI][DEV_FrameSent,7225]
[2014-07-17 23:45:44][  198.022994] [49512][0000500004070553][WARN][Send usb frame failed, retry times:0x1][DI][DEV_FrameSent,7231]
[2014-07-17 23:45:44][  198.023001] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023016] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.023020] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023024] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.023028] [49512][0000500004200000][ERR][Alarm 0x1280000002 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.023034] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000002, memory:0xffff880072feb400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023038] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023042] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023047] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000003, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023052] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 3][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.023059] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023070] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023073] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.023077] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023081] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.023085] [49512][0000500004200000][ERR][Alarm 0x1280000003 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.023090] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000003, memory:0xffff880072feb000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023094] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000003.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023098] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023103] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000004, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023115] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 4][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.023122] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023134] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023138] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.023142] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023147] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.023152] [49512][0000500004200000][ERR][Alarm 0x1280000004 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.023158] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000004, memory:0xffff880072feac00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023163] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000004.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023167] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023172] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000005, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023176] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 5][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.023183] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023194] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023197] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.023201] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023204] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.023208] [49512][0000500004200000][ERR][Alarm 0x1280000005 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.023223] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000005, memory:0xffff880072fea800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023228] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000005.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023232] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 100][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023237] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000006, sdr type 0x64, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023241] [49512][00005000042003e8][INFO][New alarm sdr, driver 18 fru 0x800000 id 6][DMI][DAL_NewAlarmPattern,823]
[2014-07-17 23:45:44][  198.023248] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 100.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023260] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023264] [49512][000050000407052f][WARN][Get usb frame information failed][DI][DEVB_FrameInfoGet,4957]
[2014-07-17 23:45:44][  198.023267] [49512][0000500004070558][WARN][Command 47 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023271] [49512][0000500004070158][WARN][MPA GetAlarmInfo Fail][DI][MPATag_GetAlarmInfo,10092]
[2014-07-17 23:45:44][  198.023276] [49512][0000500004200000][ERR][Alarm 0x1280000006 get info error ret 1][DMI][DPL_FillAlarmInfo,231]
[2014-07-17 23:45:44][  198.023282] [49512][0000500004200000][INFO][AddDev:100, Id:0x1280000006, memory:0xffff880072fea400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023287] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000006.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023291] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 150][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023298] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x96, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023304] [49512][00005000042003e8][INFO][New elabel sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuElabelPattern,542]
[2014-07-17 23:45:44][  198.023311] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 150.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023323] sd 6:0:0:0: [sdc] READ CAPACITY failed
[2014-07-17 23:45:44][  198.023326] sd 6:0:0:0: [sdc]  Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[2014-07-17 23:45:44][  198.023330] sd 6:0:0:0: [sdc]  Sense Key : Illegal Request [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023337] [current] 
[2014-07-17 23:45:44][  198.023339] sd 6:0:0:0: [sdc]  Add. Sense: Invalid command operation code[49512][0000500004070523][WARN][Operate electronic label through BMC failed][DI][DEVB_ElabelHandler,2801]
[2014-07-17 23:45:44][  198.023348] [49512][0000500004070558][WARN][Command 129 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023351] 
[2014-07-17 23:45:44][  198.023354] [49512][0000500004200000][WARN][Dev 150 0x1280000000 get elabel error ret 2][DMI][DPL_FillElabelInfo,398]
[2014-07-17 23:45:44][  198.023359] [49512][0000500004200000][INFO][AddDev:150, Id:0x1280000000, memory:0xffff880073a05000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023364] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023368] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 151][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023373] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x97, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023378] [49512][00005000042003e8][INFO][New mac sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuMacPattern,468]
[2014-07-17 23:45:44][  198.023386] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 151.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023393] [49512][00005000040701e2][INFO][Operate mac:1][DI][DEVB_MacHandler,3055]
[2014-07-17 23:45:44][  198.023401] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023406] [49512][0000500004070558][WARN][Command 147 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023411] [49512][0000500004200000][WARN][Dev 151 0x1280000000 get mac error ret 2][DMI][DPL_FillMacInfo,684]
[2014-07-17 23:45:44][  198.023417] [49512][0000500004200000][INFO][AddDev:151, Id:0x1280000000, memory:0xffff880072b00200.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023423] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023427] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 159][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023432] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x11001280000000, sdr type 0x9f, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023436] [49512][00005000042003e8][INFO][New license sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuLicensePattern,518]
[2014-07-17 23:45:44][  198.023443] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 159.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023450] [49512][00005000040701df][INFO][Operate lisence:1][DI][DEVB_LisenceHandler,2910]
[2014-07-17 23:45:44][  198.023459] [49512][0000500004070516][WARN][Send usb frame failed][DI][DEVB_FrameSend,1092]
[2014-07-17 23:45:44][  198.023463] [49512][0000500004070524][WARN][Operate lisence through BMC failed][DI][DEVB_LisenceHandler,2953]
[2014-07-17 23:45:44][  198.023466] [49512][0000500004070558][WARN][Command 133 execute failed][DI][DEV_CmdAnalyze,7764]
[2014-07-17 23:45:44][  198.023480] [49512][0000500004200000][WARN][Dev 159 0x11001280000000 get license error ret 2][DMI][DPL_FillLicenseInfo,1119]
[2014-07-17 23:45:44][  198.023484] [49512][0000500004200000][INFO][AddDev:159, Id:0x11001280000000, memory:0xffff880072fff000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023490] [49512][0000500004200000][INFO][Device join up success, DevId: 0x11001280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023495] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 153][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023500] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x99, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023506] [49512][00005000042003e8][INFO][New promodel sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuPromodelPattern,566]
[2014-07-17 23:45:44][  198.023513] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 153.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023519] [49512][00005000040701f0][INFO][Operate product model:1][DI][DEVB_ProModelHandler,3514]
[2014-07-17 23:45:44][  198.023530] [49512][0000500004200000][WARN][Dev 153 0x1280000000 get promodel error ret 2][DMI][DPL_FillProdtypeInfo,1950]
[2014-07-17 23:45:44][  198.023535] [49512][0000500004200000][INFO][Dev 153 0x1280000000 get oem promodel not support set null][DMI][DPL_FillProdtypeInfo,1963]
[2014-07-17 23:45:44][  198.023539] [49512][0000500004200000][INFO][AddDev:153, Id:0x1280000000, memory:0xffff880072fea000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023545] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023548] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 152][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023554] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x98, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023558] [49512][00005000042003e8][INFO][New sn sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuSnPattern,493]
[2014-07-17 23:45:44][  198.023565] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 152.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023580] [49512][00005000040701ec][INFO][Operate sn:1][DI][DEVB_SnHandler,3399]
[2014-07-17 23:45:44][  198.023591] [49512][0000500004200000][WARN][Dev 152 0x1280000000 get sn error ret 2][DMI][DPL_FillSnInfo,828]
[2014-07-17 23:45:44][  198.023596] [49512][0000500004200000][INFO][AddDev:152, Id:0x1280000000, memory:0xffff880072b00000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023602] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023607] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 155][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023613] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x9b, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023618] [49512][00005000042003e8][INFO][New vendor sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuVendorPattern,590]
[2014-07-17 23:45:44][  198.023625] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 155.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023630] [49512][00005000040701ed][INFO][Operate vendor:1][DI][DEVB_VendorHandler,3422]
[2014-07-17 23:45:44][  198.023640] [49512][0000500004200000][WARN][Dev 155 0x1280000000 get vendor error ret 2][DMI][DPL_FillVendorInfo,972]
[2014-07-17 23:45:44][  198.023644] [49512][0000500004200000][INFO][AddDev:155, Id:0x1280000000, memory:0xffff880072affe00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023649] [49512][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023653] [49512][00005000042003e8][INFO][Alloc dmi sdr, type 157][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023658] [49512][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x9d, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023663] [49512][00005000042003e8][INFO][New brand sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuBrandPattern,662]
[2014-07-17 23:45:44][  198.023670] [49512][00005000042003e8][INFO][Add dmi sdr, sdr type 157.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023691] [49513][00005000040701ee][INFO][Operate brand:1][DI][DEVB_BrandHandler,3445]
[2014-07-17 23:45:44][  198.023695] sd 6:0:0:0: [sdc] Test WP failed, assume Write Enabled
[2014-07-17 23:45:44][  198.023726] [49513][0000500004200000][WARN][Dev 157 0x1280000000 get brand error ret 2][DMI][DPL_FillBrandInfo,1530]
[2014-07-17 23:45:44][  198.023751] [49513][0000500004200000][INFO][AddDev:157, Id:0x1280000000, memory:0xffff880072affc00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023789] [49513][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023805] [49513][00005000042003e8][INFO][Alloc dmi sdr, type 154][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023825] sd 6:0:0:0: [sdc] Asking for cache data failed
[2014-07-17 23:45:44][  198.023829] [49513][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0x9a, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023836] [49513][00005000042003e8][INFO][New prologo sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuPrologoPattern,614]
[2014-07-17 23:45:44][  198.023846] [49513][00005000042003e8][INFO][Add dmi sdr, sdr type 154.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.023868] [49513][0000500004200000][ERR][Dev 154 0x1280000000 GetProModel is null!][DMI][DPL_FillPrologoInfo,2095]
[2014-07-17 23:45:44][  198.023877] [49513][0000500004200000][INFO][AddDev:154, Id:0x1280000000, memory:0xffff880072fe9c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.023893] [49513][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.023897] sd 6:0:0:0: [sdc] Assuming drive cache: write through
[2014-07-17 23:45:44][  198.023909] sd 6:0:0:0: [sdc] Attached SCSI disk
[2014-07-17 23:45:44][  198.023940] [49513][00005000042003e8][INFO][Alloc dmi sdr, type 161][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.023963] [49513][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0xa1, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.023985] [49513][00005000042003e8][INFO][New esn sdr, driver 18 fru 0x800000 id 0][DMI][DAL_NewManuEthConfPattern,711]
[2014-07-17 23:45:44][  198.023996] [49513][00005000042003e8][INFO][Add dmi sdr, sdr type 161.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.024037] [49513][00005000040702c5][WARN][v_pstFrameIns->ucRet=0x2][DI][DEVB_TimeStampGet,4747]
[2014-07-17 23:45:44][  198.024046] [49513][00005000040702c6][WARN][RetVal=0x1][DI][DEVB_TimeStampGet,4748]
[2014-07-17 23:45:44][  198.024068] [49513][0000500004200000][WARN][Dev 161 0x1280000000 get eth config error ret 2][DMI][DPL_FillEthConfInfo,1602]
[2014-07-17 23:45:44][  198.024135] [49513][0000500004200000][INFO][AddDev:161, Id:0x1280000000, memory:0xffff880072affa00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.024176] [49513][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.024204] [49513][00005000042003e8][INFO][Alloc dmi sdr, type 13][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.024227] [49513][00005000042003e8][INFO][Add sdr, fru id 0x800000, sdr id 0x1280000000, sdr type 0xd, driver 0x12.][DMI][DAL_AddSdr,285]
[2014-07-17 23:45:44][  198.024268] [49513][00005000042003e8][INFO][New led sdr, dev id 0x1280000000, driver 18 fru 0x800000 id 0][DMI][DAL_NewFruLedPattern,417]
[2014-07-17 23:45:44][  198.024279] [49513][00005000042003e8][INFO][Add dmi sdr, sdr type 13.][DMI][DAL_AddDmiSdr,434]
[2014-07-17 23:45:44][  198.024333] [49513][0000500004070528][WARN][Get LED status from BMC failed][DI][DEVB_LedGet,3565]
[2014-07-17 23:45:44][  198.024360] [49513][0000500004070152][WARN][MPATag GetLedStatus Fail][DI][MPATag_GetLedStatus,9329]
[2014-07-17 23:45:44][  198.024389] [49513][0000500004200000][WARN][Dev 13 0x1280000000 get status config error ret 1][DMI][DPL_FillLedInfo,1085]
[2014-07-17 23:45:44][  198.024404] [49513][0000500004200000][INFO][AddDev:13, Id:0x1280000000, memory:0xffff880072aff800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:44][  198.024414] [49513][0000500004200000][INFO][Device join up success, DevId: 0x1280000000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:44][  198.024450] [49513][000050000407015c][WARN][MPA GetV1AddrPara Frame err 0x34][DI][MPA_GetV1AddrPara,4359]
[2014-07-17 23:45:44][  198.024468] [49513][0000500004200000][ERR][Get Enclosure HardWare Version Error, Ret 1.][DMI][DMI_GetEnclInfo,1929]
[2014-07-17 23:45:44][  198.024498] [49513][0000500004200000][ERR][No Way To Get Enclosure State.][DMI][DMI_GetEnclInfo,1940]
[2014-07-17 23:45:44][  198.024554] [49513][0000500004200000][ERR][Get Enclosure State Error, Ret 1.][DMI][DMI_GetEnclInfo,1945]
[2014-07-17 23:45:44][  198.024564] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x000f0ce0004, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.024576] [49513][0000500004200000][INFO][Add alarm(id: 0xf0ce0004, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.024622] [49513][00005000042003e8][INFO][Fru 0x200 slot name 'B', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.024669] [49513][00005000042003e8][INFO][Fru 0x200 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.024706] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.024738] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x200 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.024748] [49513][00005000042003e8][INFO][Get fru 0x200 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.024785] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.024830] [49513][0000500004200000][ERR][Fru  0x200 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.024855] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x200, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.024898] [49513][0000500004200000][INFO][Fru  0x200 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.024949] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.024960] [49513][0000500004200000][INFO][Fru  0x200 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.024973] [49513][0000500004200000][INFO][Update fru  0x200 present count 0(1), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025001] [49513][00005000042003e8][INFO][Fru 0x1000 slot name 'POWER B0', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025038] [49513][00005000042003e8][INFO][Fru 0x1000 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025064] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025115] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x1000 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025119] [49513][00005000042003e8][INFO][Get fru 0x1000 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025125] [49513][0000500004200000][INFO][Fru  0x1000 get hwver not support set null][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025134] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025140] [49513][0000500004200000][ERR][Fru  0x1000 get state error ret 2][DMI][DPL_FillFruInfo,1233]
[2014-07-17 23:45:44][  198.025145] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x1000, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025151] [49513][0000500004200000][INFO][Fru  0x1000 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025160] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025165] [49513][0000500004200000][INFO][Fru  0x1000 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025170] [49513][0000500004200000][INFO][Update fru  0x1000 present count 1(2), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025188] [49513][00005000042003e8][INFO][Fru 0x1001 slot name 'POWER B1', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025204] [49513][00005000042003e8][INFO][Fru 0x1001 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025214] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025219] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x1001 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025224] [49513][00005000042003e8][INFO][Get fru 0x1001 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025230] [49513][0000500004200000][INFO][Fru  0x1001 get hwver not support set null][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025241] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025245] [49513][0000500004200000][ERR][Fru  0x1001 get state error ret 2][DMI][DPL_FillFruInfo,1233]
[2014-07-17 23:45:44][  198.025249] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x1001, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025254] [49513][0000500004200000][INFO][Fru  0x1001 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025263] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025267] [49513][0000500004200000][INFO][Fru  0x1001 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025273] [49513][0000500004200000][INFO][Update fru  0x1001 present count 0(2), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025289] [49513][00005000042003e8][INFO][Fru 0x2000 slot name 'B0', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025305] [49513][00005000042003e8][INFO][Fru 0x2000 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025315] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025319] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x2000 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025324] [49513][00005000042003e8][INFO][Get fru 0x2000 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025335] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.025339] [49513][0000500004200000][ERR][Fru  0x2000 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025343] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x2000, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025348] [49513][0000500004200000][INFO][Fru  0x2000 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025357] [49513][000050000407051d][WARN][Get present information from BMC failed][DI][DEVB_ExistInfoGet,1872]
[2014-07-17 23:45:44][  198.025362] [49513][0000500004200000][INFO][Fru  0x2000 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025367] [49513][0000500004200000][INFO][Update fru  0x2000 present count 1(2), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025383] [49513][00005000042003e8][INFO][Fru 0x2001 slot name 'B1', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025399] [49513][00005000042003e8][INFO][Fru 0x2001 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025409] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x2001 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025414] [49513][00005000042003e8][INFO][Get fru 0x2001 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025424] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.025429] [49513][0000500004200000][ERR][Fru  0x2001 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025433] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x2001, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025438] [49513][0000500004200000][INFO][Fru  0x2001 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025448] [49513][0000500004200000][INFO][Fru  0x2001 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025454] [49513][0000500004200000][INFO][Update fru  0x2001 present count 0(2), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025472] [49513][00005000042003e8][INFO][Fru 0x4000 slot name 'FAN 0', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025487] [49513][00005000042003e8][INFO][Fru 0x4000 visible map '3', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025498] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x4000 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025503] [49513][00005000042003e8][INFO][Get fru 0x4000 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025509] [49513][0000500004200000][INFO][Fru  0x4000 get hwver not support set null][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025520] [49513][0000500004200000][ERR][Fru  0x4000 get state error ret 2][DMI][DPL_FillFruInfo,1233]
[2014-07-17 23:45:44][  198.025525] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x4000, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025531] [49513][0000500004200000][INFO][Fru  0x4000 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025542] [49513][0000500004200000][INFO][Fru  0x4000 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025549] [49513][0000500004200000][INFO][Update fru  0x4000 present count 2(3), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025566] [49513][00005000042003e8][INFO][Fru 0x4001 slot name 'FAN 1', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025582] [49513][00005000042003e8][INFO][Fru 0x4001 visible map '3', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025592] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x4001 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025597] [49513][00005000042003e8][INFO][Get fru 0x4001 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025604] [49513][0000500004200000][INFO][Fru  0x4001 get hwver not support set null][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025615] [49513][0000500004200000][ERR][Fru  0x4001 get state error ret 2][DMI][DPL_FillFruInfo,1233]
[2014-07-17 23:45:44][  198.025620] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x4001, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025626] [49513][0000500004200000][INFO][Fru  0x4001 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025636] [49513][0000500004200000][INFO][Fru  0x4001 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025643] [49513][0000500004200000][INFO][Update fru  0x4001 present count 1(3), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025660] [49513][00005000042003e8][INFO][Fru 0x4002 slot name 'FAN 2', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025676] [49513][00005000042003e8][INFO][Fru 0x4002 visible map '3', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025686] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x4002 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025691] [49513][00005000042003e8][INFO][Get fru 0x4002 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025696] [49513][0000500004200000][INFO][Fru  0x4002 get hwver not support set null][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025706] [49513][0000500004200000][ERR][Fru  0x4002 get state error ret 2][DMI][DPL_FillFruInfo,1233]
[2014-07-17 23:45:44][  198.025711] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x4002, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025717] [49513][0000500004200000][INFO][Fru  0x4002 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025728] [49513][0000500004200000][INFO][Fru  0x4002 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025734] [49513][0000500004200000][INFO][Update fru  0x4002 present count 0(3), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025752] [49513][00005000042003e8][INFO][Fru 0x400 slot name 'MGMTB', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025767] [49513][00005000042003e8][INFO][Fru 0x400 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025777] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x400 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025782] [49513][00005000042003e8][INFO][Get fru 0x400 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025793] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.025797] [49513][0000500004200000][ERR][Fru  0x400 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025802] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x400, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025806] [49513][0000500004200000][INFO][Fru  0x400 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025817] [49513][0000500004200000][INFO][Fru  0x400 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025823] [49513][0000500004200000][INFO][Update fru  0x400 present count 0(1), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025839] [49513][00005000042003e8][INFO][Fru 0x100 slot name 'B0', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025856] [49513][00005000042003e8][INFO][Fru 0x100 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.025866] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x100 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.025871] [49513][00005000042003e8][INFO][Get fru 0x100 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.025881] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.025885] [49513][0000500004200000][ERR][Fru  0x100 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.025890] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x100, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.025900] [49513][0000500004200000][WARN][Fru 0x100 get state error, ret 2][DMI][DMI_CheckIntfNotRecognizable,1483]
[2014-07-17 23:45:44][  198.025906] [49513][0000500004200000][INFO][Fru  0x100 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.025916] [49513][0000500004200000][INFO][Fru  0x100 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.025922] [49513][0000500004200000][INFO][Update fru  0x100 present count 5(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.025939] [49513][00005000042003e8][INFO][Fru 0x101 slot name 'B1', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.025955] [49513][00005000042003e8][INFO][Fru 0x101 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.026011] [49513][00005000042003e8][INFO][Probe fru 0x101 succeed][DMI][DAL_ProbeFru,545]
[2014-07-17 23:45:44][  198.026023] [49513][0000500004200000][INFO][Probe fru success, fru id: 0x101, enclosure wwn: 0x54846fb8ca16503f.][DMI][DMI_ProbeFru,1560]
[2014-07-17 23:45:44][  198.026030] [49513][0000500004200000][INFO][Fru join up success, FruId: 0x101, Type: 65533, LogicType: 1, Name: virtual io card.][DMI][DMI_LinkFru,955]
[2014-07-17 23:45:44][  198.026036] [49513][0000500004200000][INFO][Resume fru virtual io card 0x101 all alarm at power up, type count 1][DMI][DPL_ResumeFruAllAlm,2819]
[2014-07-17 23:45:44][  198.026041] [49513][0000500004200000][INFO][ResumeAlm: IoCardOut fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026047] [49513][0000500004200000][INFO][SendFruAlm: id 0xf0d10005 type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026053] [49513][0000500004200000][INFO][Add alarm(id: 0xf0d10005, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026058] [49513][0000500004200000][INFO][ResumeAlm: IoCardOutViolent fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026063] [49513][0000500004200000][INFO][SendFruAlm: id 0xf0d1000a type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026069] [49513][0000500004200000][INFO][Add alarm(id: 0xf0d1000a, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026074] [49513][0000500004200000][INFO][ResumeAlm: IoCardPwrOnErr fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026079] [49513][0000500004200000][INFO][SendFruAlm: id 0x200f0d10010 type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026085] [49513][0000500004200000][INFO][Add alarm(id: 0x200f0d10010, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026089] [49513][0000500004200000][INFO][ResumeAlm: IoCardPwrOffErr fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026095] [49513][0000500004200000][INFO][SendFruAlm: id 0x200f0d1000d type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026100] [49513][0000500004200000][INFO][Add alarm(id: 0x200f0d1000d, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026105] [49513][0000500004200000][INFO][ResumeAlm: IoCardTypeErr fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026110] [49513][0000500004200000][INFO][SendFruAlm: id 0xf0d10008 type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026116] [49513][0000500004200000][INFO][Add alarm(id: 0xf0d10008, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026120] [49513][0000500004200000][INFO][ResumeAlm: IoCardSlotErr fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026125] [49513][0000500004200000][INFO][SendFruAlm: id 0xf0d10007 type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026131] [49513][0000500004200000][INFO][Add alarm(id: 0xf0d10007, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026135] [49513][0000500004200000][INFO][ResumeAlm: IoCardI2c fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026141] [49513][0000500004200000][INFO][SendFruAlm: id 0xf00d1001e type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026146] [49513][0000500004200000][INFO][Add alarm(id: 0xf00d1001e, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026151] [49513][0000500004200000][INFO][ResumeAlm: IoCardTemp fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026156] [49513][0000500004200000][INFO][SendFruAlm: id 0xf0d10009 type 2 ec 0x0 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026162] [49513][0000500004200000][INFO][Add alarm(id: 0xf0d10009, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026166] [49513][0000500004200000][INFO][ResumeAlm: IoCardPcieDev fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026171] [49513][0000500004200000][INFO][SendFruAlm: id 0xf00d10020 type 2 ec 0x4000d103 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026177] [49513][0000500004200000][INFO][Add alarm(id: 0xf00d10020, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026182] [49513][0000500004200000][INFO][ResumeAlm: IoCardPcbVer fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026187] [49513][0000500004200000][INFO][SendFruAlm: id 0xf00d10020 type 2 ec 0x4000d102 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026192] [49513][0000500004200000][INFO][Add alarm(id: 0xf00d10020, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026197] [49513][0000500004200000][INFO][ResumeAlm: IoCardPwgd fru virtual io card id 0x101][DMI][DPL_ResumeSingleFruAlarm,2759]
[2014-07-17 23:45:44][  198.026202] [49513][0000500004200000][INFO][SendFruAlm: id 0xf00d10020 type 2 ec 0x4000d101 fru virtual io card id 101][DMI][DPL_ResumeSingleFruAlarm,2774]
[2014-07-17 23:45:44][  198.026208] [49513][0000500004200000][INFO][Add alarm(id: 0xf00d10020, type: 2, obj type: 209) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.026212] [49513][0000500004200000][INFO][Fru virtual io card 0x101 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.026224] [49513][0000500004200000][INFO][Fru virtual io card 0x101 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.026231] [49513][0000500004200000][INFO][Update fru virtual io card 0x101 present count 4(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.026249] [49513][00005000042003e8][INFO][Fru 0x102 slot name 'B2', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.026265] [49513][00005000042003e8][INFO][Fru 0x102 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.026275] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x102 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.026280] [49513][00005000042003e8][INFO][Get fru 0x102 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.026291] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.026295] [49513][0000500004200000][ERR][Fru  0x102 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.026300] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x102, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.026312] [49513][0000500004200000][WARN][Fru 0x102 get state error, ret 2][DMI][DMI_CheckIntfNotRecognizable,1483]
[2014-07-17 23:45:44][  198.026317] [49513][0000500004200000][INFO][Fru  0x102 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.026328] [49513][0000500004200000][INFO][Fru  0x102 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.026334] [49513][0000500004200000][INFO][Update fru  0x102 present count 3(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.026352] [49513][00005000042003e8][INFO][Fru 0x103 slot name 'B3', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.026367] [49513][00005000042003e8][INFO][Fru 0x103 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.026377] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x103 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.026382] [49513][00005000042003e8][INFO][Get fru 0x103 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.026393] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.026397] [49513][0000500004200000][ERR][Fru  0x103 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.026401] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x103, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.026411] [49513][0000500004200000][WARN][Fru 0x103 get state error, ret 2][DMI][DMI_CheckIntfNotRecognizable,1483]
[2014-07-17 23:45:44][  198.026416] [49513][0000500004200000][INFO][Fru  0x103 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.026427] [49513][0000500004200000][INFO][Fru  0x103 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.026433] [49513][0000500004200000][INFO][Update fru  0x103 present count 2(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.026451] [49513][00005000042003e8][INFO][Fru 0x104 slot name 'B4', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.026466] [49513][00005000042003e8][INFO][Fru 0x104 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.026477] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x104 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.026482] [49513][00005000042003e8][INFO][Get fru 0x104 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.026493] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.026498] [49513][0000500004200000][ERR][Fru  0x104 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.026505] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x104, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.026524] [49513][0000500004200000][WARN][Fru 0x104 get state error, ret 2][DMI][DMI_CheckIntfNotRecognizable,1483]
[2014-07-17 23:45:44][  198.026540] [49513][0000500004200000][INFO][Fru  0x104 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.026560] [49513][0000500004200000][INFO][Fru  0x104 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.026572] [49513][0000500004200000][INFO][Update fru  0x104 present count 1(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.026601] [49513][00005000042003e8][INFO][Fru 0x105 slot name 'B5', ret 0.][DMI][DAL_ProbeFru,493]
[2014-07-17 23:45:44][  198.026625] [49513][00005000042003e8][INFO][Fru 0x105 visible map '2', ret 0.][DMI][DAL_ProbeFru,497]
[2014-07-17 23:45:44][  198.026643] [49513][00005000042003e8][INFO][Get fru type failed, fru id 0x105 .][DMI][DAL_GetFruType,409]
[2014-07-17 23:45:44][  198.026662] [49513][00005000042003e8][INFO][Get fru 0x105 type failed, err -1][DMI][DAL_ProbeFru,505]
[2014-07-17 23:45:44][  198.026715] [49513][0000500004070525][WARN][Get version from BMC failed][DI][DEVB_VerInfoGet,3031]
[2014-07-17 23:45:44][  198.026732] [49513][0000500004200000][ERR][Fru  0x105 get hwver error ret 2][DMI][DPL_FillFruInfo,1220]
[2014-07-17 23:45:44][  198.026742] [49513][0000500004200000][WARN][Probe fru fail. fru id: 0x105, enclosure wwn: 0x54846fb8ca16503f. Probe Ret:2.][DMI][DMI_ProbeFru,1555]
[2014-07-17 23:45:44][  198.026765] [49513][0000500004200000][WARN][Fru 0x105 get state error, ret 2][DMI][DMI_CheckIntfNotRecognizable,1483]
[2014-07-17 23:45:44][  198.026776] [49513][0000500004200000][INFO][Fru  0x105 state 0][DMI][DMI_ProbeAllFru,1909]
[2014-07-17 23:45:44][  198.026801] [49513][0000500004200000][INFO][Fru  0x105 state 0, get state failed, encl wwn: 54846fb8ca16503f.][DMI][DMI_CheckIsMpaEnclCmdValid,1804]
[2014-07-17 23:45:44][  198.026815] [49513][0000500004200000][INFO][Update fru  0x105 present count 0(6), wwn 0x54846fb8ca16503f][DMI][DMI_UpdateFruPresentCnt,839]
[2014-07-17 23:45:44][  198.026835] [49513][0000500004200000][INFO][Enclosure(model 0) form do't suport setting product custom config.][DMI][DMI_SetOneEnclProductConfig,352]
[2014-07-17 23:45:44][  198.026849] [49513][0000500004203039][INFO][Control enclosure has registed,wwn=0x54846fb8ca16503f!][DMI][DAL_NotifyCtrlHasRegisted,630]
[2014-07-17 23:45:44][  198.026893] [49513][0000500004070576][WARN][Get rst info through BMC failed][DI][DEVB_OopsInfoGet,2845]
[2014-07-17 23:45:44][  198.026903] [49513][0000500004200000][INFO][Get Oops info from MPA return 1.][DMI][DAL_ReadSysOopsInfo,2763]
[2014-07-17 23:45:44][  198.026927] [49513][1500003fa018b][ERR][Read flash failed][NONE][OS_RegisterReadFlash,209][DMI_ProbeEnclTh]
[2014-07-17 23:45:44][  198.026955] [49513][0000500004200000][INFO][Register oops info op to os.][DMI][DAL_RegisterOopsInfoOpToOs,2824]
[2014-07-17 23:45:44][  198.026982] [49513][0000500004200000][INFO][Create Ac Power Down Thread Success.][DMI][DMI_InitPowerOffHandler,78]
[2014-07-17 23:45:44][  198.027000] [49513][540004060fb1][INF][Begin To Unregister Handler For Interrupt:0x1.][BSP][SPV2R1_U.andler,4536][DMI_ProbeEnclTh]
[2014-07-17 23:45:44][  198.027012] [49513][54000406027d][WAR][Interrupt handler already NULL.][BSP][ClearHan.rOfINT,4276][DMI_ProbeEnclTh]
[2014-07-17 23:45:44][  198.027035] [49513][540004060fb0][INF][Begin To Register Handler For Interrupt:0x1.][BSP][SPV2R1_R.andler,4307][DMI_ProbeEnclTh]
[2014-07-17 23:45:44][  198.027060] [49513][0000500004200000][INFO][Register Power Off Handler Success][DMI][DMI_InitPowerOffHandler,106]
[2014-07-17 23:45:44][  198.027081] [49513][0000500004200000][ERR][Set local controller number: 4294967295 fail.][DMI][DMI_SetLocalControllerNum,503]
[2014-07-17 23:45:44][  198.027110] [49513][0000500004200000][INFO][Single link detect init fail.][DMI][DMI_LinkEncl,1557]
[2014-07-17 23:45:44][  198.027131] [49513][0000500004200000][WARN][Can't find fru, type:(1) id:(0).][DMI][DMI_GetCtrlExpEnclTemperature,507]
[2014-07-17 23:45:44][  198.027147] [49513][0000500004200000][WARN][Controller slot -1 not valid.][DMI][DMI_GetLocalTempSaveId,391]
[2014-07-17 23:45:44][  198.027170] [49513][0000500004200000][INFO][Add event(type: 0) to wait list.][DMI][SendEventToList,451]
[2014-07-17 23:45:44][  198.027188] [49513][0000500004200000][WARN][Send event function is not register. Cannot send event.][DMI][SendDmiEvent,474]
[2014-07-17 23:45:44][  198.027201] [49513][0000500004200000][INFO][Send encl 0x54846fb8ca16503f upgrade obj in event.][DMI][DMI_ReportEnclUpgradeObjIn,2938]
[2014-07-17 23:45:44][  198.027219] [49513][0000500004200000][INFO][SendFruCrt: obj 206(ENCL) id 54846fb8ca16503f 0.][DMI][DPL_SendEnclChange,3050]
[2014-07-17 23:45:44][  198.027235] [49513][0000500004200000][WARN][Send fru change function is not register. Cannot send fru change.][DMI][SendFruChange,274]
[2014-07-17 23:45:44][  198.027259] [49513][0000500004200000][ERR][Enclosure snap not exist skip update info][DMI][MSC_UpdateEnclSnapOnlineInfo,554]
[2014-07-17 23:45:44][  198.027269] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x100f0ce000b, AlarmType: 0, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027285] [49513][0000500004200000][INFO][Add alarm(id: 0x100f0ce000b, type: 0, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027308] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x000f0ce0001, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027319] [49513][0000500004200000][INFO][Add alarm(id: 0xf0ce0001, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027337] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x00f00ce0018, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 4294967295, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 1, WWN2: 0x54846fb8ca16503f, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027349] [49513][0000500004200000][INFO][Add alarm(id: 0xf00ce0018, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027363] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x000f0ce0009, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027377] [49513][0000500004200000][INFO][Add alarm(id: 0xf0ce0009, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027391] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x000f0ce0008, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027407] [49513][0000500004200000][INFO][Add alarm(id: 0xf0ce0008, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027432] [49513][0000500004200000][INFO][Send alarm, AlarmID: 0x000f0ce0007, AlarmType: 2, LogicType: 1, WWN: 0x54846fb8ca16503f, SN: , ControllerId: 0, BoardType: 0, BoardId: 0, PortId: 0, PermitNum: 0, LogicType2: 0, WWN2: 0x0, ErrCode: 0xffffffffffffffff.][DMI][DMI_SendEnclAlarm,546]
[2014-07-17 23:45:44][  198.027460] [49513][0000500004200000][INFO][Add alarm(id: 0xf0ce0007, type: 2, obj type: 206) to list.][DMI][SendAlarmToList,140]
[2014-07-17 23:45:44][  198.027495] [49513][0000500004200000][INFO][Enclosure join up success, wwn: 0x54846fb8ca16503f, father wwn: 0x807060504030201, loopnum: 2039808.][DMI][DMI_LinkEncl,1624]
[2014-07-17 23:45:44][  198.027503] [49513][0000500004200000][INFO][Set probe state true, wwn 0x54846fb8ca16503f][DMI][DMI_AddProbedEncl,1785]
[2014-07-17 23:45:44][  198.080939] [49527][0000500004200000][INFO][Operate node begin, opcode(0).][DMI][OperateNode,109]
[2014-07-17 23:45:44][  198.080946] [49527][0000500004200000][INFO][Operate node end, opcode(0), result(0).][DMI][OperateNode,129]
[2014-07-17 23:45:44][  198.211450] [49560][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:44][  198.211459] [49560][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x200 id 2][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:44][  198.211473] [49560][0000500004203039][INFO][Fill eth(0x200020002)  maxspeed=2, portwidth=0, IsExternal 0, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:44][  198.211479] [49560][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:44][  198.211498] [49560][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:44][  198.211503] [49560][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:44][  198.211516] [49560][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:44][  198.211521] [49560][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:44][  198.211535] [49560][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:44][  198.211543] [49560][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:44][  198.211550] [49560][000050000408b2f4][INFO][Port:0x00022002 is disabled.][NIC][Net_GetPortLinkStatus,1922]
[2014-07-17 23:45:44][  198.211556] [49560][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:44][  198.211565] [49560][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:44][  198.211576] [49560][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:44][  198.211590] [49560][000050000408b399][INFO][Event_dev: eth0, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.289851] ADDRCONF(NETDEV_UP): eth0: link is not ready
[2014-07-17 23:45:45][  198.289856] [49579][000050000408b399][INFO][Event_dev: eth0, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.289861] [49579][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:45:45][  198.289872] [49579][00005000041a016c][INFO][FCOE(0x22002):unsupported card, vender:0x8086 , func:0x10d3.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:45][  198.289878] [49579][0000500004200000][INFO][Open eth port result: 0, port id: 0x200020002.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.289882] [49579][0000500004200000][INFO][Dev 202 id 0x200020002 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.289887] [49579][0000500004200000][INFO][AddDev:202, Id:0x200020002, memory:0xffff880073022800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.289894] [49579][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id86!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:45][  198.289899] [49579][0000500004200000][INFO][Device join up success, DevId: 0x200020002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.289904] [49579][0000500004200000][INFO][AddDev 0x200020002 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.289909] [49579][0000500004203039][INFO][Add obj success, id:0x22002, sdr:202, devid:0x200020002!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.289915] [49579][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.289921] [49579][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x200 id 1][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.289934] [49579][0000500004203039][INFO][Fill eth(0x200020001)  maxspeed=2, portwidth=0, IsExternal 0, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.289939] [49579][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.289954] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.289959] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.289974] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.289979] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.289988] [49579][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.289993] [49579][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.290001] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.290008] [49579][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.290015] [49579][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.290157] [49579][0000500004200000][INFO][Open eth port result: 0, port id: 0x200020001.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.290161] [49579][0000500004200000][INFO][Dev 202 id 0x200020001 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.290167] [49579][0000500004200000][INFO][AddDev:202, Id:0x200020001, memory:0xffff880073022000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.290173] [49579][0000500004200000][INFO][Device join up success, DevId: 0x200020001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.290177] [49579][0000500004200000][INFO][AddDev 0x200020001 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.290182] [49579][0000500004203039][INFO][Add obj success, id:0x22001, sdr:202, devid:0x200020001!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.290187] [49579][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.290192] [49579][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x200 id 0][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.290201] [49579][0000500004203039][INFO][Fill eth(0x200020000)  maxspeed=2, portwidth=0, IsExternal 0, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.290207] [49579][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.290221] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.290226] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.290237] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.290242] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.290247] [49579][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.290252] [49579][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.290259] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.290264] [49579][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.290271] [49579][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.290412] [49579][0000500004200000][INFO][Open eth port result: 0, port id: 0x200020000.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.290416] [49579][0000500004200000][INFO][Dev 202 id 0x200020000 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.290420] [49579][0000500004200000][INFO][AddDev:202, Id:0x200020000, memory:0xffff880073021800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.290425] [49579][0000500004200000][INFO][Device join up success, DevId: 0x200020000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.290429] [49579][0000500004200000][INFO][AddDev 0x200020000 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.290434] [49579][0000500004203039][INFO][Add obj success, id:0x22000, sdr:202, devid:0x200020000!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.290438] [49579][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.290445] [49579][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x100 id 3][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.290456] [49579][0000500004203039][INFO][Fill eth(0x200010003)  maxspeed=2, portwidth=0, IsExternal 1, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.290463] [49579][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.290475] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.290480] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.290492] [49579][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.290497] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.290503] [49579][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.290508] [49579][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.290512] [49579][000050000408b2f4][INFO][Port:0x00020003 is disabled.][NIC][Net_GetPortLinkStatus,1922]
[2014-07-17 23:45:45][  198.290517] [49579][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.290524] [49579][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.290529] [49579][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.290536] [49579][000050000408b399][INFO][Event_dev: eth3, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.290847] tg3 0000:13:00.0: irq 96 for MSI/MSI-X
[2014-07-17 23:45:45][  198.290858] tg3 0000:13:00.0: irq 97 for MSI/MSI-X
[2014-07-17 23:45:45][  198.290870] tg3 0000:13:00.0: irq 98 for MSI/MSI-X
[2014-07-17 23:45:45][  198.290882] tg3 0000:13:00.0: irq 99 for MSI/MSI-X
[2014-07-17 23:45:45][  198.290893] tg3 0000:13:00.0: irq 100 for MSI/MSI-X
[2014-07-17 23:45:45][  198.391397] ADDRCONF(NETDEV_UP): eth3: link is not ready
[2014-07-17 23:45:45][  198.391403] [49605][000050000408b399][INFO][Event_dev: eth3, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.391408] [49605][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:45:45][  198.391416] [49605][00005000041a016c][INFO][FCOE(0x20003):unsupported card, vender:0x14e4 , func:0x1657.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:45][  198.391423] [49605][0000500004200000][INFO][Open eth port result: 0, port id: 0x200010003.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.391428] [49605][0000500004200000][INFO][Dev 202 id 0x200010003 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.391432] [49605][0000500004200000][INFO][AddDev:202, Id:0x200010003, memory:0xffff880073021000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.391439] [49605][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id87!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:45][  198.391444] [49605][0000500004200000][INFO][Device join up success, DevId: 0x200010003.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.391450] [49605][0000500004200000][INFO][AddDev 0x200010003 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.391455] [49605][0000500004203039][INFO][Add obj success, id:0x20003, sdr:202, devid:0x200010003!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.391460] [49605][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.391467] [49605][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x100 id 2][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.391477] [49605][0000500004203039][INFO][Fill eth(0x200010002)  maxspeed=2, portwidth=0, IsExternal 1, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.391483] [49605][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.391498] [49605][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.391503] [49605][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.391515] [49605][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.391519] [49605][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.391526] [49605][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.393201] [49605][000050000408b399][INFO][Event_dev: eth3, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.393261] [49605][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.393267] [49605][000050000408b2f4][INFO][Port:0x00020002 is disabled.][NIC][Net_GetPortLinkStatus,1922]
[2014-07-17 23:45:45][  198.393273] [49605][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.393279] [49605][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.393285] [49605][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.393293] [49605][000050000408b399][INFO][Event_dev: eth4, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.393584] tg3 0000:13:00.1: irq 101 for MSI/MSI-X
[2014-07-17 23:45:45][  198.393595] tg3 0000:13:00.1: irq 102 for MSI/MSI-X
[2014-07-17 23:45:45][  198.393606] tg3 0000:13:00.1: irq 103 for MSI/MSI-X
[2014-07-17 23:45:45][  198.393618] tg3 0000:13:00.1: irq 104 for MSI/MSI-X
[2014-07-17 23:45:45][  198.393630] tg3 0000:13:00.1: irq 105 for MSI/MSI-X
[2014-07-17 23:45:45][  198.494116] ADDRCONF(NETDEV_UP): eth4: link is not ready
[2014-07-17 23:45:45][  198.494122] [49630][000050000408b399][INFO][Event_dev: eth4, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.494127] [49630][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:45:45][  198.494138] [49630][00005000041a016c][INFO][FCOE(0x20002):unsupported card, vender:0x14e4 , func:0x1657.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:45][  198.494143] [49630][0000500004200000][INFO][Open eth port result: 0, port id: 0x200010002.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.494148] [49630][0000500004200000][INFO][Dev 202 id 0x200010002 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.494153] [49630][0000500004200000][INFO][AddDev:202, Id:0x200010002, memory:0xffff88007305c000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.494159] [49630][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id88!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:45][  198.494165] [49630][0000500004200000][INFO][Device join up success, DevId: 0x200010002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.494170] [49630][0000500004200000][INFO][AddDev 0x200010002 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.494175] [49630][0000500004203039][INFO][Add obj success, id:0x20002, sdr:202, devid:0x200010002!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.494180] [49630][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.494187] [49630][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x100 id 1][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.494198] [49630][0000500004203039][INFO][Fill eth(0x200010001)  maxspeed=2, portwidth=0, IsExternal 1, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.494204] [49630][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.494217] [49630][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.494223] [49630][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.494236] [49630][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.494241] [49630][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.494248] [49630][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.494254] [49630][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.494259] [49630][000050000408b2f4][INFO][Port:0x00020001 is disabled.][NIC][Net_GetPortLinkStatus,1922]
[2014-07-17 23:45:45][  198.494264] [49630][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.494270] [49630][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.494276] [49630][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.494284] [49630][000050000408b399][INFO][Event_dev: eth5, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.494573] tg3 0000:13:00.2: irq 106 for MSI/MSI-X
[2014-07-17 23:45:45][  198.494585] tg3 0000:13:00.2: irq 107 for MSI/MSI-X
[2014-07-17 23:45:45][  198.494597] tg3 0000:13:00.2: irq 108 for MSI/MSI-X
[2014-07-17 23:45:45][  198.494607] tg3 0000:13:00.2: irq 109 for MSI/MSI-X
[2014-07-17 23:45:45][  198.494619] tg3 0000:13:00.2: irq 110 for MSI/MSI-X
[2014-07-17 23:45:45][  198.595644] ADDRCONF(NETDEV_UP): eth5: link is not ready
[2014-07-17 23:45:45][  198.595649] [49656][000050000408b399][INFO][Event_dev: eth5, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.595653] [49656][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:45:45][  198.595661] [49656][00005000041a016c][INFO][FCOE(0x20001):unsupported card, vender:0x14e4 , func:0x1657.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:45][  198.595667] [49656][0000500004200000][INFO][Open eth port result: 0, port id: 0x200010001.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.595672] [49656][0000500004200000][INFO][Dev 202 id 0x200010001 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.595678] [49656][0000500004200000][INFO][AddDev:202, Id:0x200010001, memory:0xffff88007305b800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.595685] [49656][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id89!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:45][  198.595692] [49656][0000500004200000][INFO][Device join up success, DevId: 0x200010001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.595696] [49656][0000500004200000][INFO][AddDev 0x200010001 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.595701] [49656][0000500004203039][INFO][Add obj success, id:0x20001, sdr:202, devid:0x200010001!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.595707] [49656][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.595714] [49656][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x100 id 0][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.595725] [49656][0000500004203039][INFO][Fill eth(0x200010000)  maxspeed=2, portwidth=0, IsExternal 1, Protocol 3, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.595730] [49656][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.595744] [49656][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.595748] [49656][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.595760] [49656][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.595765] [49656][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.595772] [49656][00005000041a0400][WARN][IN.][FCOE][FCOE_NetOpsHanlder,724]
[2014-07-17 23:45:45][  198.595777] [49656][0000500004201234][ERR][ Op:GetMode(0xffffffffa0bfa6c0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2140]
[2014-07-17 23:45:45][  198.595782] [49656][000050000408b2f4][INFO][Port:0x00020000 is disabled.][NIC][Net_GetPortLinkStatus,1922]
[2014-07-17 23:45:45][  198.595787] [49656][0000500004201234][ERR][ Op:DalBase->Op.GetLoad(0xffffffffa0bf9500) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfoExt,2194]
[2014-07-17 23:45:45][  198.595794] [49656][0000500004201234][ERR][ Op:Eth->ExtOp.GetVlanId(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5262]
[2014-07-17 23:45:45][  198.595800] [49656][0000500004201234][ERR][ Op:Eth.ExtOp->GetSfpStatus(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowEthPortExtInfo,5286]
[2014-07-17 23:45:45][  198.595807] [49656][000050000408b399][INFO][Event_dev: eth6, event: NETDEV_PRE_UP d.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.596076] tg3 0000:13:00.3: irq 111 for MSI/MSI-X
[2014-07-17 23:45:45][  198.596086] tg3 0000:13:00.3: irq 112 for MSI/MSI-X
[2014-07-17 23:45:45][  198.596096] tg3 0000:13:00.3: irq 113 for MSI/MSI-X
[2014-07-17 23:45:45][  198.596107] tg3 0000:13:00.3: irq 114 for MSI/MSI-X
[2014-07-17 23:45:45][  198.596118] tg3 0000:13:00.3: irq 115 for MSI/MSI-X
[2014-07-17 23:45:45][  198.700877] ADDRCONF(NETDEV_UP): eth6: link is not ready
[2014-07-17 23:45:45][  198.700882] [49682][000050000408b399][INFO][Event_dev: eth6, event: NETDEV_UP 1.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:45][  198.700886] [49682][000050000408b398][INFO][Send event:14.][NIC][Net_CallEventNotifiers,336]
[2014-07-17 23:45:45][  198.700894] [49682][00005000041a016c][INFO][FCOE(0x20000):unsupported card, vender:0x14e4 , func:0x1657.][FCOE][FCOE_DeviceNotification,3750]
[2014-07-17 23:45:45][  198.700899] [49682][0000500004200000][INFO][Open eth port result: 0, port id: 0x200010000.][DMI][DPL_ShowEthPortInfo,5427]
[2014-07-17 23:45:45][  198.700904] [49682][0000500004200000][INFO][Dev 202 id 0x200010000 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.700908] [49682][0000500004200000][INFO][AddDev:202, Id:0x200010000, memory:0xffff88007305b000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.700914] [49682][0000500004200000][INFO][Device join up success, DevId: 0x200010000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.700920] [49682][00005000040502e7][INFO][SendEvent to mod34. Device 13 Event 14 , (DRV_DEVT_OPEN), Dev type 13,evnt id90!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:45][  198.700926] [49682][0000500004200000][INFO][AddDev 0x200010000 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.700931] [49682][0000500004203039][INFO][Add obj success, id:0x20000, sdr:202, devid:0x200010000!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.700936] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.700943] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 0][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.700954] [49682][0000500004203039][INFO][Fill eth(0x200011f00)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.700959] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.700965] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f00 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.700969] [49682][0000500004203039][INFO][Add obj failed, id:0x21f00, sdr:202, devid:0x200011f00!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.700974] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.700979] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 1][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.700990] [49682][0000500004203039][INFO][Fill eth(0x200011f01)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.700996] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701002] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f01 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701007] [49682][0000500004203039][INFO][Add obj failed, id:0x21f01, sdr:202, devid:0x200011f01!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701011] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701016] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 2][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701027] [49682][0000500004203039][INFO][Fill eth(0x200011f02)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701032] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701037] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f02 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701043] [49682][0000500004203039][INFO][Add obj failed, id:0x21f02, sdr:202, devid:0x200011f02!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701048] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701053] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 3][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701062] [49682][0000500004203039][INFO][Fill eth(0x200011f03)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701067] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701072] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f03 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701077] [49682][0000500004203039][INFO][Add obj failed, id:0x21f03, sdr:202, devid:0x200011f03!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701082] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701088] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 4][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701096] [49682][0000500004203039][INFO][Fill eth(0x200011f04)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701101] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701106] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f04 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701112] [49682][0000500004203039][INFO][Add obj failed, id:0x21f04, sdr:202, devid:0x200011f04!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701116] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701121] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 5][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701129] [49682][0000500004203039][INFO][Fill eth(0x200011f05)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701134] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701139] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f05 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701145] [49682][0000500004203039][INFO][Add obj failed, id:0x21f05, sdr:202, devid:0x200011f05!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701150] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701156] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 6][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701167] [49682][0000500004203039][INFO][Fill eth(0x200011f06)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701173] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701179] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f06 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701183] [49682][0000500004203039][INFO][Add obj failed, id:0x21f06, sdr:202, devid:0x200011f06!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701188] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701192] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 7][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701200] [49682][0000500004203039][INFO][Fill eth(0x200011f07)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701206] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701211] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f07 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701215] [49682][0000500004203039][INFO][Add obj failed, id:0x21f07, sdr:202, devid:0x200011f07!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701220] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 202][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701225] [49682][00005000042003e8][INFO][New port eth sdr, driver 2 fru 0x11f id 8][DMI][DAL_NewPortEthPattern,1086]
[2014-07-17 23:45:45][  198.701236] [49682][0000500004203039][INFO][Fill eth(0x200011f08)  maxspeed=19, portwidth=0, IsExternal 0, Protocol 3, PortType 1, DependentPortId 0x0, SfpSupport 0, BoardType 0, BoardId 0 !][DMI][DAL_FillEthMaxSpeed,820]
[2014-07-17 23:45:45][  198.701242] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 202][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701248] [49682][0000500004200000][ERR][Cann't Find Fru Node For Port 200011f08 Type 202!][DMI][DPL_HandlePortIn,6328]
[2014-07-17 23:45:45][  198.701253] [49682][0000500004203039][INFO][Add obj failed, id:0x21f08, sdr:202, devid:0x200011f08!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.701260] [49682][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701266] [49682][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701278] [49682][0000500004200000][ERR][Handle DevEvt 14 WWN 54846fb8ca16503f PortId 21f00 DevId 200011f00 No Node][DMI][DMI_HandleDevChgEvt,1033]
[2014-07-17 23:45:45][  198.701283] [49682][0000500004200000][ERR][Handle Dev Event 14 In Encl 54846fb8ca16503f Error! Ret -1][DMI][DMI_ChgEvtHandler,1227]
[2014-07-17 23:45:45][  198.701287] [49682][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701291] [49682][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701297] [49682][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200020001, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701302] [49682][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701306] [49682][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701315] [49682][0000500004201235][INFO][id:0x200020001 routine (DPL_HandleDrvPortEvent:ffff88010d1bbbc0) gen event: (LINK_UP), ret: 0.][DMI][DPL_CheckStateGen,2549]
[2014-07-17 23:45:45][  198.701324] [49682][0000500004201235][INFO][id: 0x200020001, last(INITIAL)->new(LINK_UP),StateListChanged = 0.][DMI][DPL_HandleDevOperateResult,3481]
[2014-07-17 23:45:45][  198.701331] [49682][0000500004200000][INFO][SendFruChg: state 20(LINK_UP) obj 213(ETH) id 0x54846fb8ca16503f 0x22001][DMI][DPL_SendDevChange,3661]
[2014-07-17 23:45:45][  198.701337] [49682][0000500004200000][WARN][Send fru change function is not register. Cannot send fru change.][DMI][SendFruChange,274]
[2014-07-17 23:45:45][  198.701344] [49682][0000500004201235][INFO][DPL handle device(202) drv event:13, Id:200020001, Ret:0.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701348] [49682][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701352] [49682][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701361] [49682][0000500004200000][ERR][Handle DevEvt 13 WWN 54846fb8ca16503f PortId 21f00 DevId 200011f00 No Node][DMI][DMI_HandleDevChgEvt,1033]
[2014-07-17 23:45:45][  198.701367] [49682][0000500004200000][ERR][Handle Dev Event 13 In Encl 54846fb8ca16503f Error! Ret -1][DMI][DMI_ChgEvtHandler,1227]
[2014-07-17 23:45:45][  198.701373] [49682][00005000042003e8][INFO][Change dmi sdr Event 12][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701378] [49682][0000500004200000][INFO][Handle Event outer Type 12(LINK_DOWN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701387] [49682][0000500004200000][ERR][Handle DevEvt 12 WWN 54846fb8ca16503f PortId 21f00 DevId 200011f00 No Node][DMI][DMI_HandleDevChgEvt,1033]
[2014-07-17 23:45:45][  198.701393] [49682][0000500004200000][ERR][Handle Dev Event 12 In Encl 54846fb8ca16503f Error! Ret -1][DMI][DMI_ChgEvtHandler,1227]
[2014-07-17 23:45:45][  198.701399] [49682][00005000042003e8][INFO][Change dmi sdr Event 15][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701404] [49682][0000500004200000][INFO][Handle Event outer Type 15(CLOSE) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701410] [49682][0000500004201235][INFO][DPL handle device(202) drv event:15, Id:200020001, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701416] [49682][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701421] [49682][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701428] [49682][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200020000, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701433] [49682][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701438] [49682][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701446] [49682][0000500004201235][INFO][id:0x200020000 routine (DPL_HandleDrvPortEvent:ffff88010d1bbbc0) gen event: (LINK_UP), ret: 0.][DMI][DPL_CheckStateGen,2549]
[2014-07-17 23:45:45][  198.701452] [49682][0000500004201235][INFO][id: 0x200020000, last(INITIAL)->new(LINK_UP),StateListChanged = 0.][DMI][DPL_HandleDevOperateResult,3481]
[2014-07-17 23:45:45][  198.701457] [49682][0000500004200000][INFO][SendFruChg: state 20(LINK_UP) obj 213(ETH) id 0x54846fb8ca16503f 0x22000][DMI][DPL_SendDevChange,3661]
[2014-07-17 23:45:45][  198.701462] [49682][0000500004200000][WARN][Send fru change function is not register. Cannot send fru change.][DMI][SendFruChange,274]
[2014-07-17 23:45:45][  198.701467] [49682][0000500004201235][INFO][DPL handle device(202) drv event:13, Id:200020000, Ret:0.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701472] [49682][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701476] [49682][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701481] [49682][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200020001, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701486] [49682][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701490] [49682][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701496] [49682][0000500004201235][INFO][DPL handle device(202) drv event:13, Id:200020001, Ret:0.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.701501] [49682][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.701505] [49682][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.701521] [49682][0000500004200000][ERR][Handle DevEvt 13 WWN 54846fb8ca16503f PortId 21f00 DevId 200011f00 No Node][DMI][DMI_HandleDevChgEvt,1033]
[2014-07-17 23:45:45][  198.701526] [49682][0000500004200000][ERR][Handle Dev Event 13 In Encl 54846fb8ca16503f Error! Ret -1][DMI][DMI_ChgEvtHandler,1227]
[2014-07-17 23:45:45][  198.701531] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 200][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.701538] [49682][00005000042003e8][INFO][New port sas sdr, driver 15 fru 0x200 id 0.][DMI][DAL_NewPortSasPattern,998]
[2014-07-17 23:45:45][  198.701549] [49682][0000500004203039][INFO][Fill sas(0x100f00020000)  maxspeed=12, portwidth=8, IsExternal 1, Protocol 1, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 0 !][DMI][DAL_FillSasMaxSpeed,770]
[2014-07-17 23:45:45][  198.701556] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 200][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.701572] [49682][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.701577] [49682][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.701589] [49682][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.701594] [49682][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.702565] [49682][0000500004201234][ERR][ Op:Sas.ExtOp->GetAttachedWwn(0xffffffffa0bf2060) Fill Dev Error: Ret -1.][DMI][DPL_ShowSasPortInfo,2492]
[2014-07-17 23:45:45][  198.702570] [49682][0000500004200000][INFO][Dev 200 id 0x100f00020000 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.702575] [49682][0000500004200000][INFO][AddDev:200, Id:0x100f00020000, memory:0xffff880073056000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.702583] [49682][000050000410054f][INFO][frame call handler: set port status(enable,disable)][SAS_INI][SAL_FramePortOperHandler,373]
[2014-07-17 23:45:45][  198.702594] [49682][00005000041000de][INFO][Card:0 Phyid: 8 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702600] [49682][00005000041000de][INFO][Card:0 Phyid: 9 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702604] [49682][00005000041000de][INFO][Card:0 Phyid:10 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702609] [49682][00005000041000de][INFO][Card:0 Phyid:11 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702613] [49682][00005000041000de][INFO][Card:0 Phyid:12 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702617] [49682][00005000041000de][INFO][Card:0 Phyid:13 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702622] [49682][00005000041000de][INFO][Card:0 Phyid:14 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702626] [49682][00005000041000de][INFO][Card:0 Phyid:15 is already open,status:0x1][SAS_INI][SAL_CommSwitchPhy,1540]
[2014-07-17 23:45:45][  198.702634] [49682][0000500004200000][INFO][Open SAS port(0x100f00020000) success.][DMI][DMI_OpenCtrlSasPort,1202]
[2014-07-17 23:45:45][  198.702638] [49682][0000500004200000][INFO][Device join up success, DevId: 0x100f00020000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.702642] [49682][0000500004200000][INFO][AddDev 0x100f00020000 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.702647] [49682][0000500004203039][INFO][Add obj success, id:0x1f2000, sdr:200, devid:0x100f00020000!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.702653] [49682][00005000042003e8][INFO][Alloc dmi sdr, type 200][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.702660] [49682][00005000042003e8][INFO][New port sas sdr, driver 15 fru 0x200 id 1.][DMI][DAL_NewPortSasPattern,998]
[2014-07-17 23:45:45][  198.702671] [49682][0000500004203039][INFO][Fill sas(0x100f00020001)  maxspeed=12, portwidth=4, IsExternal 1, Protocol 1, PortType 0, DependentPortId 0x0, SfpSupport 2, BoardType 1, BoardId 0 !][DMI][DAL_FillSasMaxSpeed,770]
[2014-07-17 23:45:45][  198.702678] [49682][00005000042003e8][INFO][Add dmi port sdr, sdr type 200][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.702691] [49682][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.702697] [49682][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.702709] [49682][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.702714] [49682][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.703058] [49683][0000500004201234][ERR][ Op:Sas.ExtOp->GetAttachedWwn(0xffffffffa0bf2060) Fill Dev Error: Ret -1.][DMI][DPL_ShowSasPortInfo,2492]
[2014-07-17 23:45:45][  198.703066] [49683][0000500004200000][INFO][Dev 200 id 0x100f00020001 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.703083] [49683][0000500004200000][INFO][AddDev:200, Id:0x100f00020001, memory:0xffff880073055800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.703094] [49683][000050000410054f][INFO][frame call handler: set port status(enable,disable)][SAS_INI][SAL_FramePortOperHandler,373]
[2014-07-17 23:45:45][  198.703108] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 0(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703116] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 1(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703126] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 2(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703137] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 3(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703148] [49683][000050000410123f][INFO][Card:0/Phy: 0 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.703156] [49683][000050000410123f][INFO][Card:0/Phy: 1 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.703164] [49683][000050000410123f][INFO][Card:0/Phy: 2 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.703176] [49683][0000500004200000][INFO][Open SAS port(0x100f00020001) success.][DMI][DMI_OpenCtrlSasPort,1202]
[2014-07-17 23:45:45][  198.703181] [49683][0000500004200000][INFO][Device join up success, DevId: 0x100f00020001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.703191] [49683][000050000410123f][INFO][Card:0/Phy: 3 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.703195] [49683][0000500004200000][INFO][AddDev 0x100f00020001 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.703215] [49683][0000500004203039][INFO][Add obj success, id:0x1f2001, sdr:200, devid:0x100f00020001!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.703228] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 101][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.703242] [49683][00005000042003e8][INFO][New sfp sdr, driver 15 fru 0x200 id 1][DMI][DAL_NewSfpPattern,851]
[2014-07-17 23:45:45][  198.703255] [49683][0000500004200000][INFO][port speed 12, eth speed 12.][DMI][DAL_FillSfpMaxSpeed,651]
[2014-07-17 23:45:45][  198.703261] [49683][0000500004203039][INFO][Fill sfp(0x100f00020001)  maxspeed=12!][DMI][DAL_FillSfpMaxSpeed,662]
[2014-07-17 23:45:45][  198.703271] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 101][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.703286] [49683][0000500004201234][ERR][ Op:Sfp->PhyInfo.Op.GetName(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowSfpInfo,2976]
[2014-07-17 23:45:45][  198.703307] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.703318] [49683][0000500004200000][INFO][Dev 101 id 0x100f00020001 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.703330] [49683][0000500004200000][INFO][AddDev:101, Id:0x100f00020001, memory:0xffff880072c66400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.703342] [49683][0000500004200000][INFO][Device join up success, DevId: 0x100f00020001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.703349] [49683][0000500004200000][INFO][AddDev 0x100f00020001 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.703361] [49683][0000500004200001][INFO][Add sfp sdr 0x100f00020001 driver 15 succeed.][DMI][DAL_PortSfpSupportHandle,1072]
[2014-07-17 23:45:45][  198.703369] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 200][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.703379] [49683][00005000042003e8][INFO][New port sas sdr, driver 15 fru 0x200 id 2.][DMI][DAL_NewPortSasPattern,998]
[2014-07-17 23:45:45][  198.703395] [49683][0000500004203039][INFO][Fill sas(0x100f00020002)  maxspeed=12, portwidth=4, IsExternal 1, Protocol 1, PortType 0, DependentPortId 0x0, SfpSupport 2, BoardType 1, BoardId 0 !][DMI][DAL_FillSasMaxSpeed,770]
[2014-07-17 23:45:45][  198.703403] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 200][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.703425] [49683][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_GetPortSilkScreen,2024]
[2014-07-17 23:45:45][  198.703431] [49683][0000500004201234][ERR][ Op:DalBase->Op.GetName(0xffffffffa0bf27f0) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2293]
[2014-07-17 23:45:45][  198.703455] [49683][0000500004200457][WARN][Cannot find fru type 65534, item OBJ_65534_PORT_NUM.][DMI][DAL_ConfGetPortFunc,1941]
[2014-07-17 23:45:45][  198.703467] [49683][0000500004201234][ERR][ Op:DalBase->Op.GetPortLogicType(0xffffffffa0bf2780) Fill Dev Error: Ret -1.][DMI][DPL_ShowPortBaseInfo,2330]
[2014-07-17 23:45:45][  198.703959] [49683][0000500004201234][ERR][ Op:Sas.ExtOp->GetAttachedWwn(0xffffffffa0bf2060) Fill Dev Error: Ret -1.][DMI][DPL_ShowSasPortInfo,2492]
[2014-07-17 23:45:45][  198.703964] [49683][0000500004200000][INFO][Dev 200 id 0x100f00020002 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.703968] [49683][0000500004200000][INFO][AddDev:200, Id:0x100f00020002, memory:0xffff880073031000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.703974] [49683][000050000410054f][INFO][frame call handler: set port status(enable,disable)][SAS_INI][SAL_FramePortOperHandler,373]
[2014-07-17 23:45:45][  198.703983] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 4(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703988] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 5(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703994] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 6(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.703999] [49683][00005000041010d7][INFO][Card:0 is going to start phy: 7(addr:0xa202030405060708,rate:4)][SAS_INI][Quark_StartPhy,61]
[2014-07-17 23:45:45][  198.704004] [49683][000050000410123f][INFO][Card:0/Phy: 4 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.704009] [49683][000050000410123f][INFO][Card:0/Phy: 5 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.704015] [49683][000050000410123f][INFO][Card:0/Phy: 6 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.704023] [49683][0000500004200000][INFO][Open SAS port(0x100f00020002) success.][DMI][DMI_OpenCtrlSasPort,1202]
[2014-07-17 23:45:45][  198.704028] [49683][0000500004200000][INFO][Device join up success, DevId: 0x100f00020002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704033] [49683][0000500004200000][INFO][AddDev 0x100f00020002 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704037] [49683][000050000410123f][INFO][Card:0/Phy: 7 start phy resp,val:0x0(OK)][SAS_INI][Quark_StartPhyRsp,202]
[2014-07-17 23:45:45][  198.704042] [49683][0000500004203039][INFO][Add obj success, id:0x1f2002, sdr:200, devid:0x100f00020002!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704047] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 101][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704052] [49683][00005000042003e8][INFO][New sfp sdr, driver 15 fru 0x200 id 2][DMI][DAL_NewSfpPattern,851]
[2014-07-17 23:45:45][  198.704060] [49683][0000500004200000][INFO][port speed 12, eth speed 12.][DMI][DAL_FillSfpMaxSpeed,651]
[2014-07-17 23:45:45][  198.704064] [49683][0000500004203039][INFO][Fill sfp(0x100f00020002)  maxspeed=12!][DMI][DAL_FillSfpMaxSpeed,662]
[2014-07-17 23:45:45][  198.704068] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 101][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704074] [49683][0000500004201234][ERR][ Op:Sfp->PhyInfo.Op.GetName(0x          (null)) Fill Dev Error: Null Method.][DMI][DPL_ShowSfpInfo,2976]
[2014-07-17 23:45:45][  198.704087] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704091] [49683][0000500004200000][INFO][Dev 101 id 0x100f00020002 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704096] [49683][0000500004200000][INFO][AddDev:101, Id:0x100f00020002, memory:0xffff880072c66000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704101] [49683][0000500004200000][INFO][Device join up success, DevId: 0x100f00020002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704105] [49683][0000500004200000][INFO][AddDev 0x100f00020002 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704109] [49683][0000500004200001][INFO][Add sfp sdr 0x100f00020002 driver 15 succeed.][DMI][DAL_PortSfpSupportHandle,1072]
[2014-07-17 23:45:45][  198.704114] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704120] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 2][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704132] [49683][0000500004203039][INFO][Fill pcie(0x300020002)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704139] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704146] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704150] [49683][0000500004200000][INFO][Dev 203 id 0x300020002 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704154] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020002, memory:0xffff880072c65c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704159] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020002.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704164] [49683][0000500004200000][INFO][AddDev 0x300020002 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704168] [49683][0000500004203039][INFO][Add obj success, id:0x32002, sdr:203, devid:0x300020002!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704173] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704179] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 3][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704190] [49683][0000500004203039][INFO][Fill pcie(0x300020003)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704197] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704202] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704206] [49683][0000500004200000][INFO][Dev 203 id 0x300020003 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704210] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020003, memory:0xffff880072c65800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704215] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020003.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704219] [49683][0000500004200000][INFO][AddDev 0x300020003 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704224] [49683][0000500004203039][INFO][Add obj success, id:0x32003, sdr:203, devid:0x300020003!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704228] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704233] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 0][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704242] [49683][0000500004203039][INFO][Fill pcie(0x300020000)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704247] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704252] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704256] [49683][0000500004200000][INFO][Dev 203 id 0x300020000 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704262] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020000, memory:0xffff880072c65400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704268] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020000.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704273] [49683][0000500004200000][INFO][AddDev 0x300020000 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704277] [49683][0000500004203039][INFO][Add obj success, id:0x32000, sdr:203, devid:0x300020000!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704281] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704286] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 1][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704294] [49683][0000500004203039][INFO][Fill pcie(0x300020001)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704300] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704304] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704309] [49683][0000500004200000][INFO][Dev 203 id 0x300020001 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704315] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020001, memory:0xffff880072c65000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704320] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020001.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704324] [49683][0000500004200000][INFO][AddDev 0x300020001 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704329] [49683][0000500004203039][INFO][Add obj success, id:0x32001, sdr:203, devid:0x300020001!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704334] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704338] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 4][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704347] [49683][0000500004203039][INFO][Fill pcie(0x300020004)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704352] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704356] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704360] [49683][0000500004200000][INFO][Dev 203 id 0x300020004 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704365] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020004, memory:0xffff880072c64c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704369] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020004.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704373] [49683][0000500004200000][INFO][AddDev 0x300020004 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704378] [49683][0000500004203039][INFO][Add obj success, id:0x32004, sdr:203, devid:0x300020004!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704383] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704389] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 5][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704400] [49683][0000500004203039][INFO][Fill pcie(0x300020005)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704406] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704412] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704416] [49683][0000500004200000][INFO][Dev 203 id 0x300020005 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704420] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020005, memory:0xffff880072c64800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704425] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020005.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704429] [49683][0000500004200000][INFO][AddDev 0x300020005 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704434] [49683][0000500004203039][INFO][Add obj success, id:0x32005, sdr:203, devid:0x300020005!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704438] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704443] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 6][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704451] [49683][0000500004203039][INFO][Fill pcie(0x300020006)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704456] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704461] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704465] [49683][0000500004200000][INFO][Dev 203 id 0x300020006 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704469] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020006, memory:0xffff880072c64400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704473] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020006.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704478] [49683][0000500004200000][INFO][AddDev 0x300020006 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704482] [49683][0000500004203039][INFO][Add obj success, id:0x32006, sdr:203, devid:0x300020006!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704486] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704491] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 7][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704499] [49683][0000500004203039][INFO][Fill pcie(0x300020007)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704504] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704509] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704513] [49683][0000500004200000][INFO][Dev 203 id 0x300020007 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704517] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020007, memory:0xffff880072c64000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704522] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020007.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704526] [49683][0000500004200000][INFO][AddDev 0x300020007 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704530] [49683][0000500004203039][INFO][Add obj success, id:0x32007, sdr:203, devid:0x300020007!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704535] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704540] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 8][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704548] [49683][0000500004203039][INFO][Fill pcie(0x300020008)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704553] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704557] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704561] [49683][0000500004200000][INFO][Dev 203 id 0x300020008 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704566] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020008, memory:0xffff880072c63c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704570] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020008.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704574] [49683][0000500004200000][INFO][AddDev 0x300020008 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704579] [49683][0000500004203039][INFO][Add obj success, id:0x32008, sdr:203, devid:0x300020008!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704583] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704588] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 9][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704596] [49683][0000500004203039][INFO][Fill pcie(0x300020009)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704601] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704606] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704610] [49683][0000500004200000][INFO][Dev 203 id 0x300020009 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704614] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020009, memory:0xffff880072c63800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704619] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020009.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704625] [49683][0000500004200000][INFO][AddDev 0x300020009 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704632] [49683][0000500004203039][INFO][Add obj success, id:0x32009, sdr:203, devid:0x300020009!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704641] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704663] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 10][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704676] [49683][0000500004203039][INFO][Fill pcie(0x30002000a)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704690] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704707] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704720] [49683][0000500004200000][INFO][Dev 203 id 0x30002000a fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704729] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000a, memory:0xffff880072c63400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704739] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000a.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704747] [49683][0000500004200000][INFO][AddDev 0x30002000a In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704769] [49683][0000500004203039][INFO][Add obj success, id:0x3200a, sdr:203, devid:0x30002000a!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704776] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704791] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 11][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704807] [49683][0000500004203039][INFO][Fill pcie(0x30002000b)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704818] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704827] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704834] [49683][0000500004200000][INFO][Dev 203 id 0x30002000b fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704856] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000b, memory:0xffff880072c63000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704867] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000b.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704875] [49683][0000500004200000][INFO][AddDev 0x30002000b In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704885] [49683][0000500004203039][INFO][Add obj success, id:0x3200b, sdr:203, devid:0x30002000b!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704896] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704904] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 12][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704915] [49683][0000500004203039][INFO][Fill pcie(0x30002000c)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.704923] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.704932] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.704937] [49683][0000500004200000][INFO][Dev 203 id 0x30002000c fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.704943] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000c, memory:0xffff880072c62c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.704950] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000c.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.704956] [49683][0000500004200000][INFO][AddDev 0x30002000c In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.704961] [49683][0000500004203039][INFO][Add obj success, id:0x3200c, sdr:203, devid:0x30002000c!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.704970] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.704980] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 13][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.704995] [49683][0000500004203039][INFO][Fill pcie(0x30002000d)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705003] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705010] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705019] [49683][0000500004200000][INFO][Dev 203 id 0x30002000d fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705025] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000d, memory:0xffff880072c62800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705035] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000d.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705046] [49683][0000500004200000][INFO][AddDev 0x30002000d In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705052] [49683][0000500004203039][INFO][Add obj success, id:0x3200d, sdr:203, devid:0x30002000d!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705061] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705069] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 14][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705086] [49683][0000500004203039][INFO][Fill pcie(0x30002000e)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705098] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705115] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705122] [49683][0000500004200000][INFO][Dev 203 id 0x30002000e fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705131] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000e, memory:0xffff880072c62400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705147] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000e.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705154] [49683][0000500004200000][INFO][AddDev 0x30002000e In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705166] [49683][0000500004203039][INFO][Add obj success, id:0x3200e, sdr:203, devid:0x30002000e!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705182] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705189] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 15][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705217] [49683][0000500004203039][INFO][Fill pcie(0x30002000f)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705226] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705238] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705244] [49683][0000500004200000][INFO][Dev 203 id 0x30002000f fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705256] [49683][0000500004200000][INFO][AddDev:203, Id:0x30002000f, memory:0xffff880072c62000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705270] [49683][0000500004200000][INFO][Device join up success, DevId: 0x30002000f.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705278] [49683][0000500004200000][INFO][AddDev 0x30002000f In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705289] [49683][0000500004203039][INFO][Add obj success, id:0x3200f, sdr:203, devid:0x30002000f!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705302] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705311] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 16][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705331] [49683][0000500004203039][INFO][Fill pcie(0x300020010)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705340] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705348] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705355] [49683][0000500004200000][INFO][Dev 203 id 0x300020010 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705364] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020010, memory:0xffff880072c61c00.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705376] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020010.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705388] [49683][0000500004200000][INFO][AddDev 0x300020010 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705400] [49683][0000500004203039][INFO][Add obj success, id:0x32010, sdr:203, devid:0x300020010!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705408] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705415] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 17][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705424] [49683][0000500004203039][INFO][Fill pcie(0x300020011)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705431] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705437] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705443] [49683][0000500004200000][INFO][Dev 203 id 0x300020011 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705450] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020011, memory:0xffff880072c61800.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705457] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020011.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705477] [49683][0000500004200000][INFO][AddDev 0x300020011 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705487] [49683][0000500004203039][INFO][Add obj success, id:0x32011, sdr:203, devid:0x300020011!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705499] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705512] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 18][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705522] [49683][0000500004203039][INFO][Fill pcie(0x300020012)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705540] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705556] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705570] [49683][0000500004200000][INFO][Dev 203 id 0x300020012 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705580] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020012, memory:0xffff880072c61400.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705590] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020012.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705600] [49683][0000500004200000][INFO][AddDev 0x300020012 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705609] [49683][0000500004203039][INFO][Add obj success, id:0x32012, sdr:203, devid:0x300020012!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705619] [49683][00005000042003e8][INFO][Alloc dmi sdr, type 203][DMI][DAL_AllocDmiSdr,377]
[2014-07-17 23:45:45][  198.705625] [49683][00005000042003e8][INFO][New port pcie sdr, driver 3 fru 0x200 id 19][DMI][DAL_NewPortPciePattern,1188]
[2014-07-17 23:45:45][  198.705635] [49683][0000500004203039][INFO][Fill pcie(0x300020013)  maxspeed=0, portwidth=0, IsExternal 0, Protocol 4, PortType 0, DependentPortId 0x0, SfpSupport 0, BoardType 1, BoardId 1 !][DMI][DAL_FillPcieMaxSpeed,918]
[2014-07-17 23:45:45][  198.705645] [49683][00005000042003e8][INFO][Add dmi port sdr, sdr type 203][DMI][DAL_AddDmiPortSdr,457]
[2014-07-17 23:45:45][  198.705653] [49683][1500003ff0000][ERR][The context of thread is wrong.][DEBUG][DBG_Print,441][Misc_Event_Thre]
[2014-07-17 23:45:45][  198.705663] [49683][0000500004200000][INFO][Dev 203 id 0x300020013 fill operation is showinfo][DMI][DMI_AddDevObj,1429]
[2014-07-17 23:45:45][  198.705672] [49683][0000500004200000][INFO][AddDev:203, Id:0x300020013, memory:0xffff880072c61000.][DMI][DMI_AddDevObj,1439]
[2014-07-17 23:45:45][  198.705681] [49683][0000500004200000][INFO][Device join up success, DevId: 0x300020013.][DMI][DMI_LinkDev,1284]
[2014-07-17 23:45:45][  198.705686] [49683][0000500004200000][INFO][AddDev 0x300020013 In Unknow Fru Wwn 54846fb8ca16503f Ret 0][DMI][DPL_HandlePortIn,6312]
[2014-07-17 23:45:45][  198.705695] [49683][0000500004203039][INFO][Add obj success, id:0x32013, sdr:203, devid:0x300020013!][DMI][DAL_MiscEventThread,1234]
[2014-07-17 23:45:45][  198.705704] [49683][00005000042003e8][INFO][Change dmi sdr Event 47][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705714] [49683][0000500004200000][INFO][Handle Event outer Type 47(PCIE_EEPROMERR) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705726] [49683][0000500004200000][INFO][Handle fru change event slotId 0 type 1][DMI][DMI_HandleFruChgEvt,800]
[2014-07-17 23:45:45][  198.705738] [49683][0000500004200000][INFO][Handle Fru  200 change event: 47(PCIE_EEPROMERR)][DMI][DMI_HandleFruChangeEvent,1451]
[2014-07-17 23:45:45][  198.705751] [49683][00005000042003e8][INFO][Change dmi sdr Event 38][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705761] [49683][0000500004200000][INFO][Handle Event outer Type 38(PCIEERR_INREPAIR) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705771] [49683][0000500004200000][INFO][Handle fru change event slotId 0 type 1][DMI][DMI_HandleFruChgEvt,800]
[2014-07-17 23:45:45][  198.705783] [49683][0000500004200000][INFO][Handle Fru  200 change event: 38(PCIEERR_INREPAIR)][DMI][DMI_HandleFruChangeEvent,1451]
[2014-07-17 23:45:45][  198.705792] [49683][00005000042003e8][INFO][Change dmi sdr Event 12][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705799] [49683][0000500004200000][INFO][Handle Event outer Type 12(LINK_DOWN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705810] [49683][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705817] [49683][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705829] [49683][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200020002, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.705835] [49683][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705841] [49683][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705852] [49683][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200010003, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.705858] [49683][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705865] [49683][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705879] [49683][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200010002, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.705892] [49683][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705908] [49683][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705927] [49683][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200010001, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  198.705936] [49683][00005000042003e8][INFO][Change dmi sdr Event 14][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:45][  198.705951] [49683][0000500004200000][INFO][Handle Event outer Type 14(OPEN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:45][  198.705972] [49683][0000500004201235][INFO][DPL handle device(202) drv event:14, Id:200010000, Ret:-1.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:45][  199.078347] [49777][1500000740000][INFO][EA_INIT: Get product model().][EA][eaGetProductInfo,59][insmod]
[2014-07-17 23:45:45][  199.078354] [49777][0000500004200000][INFO][Operate enclosure 0x54846fb8ca16503f begin, opcode(3).][DMI][OperateEnclosure,220]
[2014-07-17 23:45:45][  199.078360] [49777][0000500004200000][INFO][Operate enclosure 0x54846fb8ca16503f end, opcode(3), result(0).][DMI][OperateEnclosure,240]
[2014-07-17 23:45:45][  199.078365] [49777][1500000740000][INFO][EA_INIT: Get controller count(2) ok.][EA][eaGetProductInfo,71][insmod]
[2014-07-17 23:45:45][  199.078414] [49777][1500000740000][INFO][EA_INIT:The information of buffer: maxLineLine(269), maxLineCount(69), buff(ffff88004efd8000)][EA][mallocFileBuff,341][insmod]
[2014-07-17 23:45:45][  199.078446] [49777][1500000740000][INFO][EA_INIT:Find item(BayId), value(0)][EA][findItem,238][insmod]
[2014-07-17 23:45:45][  199.078453] [49777][1500000740000][INFO][EA_INIT: Get bay item(value 0) from bay config file ok.][EA][getBayItemValueFromFile,155][insmod]
[2014-07-17 23:45:45][  199.078485] [49777][1500000740000][INFO][EA_INIT:The information of buffer: maxLineLine(269), maxLineCount(69), buff(ffff88004efd8000)][EA][mallocFileBuff,341][insmod]
[2014-07-17 23:45:45][  199.078492] [49777][0000500004200000][INFO][Operate ctrl board begin, opcode(0).][DMI][OperateCtrlBoard,3225]
[2014-07-17 23:45:45][  199.078498] [49777][0000500004200000][ERR][Can't find CtrlBoard Fru][DMI][DMI_GetSingleCtrlBoardInfo,3031]
[2014-07-17 23:45:45][  199.078502] [49777][0000500004200000][INFO][Operate ctrl board end, opcode(0), result(1077948996).][DMI][OperateCtrlBoard,3246]
[2014-07-17 23:45:45][  199.078507] [49777][1500000740000][ERR][EA_INIT: Get controller board info failed.][EA][calcLocalNid,196][insmod]
[2014-07-17 23:45:45][  199.078517] [49777][1500000740000][INFO][EA_INIT: Begin to select config file.][EA][CS_Init,102][insmod]
[2014-07-17 23:45:45][  199.078524] [49777][1500000740000][INFO][EA_INIT:Success to get product type (), the whole product config file path is (/OSM/conf/product..ini).][EA][CS_SelectFile,66][insmod]
[2014-07-17 23:45:45][  199.078538] [49777][1500000740000][INFO][EA_INIT: Can not access product config file (error code -1), so user should use default one (product.ini).][EA][CS_SelectFile,82][insmod]
[2014-07-17 23:45:45][  199.087540] [49779][1500000740000][INFO][EA_INIT:Success to get product type (), the whole product config file path is (/OSM/conf/product..dat).][EA][CS_SelectFile,66][insmod]
[2014-07-17 23:45:45][  199.087550] [49779][1500000740000][INFO][EA_INIT: Can not access product config file (error code -1), so user should use default one (product.dat).][EA][CS_SelectFile,82][insmod]
[2014-07-17 23:45:45][  199.095707] [49781][0000500004200000][INFO][Operate node begin, opcode(14).][DMI][OperateNode,109]
[2014-07-17 23:45:45][  199.095712] [49781][0000500004200000][INFO][Set cluster node ID(65535).][DMI][SetClusterNodeId,886]
[2014-07-17 23:45:45][  199.095716] [49781][0000500004200000][INFO][Operate node end, opcode(14), result(0).][DMI][OperateNode,129]
[2014-07-17 23:45:45][  199.095721] [49781][1500000740000][INFO][EA_INIT: Set node id(65535) ok.][EA][eaSetClsInfo,126][insmod]
[2014-07-17 23:45:45][  199.095725] [49781][0000500004200000][INFO][Operate node begin, opcode(15).][DMI][OperateNode,109]
[2014-07-17 23:45:45][  199.095729] [49781][0000500004200000][INFO][Set cluster bay ID(0).][DMI][SetClusterBayId,917]
[2014-07-17 23:45:45][  199.095733] [49781][0000500004200000][INFO][Operate node end, opcode(15), result(0).][DMI][OperateNode,129]
[2014-07-17 23:45:45][  199.095737] [49781][1500000740000][INFO][EA_INIT: Set engine id(0) ok.][EA][eaSetClsInfo,136][insmod]
[2014-07-17 23:45:45][  199.095741] [49781][0000500004200000][INFO][Operate node begin, opcode(12).][DMI][OperateNode,109]
[2014-07-17 23:45:45][  199.095750] [49781][0000500004200000][WARN][Can't get control board.][DMI][SetNodeEthLinkMode,1403]
[2014-07-17 23:45:45][  199.095754] [49781][0000500004200000][INFO][Operate node end, opcode(12), result(-1).][DMI][OperateNode,129]
[2014-07-17 23:45:45][  199.095759] [49781][1500000740000][ERR][EA_INIT: Set eth link mode(0x220022) failed.][EA][setEthConf,92][insmod]
[2014-07-17 23:45:45][  199.095763] [49781][1500000740000][INFO][EA_INFO: module init ok.][EA][initEaModule,184][insmod]
[2014-07-17 23:45:46][  199.282466] [49828][00005000040900aa][INFO][Draco NT Device(3:0.0) not set LTSSM and egress credit timeout!][PCIE][PCIECORE_HandleDracoNtLinkBug,1573]
[2014-07-17 23:45:46][  199.282480] [49828][00005000040b0aaa][INFO][The device(3:0.0)  uncorrectable error:40000][PCIE_AER][PCIEAER_CleanOneNTLinkSideErrReg,1934]
[2014-07-17 23:45:46][  199.282488] [49828][00005000040b0aaa][INFO][Recover NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2079]
[2014-07-17 23:45:46][  199.282495] [49828][0000500004090aaa][INFO][Notify xnet nt(3:0.0) link up][PCIE][PCIECORE_NotifyXnetLinkStatus,517]
[2014-07-17 23:45:46][  199.282504] [49828][00005000040900aa][WARN][The thread PCIE_NTTHREAD_0 is stop!][PCIE][PCIECORE_MirrorNTThread,1323]
[2014-07-17 23:45:46][  199.282508] [49828][00005000040900aa][WARN][Mirror nt thread PCIE_NTTHREAD_0 is out.][PCIE][PCIECORE_MirrorNTThread,1388]
[2014-07-17 23:45:46][  199.282539] [49828][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:46][  199.282546] [49828][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:46][  199.282604] [49828][540004061107][INF][In hard reset function.][BSP][SPV2R1_H.dReset,3061][PCIEHandleError]
[2014-07-17 23:45:46][  200.077116] [50027][000050000408b399][INFO][Event_dev: eth4, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:46][  200.078914] [50027][000050000408b399][INFO][Event_dev: eth5, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:46][  200.080685] [50027][000050000408b399][INFO][Event_dev: eth6, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:47][  200.322363] [50088][1500000fa0025][INFO][Dif register PID to diagnose success.][DIF][initDifDiagnoseModule,794][insmod]
[2014-07-17 23:45:47][  200.322374] [50088][1500000fa0027][INFO][Dif register PID to cli success.][DIF][initDifDiagnoseModule,805][insmod]
[2014-07-17 23:45:47][  200.436355] [50116][15000002f0000][INFO][CFG_FRM: SizeofMsg 263248 SizeofCfg 1185480.][SYS][initCfgFrameModule,637][insmod]
[2014-07-17 23:45:47][  200.663685] [50173][1500003f00000][ERR][start init omlib.][LIBRARY][initOmlib,33][insmod]
[2014-07-17 23:45:47][  200.663691] [50173][1500003f00075][INFO][..........load produict file/OSM/conf/om_config.ini.][LIBRARY][OM_CST_LoadTextConfig,1204][insmod]
[2014-07-17 23:45:47][  200.676745] [50177][1500003f00076][INFO][..........load produict file/OSM/conf/product.ini.][LIBRARY][OM_CST_LoadTextConfig,1214][insmod]
[2014-07-17 23:45:47][  200.744266] [50194][1500003f0000a][ERR][The function point is NULL.][LIBRARY][OMBASE_GetProductName,246][insmod]
[2014-07-17 23:45:47][  200.744401] [50194][1500003f00077][INFO][om load config success.][LIBRARY][OM_CST_LoadTextConfig,1232][insmod]
[2014-07-17 23:45:47][  200.744619] [50194][1500003f0000e][INFO][Om depends init success.][LIBRARY][initOmDepends,924][insmod]
[2014-07-17 23:45:47][  200.847093] [50219][1500003f00033][INFO][OM_ADAPTER: Initial OM adapter success.][LIBRARY][omAdapterInit,49][insmod]
[2014-07-17 23:45:47][daemon:NOTICE][ForkProcess,527]  recv msg to create process: /OSM/bin/msg_server
[2014-07-17 23:45:47][daemon:NOTICE][ForkProcess,563] create process pid:13584, name:/OSM/bin/msg_server success.
[2014-07-17 23:45:47][2014-07-17 23:45:47,805][201108][0][NOTICE][PROCESS IS STARTING, VERSION : 1.2.3.2!][MSG_SERVER][../src/boot/df_main.c:main,170][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,805][201108][0][NOTICE][Module [bbox] [7] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,805][201108][0][NOTICE][Module [bbox] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,805][201108][0][NOTICE][Module [lock] [6] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [lock] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [mem] [3] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [mem] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [task] [4] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [task] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [log] [2] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,806][201109][0][NOTICE][Module [log] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,807][201109][0][NOTICE][Module [msg] [5] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201111][0][NOTICE][Module [msg] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201111][0][NOTICE][Module [timer] [1] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201111][0][NOTICE][Module [timer] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [q922] [9] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Q922 is not activated.][MSG_SERVER][../src/q922/df_q922itf.c:_LC_ModuleInit,813][msg_server,13584,9]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [q922] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [softdbg] [8] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [softdbg] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [ctlserver] [11] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [ctlserver] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [MSG_SERVER] [32] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][201112][1500003e9003d][NOTICE][MSG_Server Start: Build version(Ver 1.00), Date (Jul  8 2014 03:31:52).][MSG_SERVER][../src/msg_server_main.c:MSG_ServerModuleInit,39][msg_server,13584,32]
[2014-07-17 23:45:47][201112][1500003e90040][NOTICE][Msg server mem init success. size:6291456, ptNo:2.][MSG_SERVER][../src/msg_server_main.c:_MSG_ServerInitMemPt,138][msg_server,13584,73]
[2014-07-17 23:45:47][201112][1500003e9001f][INFO][MSG server inner server init successfully.][MSG_SERVER][../src/msg_server.c:MSG_ServerInnerServerInit,969][msg_server,13584,73]
[2014-07-17 23:45:47][201112][1500003e90029][INFO][MSG server start successfully!][MSG_SERVER][../src/msg_server.c:MSG_ServerInit,1112][msg_server,13584,73]
[2014-07-17 23:45:47][201112][1500003e9003e][INFO][MsgServer module is waiting for system to be normal.][MSG_SERVER][../src/msg_server_main.c:_MSG_ServerMainInit,88][msg_server,13584,73]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [MSG_SERVER] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [module] [128] is starting!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,244][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][Module [module] is running!][MSG_SERVER][../src/boot/df_main.c:BOOT_InitModules,263][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,809][201112][0][NOTICE][PROCESS IS RUNNING!][MSG_SERVER][../src/boot/df_main.c:main,194][msg_server,13584,0]
[2014-07-17 23:45:47][2014-07-17 23:45:47,811][201113][0][NOTICE][Creating taskcb(73)!][MSG_SERVER][../src/task/df_task.c:__TSK_MsgTaskEntry,575][msg_server,13584,73]
[2014-07-17 23:45:47][2014-07-17 23:45:47,811][201113][0][NOTICE][ ----Task 73:---- name(S_CheckThrdConn) state(0xb0b) booked(0) os-pid(13590) thread-id(0x7f451b1bd700) type(0) policy(0) priority(0) stack-size(0x19000) stack-top(0x7f451b1be000) entry(0x42a030) parent-tid(32) birth-tick(0) birth-time(2014-07-17 23:45:47,809) parent-addr(0x40ab8b) msg-queue(0)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,73]
[2014-07-17 23:45:47][2014-07-17 23:45:47,811][201114][0][NOTICE][Creating taskcb(33)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,33]
[2014-07-17 23:45:47][2014-07-17 23:45:47,811][201114][0][NOTICE][ ----Task 33:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(13589) thread-id(0x7f451b1d6700) type(1) policy(0) priority(0) stack-size(0x19000) stack-top(0x7f451b1d7000) entry(0x42f810) parent-tid(73) birth-tick(0) birth-time(2014-07-17 23:45:47,809) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,33]
[2014-07-17 23:45:47][201114][1500003f0008d][INFO][Ipv4 listen thread start.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,448][msg_server,13584,33]
[2014-07-17 23:45:47][201114][1500003f00090][INFO][Ipv4 listen socket init success, socket is (8).][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,470][msg_server,13584,33]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][Creating taskcb(8)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,8]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][ ----Task 8:---- name(SoftdbgTask) state(0xb0b) booked(1) os-pid(13588) thread-id(0x7f451b208700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b209000) entry(0x415210) parent-tid(8) birth-tick(0) birth-time(2014-07-17 23:45:47,809) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,8]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][Creating taskcb(1)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,1]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][ ----Task 1:---- name(timerTask) state(0xb0b) booked(1) os-pid(13587) thread-id(0x7f451b23a700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b23b000) entry(0x4125e0) parent-tid(1) birth-tick(0) birth-time(2014-07-17 23:45:47,809) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,1]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][Creating taskcb(2)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,2]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][ ----Task 2:---- name(LogTask) state(0xb0b) booked(1) os-pid(13586) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x41fa70) parent-tid(2) birth-tick(0) birth-time(2014-07-17 23:45:47,806) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,2]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][WARN][A self-processing task exited(2, 0x41fa70) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,2]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][Freeing taskcb(2)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,2]
[2014-07-17 23:45:47][2014-07-17 23:45:47,812][201115][0][NOTICE][ ----Task 2:---- name(LogTask) state(0xb0b) booked(1) os-pid(13586) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x41fa70) parent-tid(2) birth-tick(0) birth-time(2014-07-17 23:45:47,806) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,2]
[2014-07-17 23:45:47][  201.085836] [50279][1500003e80081][INFO][MSG init address : index (0), local addr (127.127.127.11), peer addr (127.127.127.10).][MSG][MSG_InitBoardInfo,100][insmod]
[2014-07-17 23:45:47][  201.086015] [50279][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][insmod]
[2014-07-17 23:45:47][  201.086026] [50279][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][insmod]
[2014-07-17 23:45:47][201118][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:45:47][  201.086055] [50279][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][insmod]
[2014-07-17 23:45:47][  201.086061] [50279][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][insmod]
[2014-07-17 23:45:47][2014-07-17 23:45:47,817][201119][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:45:47][2014-07-17 23:45:47,817][201119][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(13594) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(0) birth-time(2014-07-17 23:45:47,815) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:47][201119][1500003e90017][INFO][Connected from (127.0.0.1:49804), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:45:47][  201.087852] [50280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:45:47][  201.087860] [50280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:45:47][  201.087889] [50280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:45:47][  201.087894] [50280][1500003ea0054][ERR][Fail to receive message from socket (4).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:45:47][  201.087903] [50280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:45:47][201120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:45:47][201120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:45:47][201120][1500003e9001d][INFO][(127.0.0.1:49804) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:45:47][2014-07-17 23:45:47,817][201120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:45:47][2014-07-17 23:45:47,817][201120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:45:47][2014-07-17 23:45:47,817][201120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(13594) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(0) birth-time(2014-07-17 23:45:47,815) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:47][  201.099516] [50282][1500003fb006e][INFO][ECONF register PID to diagnose success.][ECNF][ECONF_RegisterMML,566][insmod]
[2014-07-17 23:45:47][  201.099539] [50282][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][insmod]
[2014-07-17 23:45:47][  201.099545] [50282][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][insmod]
[2014-07-17 23:45:47][  201.117169] [50287][1500003e500e7][ERR][Not a numbric str: (0.4).][VOS][LVOS_StrToU64,167][insmod]
[2014-07-17 23:45:47][  201.117176] [50287][1500000020000][INFO][OC_INFO: set config CacheCapacity value to 0 success
[2014-07-17 23:45:47][  201.117177] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117185] [50287][1500000020000][INFO][OC_INFO: set config MaxFrameNum value to 48 success
[2014-07-17 23:45:47][  201.117186] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117194] [50287][1500000020000][INFO][OC_INFO: set config MaxDiskPerFrame value to 24 success
[2014-07-17 23:45:47][  201.117195] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117202] [50287][1500000020000][INFO][OC_INFO: set config MaxDiskNumber value to 1152 success
[2014-07-17 23:45:47][  201.117203] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117210] [50287][1500000020000][INFO][OC_INFO: set config MaxDiskPerPair value to 1152 success
[2014-07-17 23:45:47][  201.117212] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117218] [50287][1500000020000][INFO][OC_INFO: set config MaxDiskPool value to 64 success
[2014-07-17 23:45:47][  201.117220] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117226] [50287][1500000020000][INFO][OC_INFO: set config MaxUserPool value to 64 success
[2014-07-17 23:45:47][  201.117228] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117235] [50287][1500000020000][INFO][OC_INFO: set config MaxMemberdiskNumber value to 24 success
[2014-07-17 23:45:47][  201.117236] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117243] [50287][1500000020000][INFO][OC_INFO: set config MaxRaidGroupNumber value to 96 success
[2014-07-17 23:45:47][  201.117245] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117251] [50287][1500000020000][INFO][OC_INFO: set config MaxLunNumber value to 4096 success
[2014-07-17 23:45:47][  201.117253] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117259] [50287][1500000020000][INFO][OC_INFO: set config MaxLunGroupNum value to 4096 success
[2014-07-17 23:45:47][  201.117261] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117268] [50287][1500000020000][INFO][OC_INFO: set config MaxLunNumInOneRaidGroup value to 64 success
[2014-07-17 23:45:47][  201.117269] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117276] [50287][1500000020000][INFO][OC_INFO: set config MaxLunCapacity value to 67108864 success
[2014-07-17 23:45:47][  201.117278] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117284] [50287][1500000020000][INFO][OC_INFO: set config MaxDiskCapacity value to 200000 success
[2014-07-17 23:45:47][  201.117286] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117293] [50287][1500000020000][INFO][OC_INFO: set config MaxHostLunNum value to 512 success
[2014-07-17 23:45:47][  201.117294] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117301] [50287][1500000020000][INFO][OC_INFO: set config MaxHostNum value to 4096 success
[2014-07-17 23:45:47][  201.117302] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117309] [50287][1500000020000][INFO][OC_INFO: set config MaxHostLinkNum value to 8192 success
[2014-07-17 23:45:47][  201.117310] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117317] [50287][1500000020000][INFO][OC_INFO: set config MaxHostGroupNum value to 4096 success
[2014-07-17 23:45:47][  201.117318] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117325] [50287][1500000020000][INFO][OC_INFO: set config MaxFCIniNum value to 4096 success
[2014-07-17 23:45:47][  201.117326] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117333] [50287][1500000020000][INFO][OC_INFO: set config MaxIscsiIniNum value to 256 success
[2014-07-17 23:45:47][  201.117334] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117341] [50287][1500000020000][INFO][OC_INFO: set config MaxLmpPortNum value to 64 success
[2014-07-17 23:45:47][  201.117342] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117349] [50287][1500000020000][INFO][OC_INFO: set config MaxLmpPortGroupNum value to 2048 success
[2014-07-17 23:45:47][  201.117350] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117357] [50287][1500000020000][INFO][OC_INFO: set config MaxMapviewNum value to 4096 success
[2014-07-17 23:45:47][  201.117358] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117365] [50287][1500000020000][INFO][OC_INFO: set config FCLinkPerSp value to 8192 success
[2014-07-17 23:45:47][  201.117366] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117372] [50287][1500000020000][INFO][OC_INFO: set config IscsiLinkPerSp value to 512 success
[2014-07-17 23:45:47][  201.117374] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117380] [50287][1500000020000][INFO][OC_INFO: set config TgtPortPerSp value to 16 success
[2014-07-17 23:45:47][  201.117382] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117388] [50287][1500000020000][INFO][OC_INFO: set config MaxScsiMgntCmdNum value to 1024 success
[2014-07-17 23:45:47][  201.117390] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117396] [50287][1500000020000][INFO][OC_INFO: set config MaxExpandLunSlaveNum value to 128 success
[2014-07-17 23:45:47][  201.117398] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117404] [50287][1500000020000][INFO][OC_INFO: set config MaxExtLunNumber value to 4096 success
[2014-07-17 23:45:47][  201.117406] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117412] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxOrigin value to 1024 success
[2014-07-17 23:45:47][  201.117414] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117421] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxSnapShotPerOrigin value to 256 success
[2014-07-17 23:45:47][  201.117422] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117429] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxSnapshot value to 2048 success
[2014-07-17 23:45:47][  201.117430] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117437] [50287][1500000020000][INFO][OC_INFO: set config SnapCactiveMaxSnapshot value to 512 success
[2014-07-17 23:45:47][  201.117438] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117444] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxRollback value to 64 success
[2014-07-17 23:45:47][  201.117446] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117452] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxTimingSession value to 8 success
[2014-07-17 23:45:47][  201.117454] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117460] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxOriginPerSession value to 8 success
[2014-07-17 23:45:47][  201.117462] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117468] [50287][1500000020000][INFO][OC_INFO: set config SnapMaxSnapshotPerSession value to 8 success
[2014-07-17 23:45:47][  201.117470] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117476] [50287][1500000020000][INFO][OC_INFO: set config RprMaxPoolSize value to 4 success
[2014-07-17 23:45:47][  201.117478] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117484] [50287][1500000020000][INFO][OC_INFO: set config RprMaxPoolLun value to 64 success
[2014-07-17 23:45:47][  201.117486] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117492] [50287][1500000020000][INFO][OC_INFO: set config CpyMaxUserCopyNum value to 256 success
[2014-07-17 23:45:47][  201.117494] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117500] [50287][1500000020000][INFO][OC_INFO: set config CpyMaxDstLunNum value to 128 success
[2014-07-17 23:45:47][  201.117502] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117508] [50287][1500000020000][INFO][OC_INFO: set config CpyUserMaxConcurrentCopyingNum value to 8 success
[2014-07-17 23:45:47][  201.117510] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117516] [50287][1500000020000][INFO][OC_INFO: set config CpyRmMaxConcurrentCopyingNum value to 4 success
[2014-07-17 23:45:47][  201.117518] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117524] [50287][1500000020000][INFO][OC_INFO: set config LmMaxPairNum value to 256 success
[2014-07-17 23:45:47][  201.117525] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117532] [50287][1500000020000][INFO][OC_INFO: set config LmrMaxMirrorLunNum value to 256 success
[2014-07-17 23:45:47][  201.117533] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117539] [50287][1500000020000][INFO][OC_INFO: set config LmrMaxCopyLunNum value to 512 success
[2014-07-17 23:45:47][  201.117541] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117547] [50287][1500000020000][INFO][OC_INFO: set config ClnMaxCloneGroupNum value to 256 success
[2014-07-17 23:45:47][  201.117549] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117555] [50287][1500000020000][INFO][OC_INFO: set config ClnMaxCloneNum value to 512 success
[2014-07-17 23:45:47][  201.117557] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117563] [50287][1500000020000][INFO][OC_INFO: set config ClnMaxCloneNumPerGroup value to 8 success
[2014-07-17 23:45:47][  201.117565] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117571] [50287][1500000020000][INFO][OC_INFO: set config ClnMaxMultiSplitPairNum value to 64 success
[2014-07-17 23:45:47][  201.117572] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117578] [50287][1500000020000][INFO][OC_INFO: set config ClnMaxSyncPairNum value to 8 success
[2014-07-17 23:45:47][  201.117580] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117586] [50287][1500000020000][INFO][OC_INFO: set config RssMaxSlaveLunNum value to 8 success
[2014-07-17 23:45:47][  201.117588] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117594] [50287][1500000020000][INFO][OC_INFO: set config RmMaxPairLunNum value to 2 success
[2014-07-17 23:45:47][  201.117596] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117602] [50287][1500000020000][INFO][OC_INFO: set config RmMaxPairNum value to 1024 success
[2014-07-17 23:45:47][  201.117604] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117610] [50287][1500000020000][INFO][OC_INFO: set config RmMaxCGNum value to 512 success
[2014-07-17 23:45:47][  201.117611] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117617] [50287][1500000020000][INFO][OC_INFO: set config RmMaxCGMemberNum value to 512 success
[2014-07-17 23:45:47][  201.117619] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117625] [50287][1500000020000][INFO][OC_INFO: set config MaxRssTypeNum value to 4 success
[2014-07-17 23:45:47][  201.117627] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117633] [50287][1500000020000][INFO][OC_INFO: set config RmMaxConRemoteArrayNum value to 32 success
[2014-07-17 23:45:47][  201.117634] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117641] [50287][1500000020000][INFO][OC_INFO: set config syncRmMaxCopyJobNum value to 16 success
[2014-07-17 23:45:47][  201.117642] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117648] [50287][1500000020000][INFO][OC_INFO: set config asyncRmMaxCopyJobNum value to 8 success
[2014-07-17 23:45:47][  201.117650] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117656] [50287][1500000020000][INFO][OC_INFO: set config shortCycleRmMaxCopyJobNum value to 8 success
[2014-07-17 23:45:47][  201.117658] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117664] [50287][1500000020000][INFO][OC_INFO: set config rollBackRmMaxCopyJobNum value to 16 success
[2014-07-17 23:45:47][  201.117666] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117672] [50287][1500000020000][INFO][OC_INFO: set config RmConcurrentTaskNum value to 192 success
[2014-07-17 23:45:47][  201.117673] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117679] [50287][1500000020000][INFO][OC_INFO: set config ControllerRedundancy value to 2 success
[2014-07-17 23:45:47][  201.117681] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117687] [50287][1500000020000][INFO][OC_INFO: set config RedundancyConfig value to 2 success
[2014-07-17 23:45:47][  201.117689] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117695] [50287][1500000020000][INFO][OC_INFO: set config MirrorPageQuota value to 343 success
[2014-07-17 23:45:47][  201.117696] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117702] [50287][1500000020000][INFO][OC_INFO: set config BaseUsableReadPageQuota value to 60 success
[2014-07-17 23:45:47][  201.117704] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117710] [50287][1500000020000][INFO][OC_INFO: set config ReadPageQuota value to 940 success
[2014-07-17 23:45:47][  201.117712] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117718] [50287][1500000020000][INFO][OC_INFO: set config BpDirectPageNormalPercent value to 80 success
[2014-07-17 23:45:47][  201.117719] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117725] [50287][1500000020000][INFO][OC_INFO: set config DerictPageBaseQuota value to 60 success
[2014-07-17 23:45:47][  201.117727] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117733] [50287][1500000020000][INFO][OC_INFO: set config DerictPageMaxQuota value to 270 success
[2014-07-17 23:45:47][  201.117735] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117741] [50287][1500000020000][INFO][OC_INFO: set config MaxAllocPageBitmapSize value to 8192 success
[2014-07-17 23:45:47][  201.117743] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117749] [50287][1500000020000][INFO][OC_INFO: set config MaxLocalPageBitmapSize value to 8192 success
[2014-07-17 23:45:47][  201.117751] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117757] [50287][1500000020000][INFO][OC_INFO: set config MaxPeerPageBitmapSize value to 8192 success
[2014-07-17 23:45:47][  201.117759] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117765] [50287][1500000020000][INFO][OC_INFO: set config MaxPoolPage value to 85 success
[2014-07-17 23:45:47][  201.117767] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117772] [50287][1500000020000][INFO][OC_INFO: set config RssIoSize value to 2048 success
[2014-07-17 23:45:47][  201.117774] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117780] [50287][1500000020000][INFO][OC_INFO: set config MaxVaultDataCtrlSize value to 65536 success
[2014-07-17 23:45:47][  201.117782] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117788] [50287][1500000020000][INFO][OC_INFO: set config MaxVaultCapacity value to 4261888 success
[2014-07-17 23:45:47][  201.117790] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117796] [50287][1500000020000][INFO][OC_INFO: set config MaxCommInnerCmdNum value to 256 success
[2014-07-17 23:45:47][  201.117797] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117803] [50287][1500000020000][INFO][OC_INFO: set config VaultDiskSpaceOffset value to 0 success
[2014-07-17 23:45:47][  201.117805] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117811] [50287][1500000020000][INFO][OC_INFO: set config RaidLisenceFlag value to 0 success
[2014-07-17 23:45:47][  201.117812] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117818] [50287][1500000020000][INFO][OC_INFO: set config MemPoolCacheSize value to 100 success
[2014-07-17 23:45:47][  201.117820] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117826] [50287][1500000020000][INFO][OC_INFO: set config TgtThreadNum value to 2 success
[2014-07-17 23:45:47][  201.117827] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117834] [50287][1500000020000][INFO][OC_INFO: set config LicenceDefaultNum value to 16 success
[2014-07-17 23:45:47][  201.117836] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117842] [50287][1500000020000][INFO][OC_INFO: set config IsNvRamSupported value to 1 success
[2014-07-17 23:45:47][  201.117843] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117849] [50287][1500000020000][INFO][OC_INFO: set config NvRamADiskId value to 30 success
[2014-07-17 23:45:47][  201.117851] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117856] [50287][1500000020000][INFO][OC_INFO: set config NvRamBDiskId value to 31 success
[2014-07-17 23:45:47][  201.117858] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117864] [50287][1500000020000][INFO][OC_INFO: set config NvRamStartAddr value to 0 success
[2014-07-17 23:45:47][  201.117865] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117871] [50287][1500000020000][INFO][OC_INFO: set config NvRamCapacity value to 512 success
[2014-07-17 23:45:47][  201.117873] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117879] [50287][1500000020000][INFO][OC_INFO: set config VaultCtrlFrameId value to 1 success
[2014-07-17 23:45:47][  201.117880] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117886] [50287][1500000020000][INFO][OC_INFO: set config SSDCMaxTotalLunSize value to 1 success
[2014-07-17 23:45:47][  201.117888] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117893] [50287][1500000020000][INFO][OC_INFO: set config SSDCMaxSSDCapacityTotal value to 100 success
[2014-07-17 23:45:47][  201.117895] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117901] [50287][1500000020000][INFO][OC_INFO: set config SSDCMaxSSDCapacityPerDisk value to 4 success
[2014-07-17 23:45:47][  201.117903] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117908] [50287][1500000020000][INFO][OC_INFO: set config ReqListFuncSelect value to 3 success
[2014-07-17 23:45:47][  201.117910] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117916] [50287][1500000020000][INFO][OC_INFO: set config RpMaxBlkReqInFlight value to 512 success
[2014-07-17 23:45:47][  201.117918] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117924] [50287][1500000020000][INFO][OC_INFO: set config RpWriteOptimezeThreadDetectDelay value to 2 success
[2014-07-17 23:45:47][  201.117926] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117931] [50287][1500000020000][INFO][OC_INFO: set config RpWriteOptimezeMaxWaitCnt value to 6 success
[2014-07-17 23:45:47][  201.117933] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117939] [50287][1500000020000][INFO][OC_INFO: set config RpDynamicReqPerLun value to 12 success
[2014-07-17 23:45:47][  201.117941] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117947] [50287][1500000020000][INFO][OC_INFO: set config RpWriteHoleSwitch value to 0 success
[2014-07-17 23:45:47][  201.117948] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117954] [50287][1500000020000][INFO][OC_INFO: set config IsCacheSendReqToDevice value to 0 success
[2014-07-17 23:45:47][  201.117956] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117962] [50287][1500000020000][INFO][OC_INFO: set config DestgFrqUnderLowWaterLevel value to 5000 success
[2014-07-17 23:45:47][  201.117963] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117969] [50287][1500000020000][INFO][OC_INFO: set config AsyncMultiPrefetchTrg value to 0 success
[2014-07-17 23:45:47][  201.117971] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117977] [50287][1500000020000][INFO][OC_INFO: set config AsyncConstPrefetchTrg value to 0 success
[2014-07-17 23:45:47][  201.117978] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117984] [50287][1500000020000][INFO][OC_INFO: set config AsyncRapidEvicted value to 0 success
[2014-07-17 23:45:47][  201.117986] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117991] [50287][1500000020000][INFO][OC_INFO: set config LowRSWaterLevel value to 15 success
[2014-07-17 23:45:47][  201.117993] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.117999] [50287][1500000020000][INFO][OC_INFO: set config AlarmCapacity value to 307200 success
[2014-07-17 23:45:47][  201.118001] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118006] [50287][1500000020000][INFO][OC_INFO: set config MaxDirtyPage value to 524288 success
[2014-07-17 23:45:47][  201.118008] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118015] [50287][1500000020000][INFO][OC_INFO: set config TgtLunMapMaxNum value to 8 success
[2014-07-17 23:45:47][  201.118016] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118022] [50287][1500000020000][INFO][OC_INFO: set config TpMaxThinPoolNum value to 512 success
[2014-07-17 23:45:47][  201.118024] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118030] [50287][1500000020000][INFO][OC_INFO: set config TpMaxDiskNumPerPool value to 256 success
[2014-07-17 23:45:47][  201.118032] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118038] [50287][1500000020000][INFO][OC_INFO: set config TpMaxDiskNum value to 1436 success
[2014-07-17 23:45:47][  201.118039] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118046] [50287][1500000020000][INFO][OC_INFO: set config TpMaxThinLunNumPerPool value to 2048 success
[2014-07-17 23:45:47][  201.118047] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118053] [50287][1500000020000][INFO][OC_INFO: set config TpMaxThinLunNum value to 2048 success
[2014-07-17 23:45:47][  201.118055] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118061] [50287][1500000020000][INFO][OC_INFO: set config TpMaxThinLunCapacity value to 65536 success
[2014-07-17 23:45:47][  201.118063] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118068] [50287][1500000020000][INFO][OC_INFO: set config EplMaxLogArryCount value to 32 success
[2014-07-17 23:45:47][  201.118070] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118076] [50287][1500000020000][INFO][OC_INFO: set config EplMaxPhyArryCount value to 128 success
[2014-07-17 23:45:47][  201.118077] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118083] [50287][1500000020000][INFO][OC_INFO: set config EplMaxPhyLinkCount value to 4096 success
[2014-07-17 23:45:47][  201.118085] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118091] [50287][1500000020000][INFO][OC_INFO: set config MaxVStoreNum value to 65 success
[2014-07-17 23:45:47][  201.118092] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118098] [50287][1500000020000][INFO][OC_INFO: set config LunErasementMaxConcurrentNum value to 8 success
[2014-07-17 23:45:47][  201.118100] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118106] [50287][1500000020000][INFO][OC_INFO: set config MaxSnapGroupNum value to 4096 success
[2014-07-17 23:45:47][  201.118108] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118114] [50287][1500000020000][INFO][OC_INFO: set config MaxSnapShotPerSnapGroup value to 2048 success
[2014-07-17 23:45:47][  201.118116] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118122] [50287][1500000020000][INFO][OC_INFO: set config MaxSnapGroupPerSnap value to 1 success
[2014-07-17 23:45:47][  201.118124] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118130] [50287][1500000020000][INFO][OC_INFO: set config WriteThroughSwitch value to 1 success
[2014-07-17 23:45:47][  201.118131] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118137] [50287][1500000020000][INFO][OC_INFO: set config WriteThroughTime value to 72 success
[2014-07-17 23:45:47][  201.118139] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118145] [50287][1500000020000][INFO][OC_INFO: set config maxWriteThroughTime value to 2160 success
[2014-07-17 23:45:47][  201.118146] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118171] [50287][1500000020000][INFO][OC_INFO:uiLocalMemSize = 24][RESOURCE][OC_InitModule,3889][insmod]
[2014-07-17 23:45:47][  201.118175] [50287][1500000020000][INFO][OC_INFO: Dynamic chage Performance config, mem size(24).][RESOURCE][OC_DynamicChangeConfig,3474][insmod]
[2014-07-17 23:45:47][  201.118182] [50287][1500000020000][INFO][OC_INFO: Get item value(PERFORMANCE_24).][RESOURCE][OC_DynamicChangeConfig,3496][insmod]
[2014-07-17 23:45:47][  201.118238] [50287][1500000020000][INFO][OC_INFO: Performance is(PERFORMANCE_24), not back tgt cmd num is(4096).][RESOURCE][OC_DynamicChangeConfig,3517][insmod]
[2014-07-17 23:45:47][  201.118246] [50287][1500000020000][INFO][OC_INFO: set config MaxPriorityNum value to 8 success
[2014-07-17 23:45:47][  201.118248] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118254] [50287][1500000020000][INFO][OC_INFO: set config MaxIoClassTemplateNum value to 16 success
[2014-07-17 23:45:47][  201.118255] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118261] [50287][1500000020000][INFO][OC_INFO: set config MaxLunNumPerIoClass value to 64 success
[2014-07-17 23:45:47][  201.118263] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118269] [50287][1500000020000][INFO][OC_INFO: set config MaxTriggerIoClassNum value to 512 success
[2014-07-17 23:45:47][  201.118270] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118276] [50287][1500000020000][INFO][OC_INFO: set config MaxCtrlIoClassNum value to 512 success
[2014-07-17 23:45:47][  201.118278] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118284] [50287][1500000020000][INFO][OC_INFO: set config MaxLunNumInAllTriggerIoClass value to 512 success
[2014-07-17 23:45:47][  201.118285] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118291] [50287][1500000020000][INFO][OC_INFO: set config MaxLunNumInAllCtrlIoClass value to 512 success
[2014-07-17 23:45:47][  201.118293] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118299] [50287][1500000020000][INFO][OC_INFO: set config MaxCachePttNum value to 16 success
[2014-07-17 23:45:47][  201.118300] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118306] [50287][1500000020000][INFO][OC_INFO: set config MaxCachePttNumInPair value to 8 success
[2014-07-17 23:45:47][  201.118307] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118313] [50287][1500000020000][INFO][OC_INFO: set config DefaultCachePttNumInPair value to 1 success
[2014-07-17 23:45:47][  201.118315] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118321] [50287][1500000020000][INFO][OC_INFO: set config MaxSysFrontPageConcur value to 131072 success
[2014-07-17 23:45:47][  201.118322] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118328] [50287][1500000020000][INFO][OC_INFO: set config MaxSingleLunFrontPageConcur value to 131072 success
[2014-07-17 23:45:47][  201.118330] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118336] [50287][1500000020000][INFO][OC_INFO: set config MaxStpDirtyQuotaIoConcur value to 4096 success
[2014-07-17 23:45:47][  201.118337] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118343] [50287][1500000020000][INFO][OC_INFO: set config MaxStpDirtyQuotaPageConcur value to 131072 success
[2014-07-17 23:45:47][  201.118345] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118351] [50287][1500000020000][INFO][OC_INFO: set config CachePttHightMark value to 80 success
[2014-07-17 23:45:47][  201.118352] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118358] [50287][1500000020000][INFO][OC_INFO: set config CachePttLowMark value to 20 success
[2014-07-17 23:45:47][  201.118359] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118365] [50287][1500000020000][INFO][OC_INFO: set config CachePttSSDDirty value to 512 success
[2014-07-17 23:45:47][  201.118367] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118372] [50287][1500000020000][INFO][OC_INFO: set config CachePttMetaDirty value to 256 success
[2014-07-17 23:45:47][  201.118374] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118380] [50287][1500000020000][INFO][OC_INFO: set config CachePttNumbersForDBInit value to 1024 success
[2014-07-17 23:45:47][  201.118381] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118387] [50287][1500000020000][INFO][OC_INFO: set config DefaultIoClassTemplateNum value to 2 success
[2014-07-17 23:45:47][  201.118389] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118423] [50287][1500000020000][INFO][OC_INFO: set config MaxWriteSizeForCache value to 20480 success
[2014-07-17 23:45:47][  201.118425] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118430] [50287][1500000020000][INFO][OC_INFO: set config FtdsSwitch value to 1 success
[2014-07-17 23:45:47][  201.118432] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118437] [50287][1500000020000][INFO][OC_INFO: set config FdsaSwitch value to 1 success
[2014-07-17 23:45:47][  201.118439] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118448] [50287][1500000020000][INFO][OC_INFO: set config MaxControllerNum value to 4 success
[2014-07-17 23:45:47][  201.118450] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118456] [50287][1500000020000][INFO][OC_INFO: set config ZeroDataCheckSwitch value to 1 success
[2014-07-17 23:45:47][  201.118457] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118463] [50287][1500000020000][INFO][OC_INFO: set config ThinProvisionLicCtrlType value to 1 success
[2014-07-17 23:45:47][  201.118465] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118480] [50287][1500000020000][INFO][OC_INFO: set config HotSpareDiskNum value to 0 success
[2014-07-17 23:45:47][  201.118482] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118487] [50287][1500000020000][INFO][OC_INFO: set config SsdDiskNumOne value to 2 success
[2014-07-17 23:45:47][  201.118489] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118494] [50287][1500000020000][INFO][OC_INFO: set config SsdDiskNumTwo value to 4 success
[2014-07-17 23:45:47][  201.118496] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118501] [50287][1500000020000][INFO][OC_INFO: set config SasDiskNum value to 4 success
[2014-07-17 23:45:47][  201.118503] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118508] [50287][1500000020000][INFO][OC_INFO: set config SasDiskNum value to 4 success
[2014-07-17 23:45:47][  201.118510] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118516] [50287][1500000020000][INFO][OC_INFO: set config LicenseCtrlType value to 0 success
[2014-07-17 23:45:47][  201.118517] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.118523] [50287][1500000020000][INFO][OC_INFO: set config BdmMaxLunNum value to 512 success
[2014-07-17 23:45:47][  201.118525] ][RESOURCE][OC_SetConfigItem,3071][insmod]
[2014-07-17 23:45:47][  201.147222] [50294][1500000150003][INFO][Init cmm lock pool.][CMM][CMM_InitModule,238][insmod]
[2014-07-17 23:45:47][  201.147284] [50294][1500000150202][INFO][CMM memory start address 0xffff88012c000000 Size 0x554000000.][CMM][CMM_FormalizeMemory,101][insmod]
[2014-07-17 23:45:47][  201.147289] [50294][1500000150203][INFO][Reserve memory(start address 0xffff88012c000000, size 0xa00000).][CMM][CMM_FormalizeMemory,112][insmod]
[2014-07-17 23:45:47][  201.147295] [50294][1500000150204][INFO][Reserve memory(start address 0xffff88012ca00000, size 0x31018, MemRecoveryFlag 0) for Memory Recovery Info.][CMM][CMM_FormalizeMemory,127][insmod]
[2014-07-17 23:45:47][  201.147301] [50294][1500000150205][INFO][MemZoneArray 0 .m_ulStartAddr ffff88012ca31018 Size 0x5535cefe8.][CMM][CMM_FormalizeMemory,136][insmod]
[2014-07-17 23:45:47][  201.147328] [50294][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(84264).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262760] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262767] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262772] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262778] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262783] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262789] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262794] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262800] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262805] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262811] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262816] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262822] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262828] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262833] [50323][1500000150101][INFO][Memory recovery: bIsRecoveryFlagTrue(0) when LinkBlockCtrlToMemZoneCtrl and CpuBlockCount(0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,364][insmod]
[2014-07-17 23:45:47][  201.262839] [50323][1500000150104][INFO][Memory recovery: bIsRecoveryFlagTrue(0), recovered block cnt (0).][CMM][CMM_LinkBlockCtrlToMemZoneCtrl,449][insmod]
[2014-07-17 23:45:47][  201.262849] [50323][150000015091b][INFO][Create Partition success, use block number 48, partition name PARTITION-OBJECT PARTITION.][CMM][CMM_CreatePrObjPartition,1176][insmod]
[2014-07-17 23:45:47][  201.262891] [50323][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:47][  201.262904] [50323][150000015090f][INFO][Create Partition success, use block number 1, free block number 84215, partition name zero page pool, need recovery: FALSE.][CMM][CMM_CreatePagePartition,689][insmod]
[2014-07-17 23:45:47][  201.262911] [50323][1500000150608][INFO][Partition (17) move (1) blocks from free list to empty list.][CMM][CMM_MoveBlocksFromFreeToEmpty,261][insmod]
[2014-07-17 23:45:47][  201.262918] [50323][150000015091e][INFO][Cmm get tgt concurer number (4096).][CMM][createReqSglPartition,1408][insmod]
[2014-07-17 23:45:47][  201.262925] [50323][1500000150913][INFO][Ptt (18) need size (219648000), round size (219648000).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.283725] [50329][1500000150914][INFO][Create Partition success, use block number 825, free block number 83390, partition name REQ PARTITION , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.297389] [50332][1500000150317][INFO][Initial slab partition time :3 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.297402] [50332][1500000150913][INFO][Ptt (19) need size (137379840), round size (137379840).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.310375] [50335][1500000150914][INFO][Create Partition success, use block number 516, free block number 82874, partition name SGL PARTITION , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.315734] [50337][1500000150317][INFO][Initial slab partition time :2 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.315744] [50337][1500000150913][INFO][Ptt (20) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.315850] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82870, partition name pubpool-32B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.316065] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.316074] [50337][1500000150913][INFO][Ptt (21) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.316178] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82866, partition name pubpool-64B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.316373] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.316380] [50337][1500000150913][INFO][Ptt (22) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.316481] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82862, partition name pubpool-128B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.316640] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.316648] [50337][1500000150913][INFO][Ptt (23) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.316748] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82858, partition name pubpool-256B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.316874] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.316881] [50337][1500000150913][INFO][Ptt (24) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.316977] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82854, partition name pubpool-512B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.317078] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.317085] [50337][1500000150913][INFO][Ptt (25) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.317179] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82850, partition name pubpool-1024B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.317268] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.317276] [50337][1500000150913][INFO][Ptt (26) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.317368] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82846, partition name pubpool-2048B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.317445] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.317452] [50337][1500000150913][INFO][Ptt (27) need size (1048576), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.317544] [50337][1500000150914][INFO][Create Partition success, use block number 4, free block number 82842, partition name pubpool-4096B , need recovery: FALSE, memleak detectable: TRUE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.317613] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.317622] [50337][1500000150913][INFO][Ptt (28) need size (1597440), round size (1597440).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.317755] [50337][1500000150914][INFO][Create Partition success, use block number 6, free block number 82836, partition name waitalloc_page_pool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.317987] [50337][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.322687] [50338][1500000150e3d][INFO][Cmm register diagnose of cmm to diagnose success.][CMM][initCmmDiagnoseModule,5124][insmod]
[2014-07-17 23:45:48][  201.322697] [50338][1500000150e3d][INFO][Cmm register cli diagnose of cmm to diagnose success.][CMM][initCmmDiagnoseModule,5138][insmod]
[2014-07-17 23:45:48][  201.322784] [50338][1500000150009][INFO][Module init, memory recovery finish: (TRUE).][CMM][CMM_InitModule,298][insmod]
[2014-07-17 23:45:48][  201.336756] [50342][1500003b40006][INFO][Initialize Rnvram module. Tthe major device number is 246 and the minor device number is 0.][NONE][logCbbInit,450][insmod]
[2014-07-17 23:45:48][  201.336770] [50342][150000015090b][INFO][Create Partition success, use block number 40, free block number 82796, partition name LOG_CBB, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.336781] [50342][1500003b40000][INFO][ logcbb register Diagnose command complete ][NONE][initlogcbbDiagnose,188][insmod]
[2014-07-17 23:45:48][  201.376604] [50352][15000008e0000][INFO][iod Version:iod_20120129_17:30][IOD][IOD_Init,2208][insmod]
[2014-07-17 23:45:48][  201.376615] [50352][150000015090b][INFO][Create Partition success, use block number 1, free block number 82795, partition name IOD_GLB_PARTION, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.376624] [50352][1500000150913][INFO][Ptt (31) need size (14909440), round size (14909440).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.378052] [50352][1500000150914][INFO][Create Partition success, use block number 56, free block number 82739, partition name IOD_TIMER , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.379814] [50353][1500000150317][INFO][Initial slab partition time :1 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.379823] [50353][15000008e0000][INFO][Set iod cpu reserve number to (1)][IOD][initReserveCpuNum,83][insmod]
[2014-07-17 23:45:48][  201.380646] [50353][15000008e0000][INFO][TPOOL init enter.][IOD][TP_Init,716][insmod]
[2014-07-17 23:45:48][  201.380652] [50353][1500000150318][ERR][partition(TP_POOL) size(16840) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.380659] [50353][1500000150913][INFO][Ptt (32) need size (16840), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.380687] [50353][1500000150914][INFO][Create Partition success, use block number 1, free block number 82738, partition name TP_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.380718] [50353][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.380725] [50353][1500000150318][ERR][partition(TP_THREAD) size(168040) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.380732] [50353][1500000150913][INFO][Ptt (33) need size (168040), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.380759] [50353][1500000150914][INFO][Create Partition success, use block number 1, free block number 82737, partition name TP_THREAD , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.380790] [50353][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.380797] [50353][15000008e0000][INFO][TPOOL init exit.][IOD][TP_Init,748][insmod]
[2014-07-17 23:45:48][  201.380861] [50353][15000008e0000][INFO][g_pIodGlb->ioThreadNum = 11 
[2014-07-17 23:45:48][  201.380862] ][IOD][createThreadPool,1983][insmod]
[2014-07-17 23:45:48][  201.380889] [50353][150000015090b][INFO][Create Partition success, use block number 136, free block number 82601, partition name IOD_DETAIL_EXEC_TIME_STAT, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.384346] [50354][15000008e0000][INFO][create iod absolute timer:check time success][IOD][registerAbsoluteTimer,718][insmod]
[2014-07-17 23:45:48][  201.384352] [50354][15000008e0000][INFO][create iod absolute timer:check SecQ success][IOD][registerAbsoluteTimer,730][insmod]
[2014-07-17 23:45:48][  201.384357] [50354][15000008e0000][INFO][create iod absolute timer:check MinQ success][IOD][registerAbsoluteTimer,742][insmod]
[2014-07-17 23:45:48][  201.384362] [50354][15000008e0000][INFO][create iod absolute timer:check hourQ success][IOD][registerAbsoluteTimer,754][insmod]
[2014-07-17 23:45:48][  201.384367] [50354][15000008e0000][INFO][create iod absolute timer:call execQ success][IOD][registerAbsoluteTimer,766][insmod]
[2014-07-17 23:45:48][  201.384380] [50354][15000008e0000][INFO][xiod register debug cmd complete][IOD][IOD_DebugInit,3643][insmod]
[2014-07-17 23:45:48][  201.384387] [50354][15000008e0000][INFO][Register task debug command complete.][IOD][taskDebugInit,141][insmod]
[2014-07-17 23:45:48][  201.384392] [50354][15000008e0000][INFO][RegisterIodInterface()][IOD][IOD_Init,2286][insmod]
[2014-07-17 23:45:48][  201.387505] [50355][15000008e0000][INFO][iod loop thread CSD_0 started,threadid = 13725 io_threadid =0][IOD][ioScheduleThreadLoop,1876][CSD_0]
[2014-07-17 23:45:48][  201.387513] [50355][15000008e0000][INFO][iod loop thread CSD_1 started,threadid = 13726 io_threadid =1][IOD][ioScheduleThreadLoop,1876][CSD_1]
[2014-07-17 23:45:48][  201.387520] [50355][15000008e0000][INFO][iod loop thread CSD_2 started,threadid = 13727 io_threadid =2][IOD][ioScheduleThreadLoop,1876][CSD_2]
[2014-07-17 23:45:48][  201.387528] [50355][15000008e0000][INFO][iod loop thread CSD_3 started,threadid = 13728 io_threadid =3][IOD][ioScheduleThreadLoop,1876][CSD_3]
[2014-07-17 23:45:48][  201.387542] [50355][15000008e0000][INFO][iod loop thread CSD_5 started,threadid = 13730 io_threadid =5][IOD][ioScheduleThreadLoop,1876][CSD_5]
[2014-07-17 23:45:48][  201.387549] [50355][15000008e0000][INFO][iod loop thread CSD_6 started,threadid = 13731 io_threadid =6][IOD][ioScheduleThreadLoop,1876][CSD_6]
[2014-07-17 23:45:48][  201.387556] [50355][15000008e0000][INFO][iod loop thread CSD_7 started,threadid = 13732 io_threadid =7][IOD][ioScheduleThreadLoop,1876][CSD_7]
[2014-07-17 23:45:48][  201.387563] [50355][15000008e0000][INFO][iod loop thread CSD_8 started,threadid = 13733 io_threadid =8][IOD][ioScheduleThreadLoop,1876][CSD_8]
[2014-07-17 23:45:48][  201.387571] [50355][15000008e0000][INFO][iod loop thread CSD_9 started,threadid = 13734 io_threadid =9][IOD][ioScheduleThreadLoop,1876][CSD_9]
[2014-07-17 23:45:48][  201.387580] [50355][15000008e0000][INFO][iod loop thread CSD_10 started,threadid = 13735 io_threadid =10][IOD][ioScheduleThreadLoop,1876][CSD_10]
[2014-07-17 23:45:48][  201.387878] [50355][15000008e0000][INFO][iod loop thread CSD_4 started,threadid = 13729 io_threadid =4][IOD][ioScheduleThreadLoop,1876][CSD_4]
[2014-07-17 23:45:48][  201.420334] [50363][1500000f30038][INFO][HEAL start to init.][NONE][HEAL_Init,1660][insmod]
[2014-07-17 23:45:48][  201.420342] [50363][15000008e0000][INFO][Create TPOOL, pid(243), name(HealTPool), num(5).][IOD][TP_CreateThreadPool,471][insmod]
[2014-07-17 23:45:48][  201.420379] [50363][1500000150318][ERR][partition(healUserDataPool) size(67624) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.420386] [50363][1500000150913][INFO][Ptt (35) need size (67624), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.420419] [50363][1500000150914][INFO][Create Partition success, use block number 1, free block number 82600, partition name healUserDataPool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.420453] [50363][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.420463] [50363][1500000150913][INFO][Ptt (36) need size (798720), round size (798720).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.420545] [50363][1500000150914][INFO][Create Partition success, use block number 3, free block number 82597, partition name healUserDataPool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.420563] [50363][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.420570] [50363][1500000150318][ERR][partition(healCollectInfoPool) size(103160) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.420578] [50363][1500000150913][INFO][Ptt (37) need size (103160), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.420608] [50363][1500000150914][INFO][Create Partition success, use block number 1, free block number 82596, partition name healCollectInfoPool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.420615] [50363][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.420628] [50363][1500000f30041][INFO][HEAL DEBUG CMD INIT.][HEAL][HEAL_DebugInit,171][insmod]
[2014-07-17 23:45:48][  201.420637] [50363][1500000f30043][INFO][HEAL register debug command complete.][HEAL][HEAL_DebugInit,180][insmod]
[2014-07-17 23:45:48][  201.420641] [50363][1500000f3003e][INFO][HEAL init successfully.][HEAL][HEAL_Init,1740][insmod]
[2014-07-17 23:45:48][  201.420905] [50363][1500000f30036][INFO][HEAL Enter CheckThread.][HEAL][HEAL_CheckThread,1551][insmod]
[2014-07-17 23:45:48][  201.420912] [50363][15000008e0000][INFO][Enter TPOOL thread, pid(243), name(TP_HealTPool_4).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.421311] [50363][15000008e0000][INFO][Enter TPOOL thread, pid(243), name(TP_HealTPool_3).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.421321] [50363][15000008e0000][INFO][Enter TPOOL thread, pid(243), name(TP_HealTPool_2).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.421328] [50363][15000008e0000][INFO][Enter TPOOL thread, pid(243), name(TP_HealTPool_1).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.421335] [50363][15000008e0000][INFO][Enter TPOOL thread, pid(243), name(TP_HealTPool_0).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.434707] [50366][1500000150913][INFO][Ptt (38) need size (33280000), round size (33280000).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.437949] [50367][1500000150914][INFO][Create Partition success, use block number 125, free block number 82471, partition name WAIT_ALLOC_QUOTA_POOL , need recovery: FALSE, memleak detectable: FALSE][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.444113] [50369][1500000150317][INFO][Initial slab partition time :2 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.444124] [50369][1500000f30019][INFO][Register Task QUOTA_ResoureAllocCheck in PID:149 Func:registerQuotaAllocCheck Line:541.][HEAL][HEAL_RegisterTask,612][insmod]
[2014-07-17 23:45:48][  201.444133] [50369][1500000f3001c][INFO][Register Task QUOTA_ResoureAllocCheck successfully in PID:149 Func:registerQuotaAllocCheck Line:541.][HEAL][HEAL_RegisterTask,662][insmod]
[2014-07-17 23:45:48][  201.444140] [50369][1500000f30011][INFO][Enable Task:QUOTA_ResoureAllocCheck in PID 149 Func:registerQuotaAllocCheck Line:548.][HEAL][HEAL_EnableTask,493][insmod]
[2014-07-17 23:45:48][  201.444147] [50369][1500000f3000e][INFO][Switch task:QUOTA_ResoureAllocCheck to state:1.][HEAL][HEAL_SwitchTask,452][insmod]
[2014-07-17 23:45:48][  201.444153] [50369][1500000950206][INFO][Create & enable task QUOTA_ResoureAllocCheck OK.][QUOTA][registerQuotaAllocCheck,555][insmod]
[2014-07-17 23:45:48][  201.444263] [50369][1500000950402][INFO][Quota register PID to diagnose success.][QUOTA][initQuotaDiagModule,3977][insmod]
[2014-07-17 23:45:48][  201.458931] [50372][1500000150913][INFO][Ptt (39) need size (33280000), round size (33280000).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.461986] [50373][1500000150914][INFO][Create Partition success, use block number 125, free block number 82346, partition name WAIT_ALLOC_PAGE_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.468135] [50375][1500000150317][INFO][Initial slab partition time :2 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.468147] [50375][1500000960102][INFO][Global zero page control head (0xffff88012d17f5f0), zero page buffer (0xffff8801478f4000).][PAGEPOOL][initPagePoolModule,146][insmod]
[2014-07-17 23:45:48][  201.468167] [50375][1500000960202][INFO][Page pool register PID to diagnose success.][PAGEPOOL][initPagePoolDiagModule,3500][insmod]
[2014-07-17 23:45:48][  201.468172] [50375][1500000960103][INFO][Pagepool module initialize success.][PAGEPOOL][initPagePoolModule,155][insmod]
[2014-07-17 23:45:48][  201.482350] [50378][1500000150913][INFO][Ptt (40) need size (10649600), round size (10649600).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.483179] [50378][1500000150914][INFO][Create Partition success, use block number 40, free block number 82306, partition name REQTIMETRACE , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.484899] [50379][1500000150317][INFO][Initial slab partition time :1 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.484920] [50379][1500000020713][INFO][RTT register CMD to MML success.][RESOURCE][RTT_RegisterMML,1801][insmod]
[2014-07-17 23:45:48][  201.484930] [50379][1500000020711][INFO][RTT register CMD to Cli success.][RESOURCE][RTT_RegisterCli,1760][insmod]
[2014-07-17 23:45:48][  201.499732] [50383][1500000150913][INFO][Ptt (41) need size (98775040), round size (98775040).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.509188] [50385][1500000150914][INFO][Create Partition success, use block number 371, free block number 81935, partition name SPACE_SEG_S , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.529163] [50390][1500000150317][INFO][Initial slab partition time :5 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.529175] [50390][1500000150913][INFO][Ptt (42) need size (532480), round size (532480).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.529222] [50390][1500000150914][INFO][Create Partition success, use block number 2, free block number 81933, partition name QUEUE_NODE_S , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.529327] [50390][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.545124] [50394][1500000150913][INFO][Ptt (43) need size (1597440), round size (1597440).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.545252] [50394][1500000150914][INFO][Create Partition success, use block number 6, free block number 81927, partition name BDM_LOG_NODE_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.545444] [50394][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.545452] [50394][15000009700a8][INFO][Init sys event module success.][BDM][obsInit,504][insmod]
[2014-07-17 23:45:48][  201.545465] [50394][1500000150913][INFO][Ptt (44) need size (2129920), round size (2129920).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.545631] [50394][1500000150914][INFO][Create Partition success, use block number 8, free block number 81919, partition name cfg file buf pool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.545637] [50394][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.545645] [50394][1500000150318][ERR][partition(cfg work pool) size(312) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.545652] [50394][1500000150913][INFO][Ptt (45) need size (312), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.545678] [50394][1500000150914][INFO][Create Partition success, use block number 1, free block number 81918, partition name cfg work pool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.545722] [50394][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.545860] [50394][150000097000a][INFO][Load config file(/OSM/conf/bdm_config.dat) to buffer successfully.][BDM][bdmCfgLoadConfig,196][insmod]
[2014-07-17 23:45:48][  201.545868] [50394][1500000970072][INFO][Bdm config: magic(0xfafbfcfe), version(100), public time(2013_7_18 18:0), file size(22496),area num(3).][BDM][bdmCfgStgyInit,1488][insmod]
[2014-07-17 23:45:48][  201.545875] [50394][1500000970073][INFO][Config status is active.][BDM][bdmCfgStgyInit,1493][insmod]
[2014-07-17 23:45:48][  201.545889] [50394][150000097003a][INFO][Bdm_cfg register PID to diagnose success.][BDM][bdmCfgDebugInit,1016][insmod]
[2014-07-17 23:45:48][  201.545894] [50394][1500000970075][INFO][BDM init lib succeed.][BDM][bdmLibInit,68][insmod]
[2014-07-17 23:45:48][  201.565617] [50399][150000098010f][INFO][SD init dev config.][BDM_SD][sdInitConf,893][insmod]
[2014-07-17 23:45:48][  201.565633] [50399][1500000980111][INFO][Read bdmMaxDiskLUNNumber from conf, value(1664).][BDM_SD][bdmGetMaxDiskLunNumber,939][insmod]
[2014-07-17 23:45:48][  201.565638] [50399][1500000980110][INFO][After SD init g_bdmMaxDiskLUNNumber(1664).][BDM_SD][sdInitConf,897][insmod]
[2014-07-17 23:45:48][  201.565664] [50399][1500000980108][INFO][Read AllowedDiskProductLevel from conf BDM_AllowedDiskProductLevel , value(300).][BDM_SD][sdLoadProductInit,714][insmod]
[2014-07-17 23:45:48][  201.565671] [50399][150000098028a][INFO][Read NewProductLevel from conf BDM_NewProductLevel , value(330).][BDM_SD][sdLoadProductInit,726][insmod]
[2014-07-17 23:45:48][  201.565677] [50399][150000098028c][INFO][Read SelectDiskRule from conf BDM_SelectDiskRule , value(0).][BDM_SD][sdLoadProductInit,738][insmod]
[2014-07-17 23:45:48][  201.565685] [50399][150000098010a][INFO][Parse AllowedDiskSectorSize from conf BDM_AllowedDiskSectorSize ok, support sector num(5).][BDM_SD][sdLoadProductInit,752][insmod]
[2014-07-17 23:45:48][  201.565690] [50399][150000098010b][INFO][Add disk sector size(512) to support list.][BDM_SD][sdLoadProductInit,756][insmod]
[2014-07-17 23:45:48][  201.565694] [50399][150000098010b][INFO][Add disk sector size(4096) to support list.][BDM_SD][sdLoadProductInit,756][insmod]
[2014-07-17 23:45:48][  201.565699] [50399][150000098010b][INFO][Add disk sector size(520) to support list.][BDM_SD][sdLoadProductInit,756][insmod]
[2014-07-17 23:45:48][  201.565704] [50399][150000098010b][INFO][Add disk sector size(4104) to support list.][BDM_SD][sdLoadProductInit,756][insmod]
[2014-07-17 23:45:48][  201.565708] [50399][150000098010b][INFO][Add disk sector size(4160) to support list.][BDM_SD][sdLoadProductInit,756][insmod]
[2014-07-17 23:45:48][  201.565715] [50399][150000098029f][INFO][Add LowThroughputFrameNum size(288) to list.][BDM_SD][sdLoadLowThroughoutInit,579][insmod]
[2014-07-17 23:45:48][  201.565719] [50399][150000098029f][INFO][Add LowThroughputFrameNum size(216) to list.][BDM_SD][sdLoadLowThroughoutInit,579][insmod]
[2014-07-17 23:45:48][  201.565724] [50399][150000098029f][INFO][Add LowThroughputFrameNum size(144) to list.][BDM_SD][sdLoadLowThroughoutInit,579][insmod]
[2014-07-17 23:45:48][  201.565729] [50399][150000098029f][INFO][Add LowThroughputFrameNum size(72) to list.][BDM_SD][sdLoadLowThroughoutInit,579][insmod]
[2014-07-17 23:45:48][  201.565733] [50399][150000098029f][INFO][Add LowThroughputFrameNum size(0) to list.][BDM_SD][sdLoadLowThroughoutInit,579][insmod]
[2014-07-17 23:45:48][  201.565740] [50399][15000009802a2][INFO][Add LowThroughputThresh size(3000) to list.][BDM_SD][sdLoadLowThroughoutInit,601][insmod]
[2014-07-17 23:45:48][  201.565745] [50399][15000009802a2][INFO][Add LowThroughputThresh size(550) to list.][BDM_SD][sdLoadLowThroughoutInit,601][insmod]
[2014-07-17 23:45:48][  201.565749] [50399][15000009802a2][INFO][Add LowThroughputThresh size(450) to list.][BDM_SD][sdLoadLowThroughoutInit,601][insmod]
[2014-07-17 23:45:48][  201.565754] [50399][15000009802a2][INFO][Add LowThroughputThresh size(250) to list.][BDM_SD][sdLoadLowThroughoutInit,601][insmod]
[2014-07-17 23:45:48][  201.565759] [50399][15000009802a2][INFO][Add LowThroughputThresh size(100) to list.][BDM_SD][sdLoadLowThroughoutInit,601][insmod]
[2014-07-17 23:45:48][  201.565769] [50399][1500000980298][INFO][First frame id of local ctrl is (4294967295).][BDM_SD][sdConfSetFirstDiskFrameIdOfPair,851][insmod]
[2014-07-17 23:45:48][  201.565776] [50399][1500000150318][ERR][partition(SD HOST POOL) size(75816) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.565782] [50399][1500000150913][INFO][Ptt (46) need size (75816), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.565810] [50399][1500000150914][INFO][Create Partition success, use block number 1, free block number 81917, partition name SD HOST POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.565843] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.565852] [50399][1500000150318][ERR][partition(SD FRAME POOL) size(139304) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.565857] [50399][1500000150913][INFO][Ptt (47) need size (139304), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.565884] [50399][1500000150914][INFO][Create Partition success, use block number 1, free block number 81916, partition name SD FRAME POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.565906] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.565914] [50399][15000008e0000][INFO][Create TPOOL, pid(152), name(SD_THREAD_POOL), num(1).][IOD][TP_CreateThreadPool,471][insmod]
[2014-07-17 23:45:48][  201.565932] [50399][1500000150318][ERR][partition(SD_FRAME_CMD_S) size(2360) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.565938] [50399][1500000150913][INFO][Ptt (48) need size (2360), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.565965] [50399][1500000150914][INFO][Create Partition success, use block number 1, free block number 81915, partition name SD_FRAME_CMD_S , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.565997] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.566099] [50399][150000015090b][INFO][Create Partition success, use block number 1, free block number 81914, partition name SD_DEVICEMAP_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.566121] [50399][1500000150913][INFO][Ptt (50) need size (1863680), round size (1863680).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.566278] [50399][1500000150914][INFO][Create Partition success, use block number 7, free block number 81907, partition name SD DEVICE POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.566387] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.566395] [50399][1500000150913][INFO][Ptt (51) need size (1597440), round size (1597440).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.566534] [50399][1500000150914][INFO][Create Partition success, use block number 6, free block number 81901, partition name SD EVENT POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.566648] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.566656] [50399][1500000150913][INFO][Ptt (52) need size (532480), round size (532480).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.566708] [50399][1500000150914][INFO][Create Partition success, use block number 2, free block number 81899, partition name SD SLOW EVENT POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.566765] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.566773] [50399][150000097009c][INFO][Register event(1) handle(sdSubscribeDiskEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.566778] [50399][15000009700a1][INFO][Register event(1) func(sdSubscribeDiskEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.566783] [50399][15000009801ad][INFO][SD register disk in event succeed.][BDM_SD][sdSubscribeDiskEvent,1195][insmod]
[2014-07-17 23:45:48][  201.566788] [50399][150000097009c][INFO][Register event(2) handle(sdSubscribeDiskEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.566793] [50399][15000009700a1][INFO][Register event(2) func(sdSubscribeDiskEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.566797] [50399][15000009801af][INFO][SD register disk out event succeed.][BDM_SD][sdSubscribeDiskEvent,1203][insmod]
[2014-07-17 23:45:48][  201.566802] [50399][150000097009c][INFO][Register event(8) handle(sdSubscribeDiskEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.566807] [50399][15000009700a1][INFO][Register event(8) func(sdSubscribeDiskEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.566812] [50399][15000009801b1][INFO][SD register disk info changed event succeed.][BDM_SD][sdSubscribeDiskEvent,1212][insmod]
[2014-07-17 23:45:48][  201.566817] [50399][150000098013a][INFO][Register device event handler ok, device type(0), handler name(Disk event handler).][BDM_SD][sdRegisterDeviceEventHandler,976][insmod]
[2014-07-17 23:45:48][  201.566823] [50399][150000098013a][INFO][Register device event handler ok, device type(1), handler name(Ext lun event handler).][BDM_SD][sdRegisterDeviceEventHandler,976][insmod]
[2014-07-17 23:45:48][  201.566829] [50399][150000098013a][INFO][Register device event handler ok, device type(3), handler name(Private device event handler).][BDM_SD][sdRegisterDeviceEventHandler,976][insmod]
[2014-07-17 23:45:48][  201.566837] [50399][150000015090b][INFO][Create Partition success, use block number 1, free block number 81898, partition name SD_ADAPTERDEVICES_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.566850] [50399][1500000150913][INFO][Ptt (54) need size (1064960), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.566949] [50399][1500000150914][INFO][Create Partition success, use block number 4, free block number 81894, partition name SD ADAPTER DEV , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.567036] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.567044] [50399][1500000150318][ERR][partition(SD UPGRADE FW POOL) size(6952) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.567050] [50399][1500000150913][INFO][Ptt (55) need size (6952), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.567079] [50399][1500000150914][INFO][Create Partition success, use block number 1, free block number 81893, partition name SD UPGRADE FW POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.567114] [50399][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.567123] [50399][150000015090b][INFO][Create Partition success, use block number 1, free block number 81892, partition name SD_NOTREADYDEVICES_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.567158] [50399][150000098025c][INFO][Read line(INTEL=SSDSA INTEL
[2014-07-17 23:45:48][  201.567160] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567165] [50399][1500000980259][INFO][Add one vendor(name INTEL, index 0) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567170] [50399][150000098025a][INFO][Add one model prefix(name SSDSA, vendor INTEL) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567183] [50400][150000098025a][INFO][Add one model prefix(name INTEL, vendor INTEL) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567196] [50400][150000098025c][INFO][Read line(HUASAI=HSSD HUASAI
[2014-07-17 23:45:48][  201.567198] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567203] [50400][1500000980259][INFO][Add one vendor(name HUASAI, index 1) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567208] [50400][150000098025a][INFO][Add one model prefix(name HSSD, vendor HUASAI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567222] [50400][150000098025a][INFO][Add one model prefix(name HUASAI, vendor HUASAI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567271] [50400][150000098025c][INFO][Read line(STEC=STEC MACH Zeus
[2014-07-17 23:45:48][  201.567272] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567280] [50400][1500000980259][INFO][Add one vendor(name STEC, index 2) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567293] [50400][150000098025a][INFO][Add one model prefix(name STEC, vendor STEC) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567303] [50400][150000098025a][INFO][Add one model prefix(name MACH, vendor STEC) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567317] [50400][150000098025a][INFO][Add one model prefix(name Zeus, vendor STEC) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567338] [50400][150000098025c][INFO][Read line(HITACHI=HDS HDT HUA HDE HUS
[2014-07-17 23:45:48][  201.567340] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567354] [50400][1500000980259][INFO][Add one vendor(name HITACHI, index 3) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567362] [50400][150000098025a][INFO][Add one model prefix(name HDS, vendor HITACHI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567374] [50400][150000098025a][INFO][Add one model prefix(name HDT, vendor HITACHI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567384] [50400][150000098025a][INFO][Add one model prefix(name HUA, vendor HITACHI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567391] [50400][150000098025a][INFO][Add one model prefix(name HDE, vendor HITACHI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567401] [50400][150000098025a][INFO][Add one model prefix(name HUS, vendor HITACHI) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567431] [50400][150000098025c][INFO][Read line(SEAGATE=ST
[2014-07-17 23:45:48][  201.567433] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567440] [50400][1500000980259][INFO][Add one vendor(name SEAGATE, index 4) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567455] [50400][150000098025a][INFO][Add one model prefix(name ST, vendor SEAGATE) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567483] [50400][150000098025c][INFO][Read line(SAMSUNG=HE HA HD
[2014-07-17 23:45:48][  201.567484] ) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567506] [50400][1500000980259][INFO][Add one vendor(name SAMSUNG, index 5) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567516] [50400][150000098025a][INFO][Add one model prefix(name HE, vendor SAMSUNG) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567527] [50400][150000098025a][INFO][Add one model prefix(name HA, vendor SAMSUNG) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567548] [50400][150000098025a][INFO][Add one model prefix(name HD, vendor SAMSUNG) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567564] [50400][150000098025c][INFO][Read line(W.D=WD) from vendor modle config.][BDM_SD][sdLoadVendorModelPairFromConfig,582][insmod]
[2014-07-17 23:45:48][  201.567572] [50400][1500000980259][INFO][Add one vendor(name W.D, index 6) from config.][BDM_SD][sdAddVendorName,448][insmod]
[2014-07-17 23:45:48][  201.567588] [50400][150000098025a][INFO][Add one model prefix(name WD, vendor W.D) from config.][BDM_SD][sdAddModelPrefix,488][insmod]
[2014-07-17 23:45:48][  201.567612] [50400][150000098011b][INFO][SD register diagnose console.][BDM_SD][sdDebugInit,3496][insmod]
[2014-07-17 23:45:48][  201.567859] [50400][15000009700c2][INFO][Register req trace SD_REQ_TRACE.][BDM][reqTraceReg,807][insmod]
[2014-07-17 23:45:48][  201.567873] [50400][1500000980268][INFO][Register sd slow event delay time smart tp.][BDM_SD][sdSmartTpSlowEventDelayInit,355][insmod]
[2014-07-17 23:45:48][  201.567884] [50400][1500000980231][INFO][SD init succeed.][BDM_SD][sdInit,160][insmod]
[2014-07-17 23:45:48][  201.567905] [50400][1500000150913][INFO][Ptt (57) need size (1064960), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.568010] [50400][1500000150914][INFO][Create Partition success, use block number 4, free block number 81888, partition name SIO_QUEUE_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.568070] [50400][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.568077] [50400][1500000150913][INFO][Ptt (58) need size (798720), round size (798720).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.568154] [50400][1500000150914][INFO][Create Partition success, use block number 3, free block number 81885, partition name SIO_IOD_CMD_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.568233] [50400][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.568241] [50400][1500000150913][INFO][Ptt (59) need size (55377920), round size (55377920).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.573643] [50401][1500000150914][INFO][Create Partition success, use block number 208, free block number 81677, partition name SIO_IOSTAT_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.573719] [50401][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.573730] [50401][15000009700eb][INFO][Register SCHED interface.][BDM][RegisterSchedOps,149][insmod]
[2014-07-17 23:45:48][  201.573744] [50401][1500000150318][ERR][partition(SIO_DEBUG_POOL) size(19496) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.573750] [50401][1500000150913][INFO][Ptt (60) need size (19496), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.573782] [50401][1500000150914][INFO][Create Partition success, use block number 1, free block number 81676, partition name SIO_DEBUG_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.573821] [50401][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.573835] [50401][15000009700c2][INFO][Register req trace SIO_REQ_TRACE.][BDM][reqTraceReg,807][insmod]
[2014-07-17 23:45:48][  201.573841] [50401][15000009700aa][INFO][Register any trace SIO_ANY_TRACE.][BDM][anyTraceRegister,154][insmod]
[2014-07-17 23:45:48][  201.573875] [50401][15000009d013b][INFO][Sio trace point init succeed.][BDM_SIO][sioTracePointInit,974][insmod]
[2014-07-17 23:45:48][  201.573880] [50401][15000009d00c4][INFO][SIO init debug success.][BDM_SIO][sioInitMml,5898][insmod]
[2014-07-17 23:45:48][  201.573887] [50401][1500000150913][INFO][Ptt (61) need size (2396160), round size (2396160).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.574123] [50401][1500000150914][INFO][Create Partition success, use block number 9, free block number 81667, partition name SIO_DHA_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.574129] [50401][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.574252] [50401][1500000150913][INFO][Ptt (62) need size (5591040), round size (5591040).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.574785] [50401][1500000150914][INFO][Create Partition success, use block number 21, free block number 81646, partition name SIO_DHA_REQ_START_POOL , need recovery: FALSE, memleak detectable: FALSE][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.575379] [50402][1500000150317][INFO][Initial slab partition time :1 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.575386] [50402][1500000150913][INFO][Ptt (63) need size (6656000), round size (6656000).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.576015] [50402][1500000150914][INFO][Create Partition success, use block number 25, free block number 81621, partition name SIO_DHA_REQ_DONE_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.576596] [50402][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.576604] [50402][15000008e0000][INFO][Create TPOOL, pid(157), name(BDM_SIO_THREAD_POOL), num(1).][IOD][TP_CreateThreadPool,471][insmod]
[2014-07-17 23:45:48][  201.576665] [50402][15000009d00ea][INFO][Sio dha init succeed.][BDM_SIO][sioDhaInit,1519][insmod]
[2014-07-17 23:45:48][  201.576669] [50402][15000009d00f8][INFO][Current working mode : dif.][BDM_SIO][sioInit,700][insmod]
[2014-07-17 23:45:48][  201.576674] [50402][15000009d00f9][INFO][SIO init success, inner version 1.5.][BDM_SIO][sioInit,703][insmod]
[2014-07-17 23:45:48][  201.576678] [50402][1500000980234][INFO][SD SIO module init succeed.][BDM_SD][sdInitModule,211][insmod]
[2014-07-17 23:45:48][  201.577197] [50402][15000008e0000][INFO][Enter TPOOL thread, pid(157), name(TP_BDM_SIO_THREAD_POOL_0).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.577209] [50402][15000008e0000][INFO][Enter TPOOL thread, pid(152), name(TP_SD_THREAD_POOL_0).][IOD][TP_ThreadLoop,378][insmod]
[2014-07-17 23:45:48][  201.593022] [50406][1500000150913][INFO][Ptt (64) need size (2396160), round size (2396160).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.593236] [50406][1500000150914][INFO][Create Partition success, use block number 9, free block number 81612, partition name hdm disk private memory pool , need recovery: FALSE, memleak detectable: ][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.593302] [50406][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.593312] [50406][1500000150913][INFO][Ptt (65) need size (6656000), round size (6656000).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.593909] [50406][1500000150914][INFO][Create Partition success, use block number 25, free block number 81587, partition name hdm work memory pool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.594152] [50406][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.594161] [50406][1500000150913][INFO][Ptt (66) need size (27688960), round size (27688960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.596859] [50407][1500000150914][INFO][Create Partition success, use block number 104, free block number 81483, partition name hdm ansync frame 16k memory pool , need recovery: FALSE, memleak detect][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.596944] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.596954] [50407][1500000150913][INFO][Ptt (67) need size (532480), round size (532480).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597013] [50407][1500000150914][INFO][Create Partition success, use block number 2, free block number 81481, partition name hdm disk config memory pool , need recovery: FALSE, memleak detectable: F][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597067] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597075] [50407][1500000150913][INFO][Ptt (68) need size (532480), round size (532480).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597135] [50407][1500000150914][INFO][Create Partition success, use block number 2, free block number 81479, partition name hdm disk config black memory pool , need recovery: FALSE, memleak detecta][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597223] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597232] [50407][1500000150913][INFO][Ptt (69) need size (1064960), round size (1064960).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597342] [50407][1500000150914][INFO][Create Partition success, use block number 4, free block number 81475, partition name hdm ansync context memory pool , need recovery: FALSE, memleak detectable][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597513] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597521] [50407][1500000150318][ERR][partition(hdm frame routine memory pool) size(3112) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.597527] [50407][1500000150913][INFO][Ptt (70) need size (3112), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597559] [50407][1500000150914][INFO][Create Partition success, use block number 1, free block number 81474, partition name hdm frame routine memory pool , need recovery: FALSE, memleak detectable:][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597568] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597575] [50407][1500000150318][ERR][partition(hdm diagnose configure memory pool) size(93296) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.597581] [50407][1500000150913][INFO][Ptt (71) need size (93296), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597614] [50407][1500000150914][INFO][Create Partition success, use block number 1, free block number 81473, partition name hdm diagnose configure memory pool , need recovery: FALSE, memleak detect][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597620] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597627] [50407][1500000150318][ERR][partition(hdm diagnose read test area memory pool) size(49192) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.597633] [50407][1500000150913][INFO][Ptt (72) need size (49192), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597666] [50407][1500000150914][INFO][Create Partition success, use block number 1, free block number 81472, partition name hdm diagnose read test area memory pool , need recovery: FALSE, memleak d][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597698] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597706] [50407][1500000150318][ERR][partition(hdm diagnose status pool) size(1776) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.597712] [50407][1500000150913][INFO][Ptt (73) need size (1776), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597744] [50407][1500000150914][INFO][Create Partition success, use block number 1, free block number 81471, partition name hdm diagnose status pool , need recovery: FALSE, memleak detectable: FALS][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597756] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.597763] [50407][1500000150318][ERR][partition(hdm diagnose record pool) size(2080) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.597768] [50407][1500000150913][INFO][Ptt (74) need size (2080), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.597801] [50407][1500000150914][INFO][Create Partition success, use block number 1, free block number 81470, partition name hdm diagnose record pool , need recovery: FALSE, memleak detectable: FALS][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.597828] [50407][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.598068] [50407][15000009a02b1][INFO][Start init disk routine flow.][BDM_HDM][hdmRtInit,3680][insmod]
[2014-07-17 23:45:48][  201.598076] [50407][150000015090b][INFO][Create Partition success, use block number 1, free block number 81469, partition name HDM_WAITRTDISK_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.598083] [50407][150000015090b][INFO][Create Partition success, use block number 1, free block number 81468, partition name HDM_SYNCTIMEDISK_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.598091] [50407][150000015090b][INFO][Create Partition success, use block number 1, free block number 81467, partition name HDM_SYNCTIMEDISK_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.598098] [50407][15000009a029f][INFO][Set disk routine self intv time(3600), HSSD sync time cycle 3600, life manage cycle 86400.][BDM_HDM][hdmRtSetDefaultCycle,3148][insmod]
[2014-07-17 23:45:48][  201.598109] [50407][15000009a0299][INFO][Get alarm temperature(53) from product conf succeed.][BDM_HDM][hdmRtGetTemperatureConf,3065][insmod]
[2014-07-17 23:45:48][  201.598115] [50407][15000009a029b][INFO][Get resum temperature(50) from product conf succeed.][BDM_HDM][hdmRtGetTemperatureConf,3083][insmod]
[2014-07-17 23:45:48][  201.598120] [50407][15000009a029c][INFO][Set low alarm temperature 5, resume tempture 5.][BDM_HDM][hdmRtGetTemperatureConf,3090][insmod]
[2014-07-17 23:45:48][  201.598127] [50407][15000009a029e][INFO][Get disk self intv time(1) from product conf succeed.][BDM_HDM][hdmRtGetSelfIntvConf,3124][insmod]
[2014-07-17 23:45:48][  201.598133] [50407][15000009a02aa][INFO][Create routine loop timer 12.][BDM_HDM][hdmRtCreateTimer,3526][insmod]
[2014-07-17 23:45:48][  201.598140] [50407][15000009a02ac][INFO][Create HSSD proc(SYNC_TIME) timer 13.][BDM_HDM][hdmRtCreateTimer,3547][insmod]
[2014-07-17 23:45:48][  201.598146] [50407][15000009a02ac][INFO][Create HSSD proc(LIFE_MANAGE) timer 14.][BDM_HDM][hdmRtCreateTimer,3547][insmod]
[2014-07-17 23:45:48][  201.598155] [50407][15000009a0152][INFO][Read board routine self intv(1250) from conf BDM_ROUTINE _BoardSelf as disk ber routine time succeed.][BDM_HDM][hdmFmRtBerInitConf,584][insmod]
[2014-07-17 23:45:48][  201.598161] [50407][15000009a0024][INFO][Get hdm db addr ffffffffa34527c0.][BDM_HDM][hdmDbInit,107][insmod]
[2014-07-17 23:45:48][  201.598167] [50407][150000015090b][INFO][Create Partition success, use block number 1, free block number 81466, partition name HDM_POWERCTRLTIME_POOL, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:48][  201.598173] [50407][15000009700e7][INFO][Register HDM interface.][BDM][RegisterHdmOps,78][insmod]
[2014-07-17 23:45:48][  201.598817] [50407][15000009a02d7][INFO][Hdm trace point init succeed.][BDM_HDM][hdmTracePointInit,1613][insmod]
[2014-07-17 23:45:48][  201.598821] [50407][15000009a02d3][INFO][Before register hdm tur smart tp.][BDM_HDM][hdmSmartTpDiagTurInit,1508][insmod]
[2014-07-17 23:45:48][  201.598828] [50407][15000009a02d4][INFO][After register hdm tur smart tp.][BDM_HDM][hdmSmartTpDiagTurInit,1512][insmod]
[2014-07-17 23:45:48][  201.598834] [50407][15000009a02d5][INFO][Register hdm diagnose reserve area test verify smart tp.][BDM_HDM][hdmSmartTpDiagReserveAreaTest..t,1521][insmod]
[2014-07-17 23:45:48][  201.598840] [50407][15000009a02d6][INFO][Register hdm diagnose reserve area test drv exec time smart tp.][BDM_HDM][hdmSmartTpDiagReserveAreaTest..t,1529][insmod]
[2014-07-17 23:45:48][  201.598846] [50407][15000009a02f5][INFO][Register hdm route ssd used life smart tp.][BDM_HDM][hdmSmartTpRtSSDUsedLifeInit,1537][insmod]
[2014-07-17 23:45:48][  201.598851] [50407][15000009a02f6][INFO][Register hdm route ssd power on time smart tp.][BDM_HDM][hdmSmartTpRtSSDPowerOnTimeInit,1545][insmod]
[2014-07-17 23:45:48][  201.598857] [50407][15000009a02f6][INFO][Register hdm route ssd temperature alarm smart tp.][BDM_HDM][hdmSmartTpRtSSDTemperatureAla..t,1553][insmod]
[2014-07-17 23:45:48][  201.598863] [50407][15000009a02f6][INFO][Register hdm read log page smart tp.][BDM_HDM][hdmSmartTpReadLogPageInit,1561][insmod]
[2014-07-17 23:45:48][  201.598869] [50407][15000009700aa][INFO][Register any trace HDM_ANY_TRACE.][BDM][anyTraceRegister,154][insmod]
[2014-07-17 23:45:48][  201.615796] [50412][15000009b0000][INFO][BdmMaxDiskLunNumber=1664][BDM_MP][mpInitConfig,60][insmod]
[2014-07-17 23:45:48][  201.615801] [50412][15000009b0000][INFO][maxMpArrayNumber=64][BDM_MP][mpInitConfig,61][insmod]
[2014-07-17 23:45:48][  201.615806] [50412][15000009b0000][INFO][maxMpLinkNumber=256][BDM_MP][mpInitConfig,62][insmod]
[2014-07-17 23:45:48][  201.615810] [50412][15000009b0000][INFO][maxMpPathPerLun=4][BDM_MP][mpInitConfig,63][insmod]
[2014-07-17 23:45:48][  201.615818] [50412][1500000150913][INFO][Ptt (79) need size (1863680), round size (1863680).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.615998] [50412][1500000150914][INFO][Create Partition success, use block number 7, free block number 81459, partition name MP_CMD_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.616169] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.616177] [50412][1500000150913][INFO][Ptt (80) need size (2396160), round size (2396160).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.616401] [50412][1500000150914][INFO][Create Partition success, use block number 9, free block number 81450, partition name MP_ASL_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.616625] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.616648] [50412][15000009b0200][INFO][Init obs event success.][BDM_MP][mpInitObs,867][insmod]
[2014-07-17 23:45:48][  201.616653] [50412][1500000150318][ERR][partition(MP_WHITELIST_POOL) size(38952) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.616660] [50412][1500000150913][INFO][Ptt (81) need size (38952), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.616690] [50412][1500000150914][INFO][Create Partition success, use block number 1, free block number 81449, partition name MP_WHITELIST_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.616731] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.616737] [50412][15000009b0229][INFO][MP init white list success.][BDM_MP][mpInitWhiteList,766][insmod]
[2014-07-17 23:45:48][  201.616743] [50412][1500000150913][INFO][Ptt (82) need size (798720), round size (798720).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.616819] [50412][1500000150914][INFO][Create Partition success, use block number 3, free block number 81446, partition name MP_LINK_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.616849] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.616857] [50412][15000009b01f9][INFO][FUNC mpInitLink() : register frame event(2) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.616863] [50412][1500000150913][INFO][Ptt (83) need size (2396160), round size (2396160).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.617080] [50412][1500000150914][INFO][Create Partition success, use block number 9, free block number 81437, partition name MP_PATH_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.617290] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.617297] [50412][1500000150913][INFO][Ptt (84) need size (1331200), round size (1331200).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.617421] [50412][1500000150914][INFO][Create Partition success, use block number 5, free block number 81432, partition name MP_PATH_CMD_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.617693] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.617700] [50412][15000009b01f9][INFO][FUNC mpInitPath() : register frame event(4) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.617705] [50412][15000009b01f9][INFO][FUNC mpInitPath() : register frame event(10) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.617710] [50412][15000009b01f9][INFO][FUNC mpInitPath() : register frame event(12) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.617717] [50412][1500000150913][INFO][Ptt (85) need size (798720), round size (798720).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.617797] [50412][1500000150914][INFO][Create Partition success, use block number 3, free block number 81429, partition name MP_TPG_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.617898] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.617907] [50412][1500000150913][INFO][Ptt (86) need size (798720), round size (798720).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.617983] [50412][1500000150914][INFO][Create Partition success, use block number 3, free block number 81426, partition name MP_LUN_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.618062] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.618069] [50412][15000009b01f9][INFO][FUNC mpInitLun() : register frame event(8) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.618075] [50412][150000097009c][INFO][Register event(17) handle(mpSubscribeLunEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.618080] [50412][15000009700a1][INFO][Register event(17) func(mpSubscribeLunEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.618085] [50412][150000097009c][INFO][Register event(18) handle(mpSubscribeLunEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.618090] [50412][15000009700a1][INFO][Register event(18) func(mpSubscribeLunEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.618095] [50412][1500000150318][ERR][partition(MP_ARRAY_POOL) size(16424) to small.][CMM][CMM_CreateSlabPartition,812][insmod]
[2014-07-17 23:45:48][  201.618101] [50412][1500000150913][INFO][Ptt (87) need size (16424), round size (266240).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.618131] [50412][1500000150914][INFO][Create Partition success, use block number 1, free block number 81425, partition name MP_ARRAY_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.618168] [50412][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.618175] [50412][15000009700e5][INFO][Register MP interface.][BDM][RegisterMpOps,55][insmod]
[2014-07-17 23:45:48][  201.618181] [50412][1500000150913][INFO][Ptt (88) need size (12247040), round size (12247040).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.619298] [50413][1500000150914][INFO][Create Partition success, use block number 46, free block number 81379, partition name MP_EVEN_POOL , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.619827] [50413][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.619835] [50413][150000097009c][INFO][Register event(3) handle(mpSubscribeLinkEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.619841] [50413][15000009700a1][INFO][Register event(3) func(mpSubscribeLinkEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.619846] [50413][150000097009c][INFO][Register event(4) handle(mpSubscribeLinkEvent).][BDM][obsRegisterEventHandle,344][insmod]
[2014-07-17 23:45:48][  201.619851] [50413][15000009700a1][INFO][Register event(4) func(mpSubscribeLinkEvent) successfully.][BDM][obsRegisterEventHandle,399][insmod]
[2014-07-17 23:45:48][  201.619888] [50413][15000009b03ac][INFO][Mp trace point init succeed.][BDM_MP][mpTracePointInit,492][insmod]
[2014-07-17 23:45:48][  201.619898] [50413][15000009b01f9][INFO][FUNC mpInitRoutineTest() : register frame event(6) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619905] [50413][15000009b01f9][INFO][FUNC mpInitRoutineTest() : register frame event(16) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619912] [50413][15000009b01f9][INFO][FUNC mpInitRoutineTest() : register frame event(18) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619918] [50413][15000009b02f7][INFO][Strart ini LUN monitor.][BDM_MP][mpLunMonitorInit,1268][insmod]
[2014-07-17 23:45:48][  201.619924] [50413][15000009b01f9][INFO][FUNC mpLunMonitorInit() : register frame event(14) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619931] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(129) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619937] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(130) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619944] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(131) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619950] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(132) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619957] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(133) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619963] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(134) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619970] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(135) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619976] [50413][15000009b01f9][INFO][FUNC mpInitUnitAttention() : register frame event(136) success.][BDM_MP][mpRegisterFrameHandle,708][insmod]
[2014-07-17 23:45:48][  201.619987] [50413][15000009b0226][INFO][Add a white list succeed, vendor name(DEFAULT ), product id(UNSUPPORT       ), path selector(2), driver id(1024), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.619993] [50413][15000009b01f1][INFO][FUNC mpUnsupDeviceInit() : register asl ops with driver id(1024) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.634339] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(LUNZ            ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634347] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(VRAID           ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634355] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(RAID 5          ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634362] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(RAID 6          ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634369] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(DISK            ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634377] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(DGC     ), product id(RAID 1/0        ), path selector(1), driver id(9), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634384] [50416][15000009b0226][INFO][Add a white list succeed, vendor name(EMC     ), product id(CX4-240         ), path selector(2), driver id(3), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.634390] [50416][15000009b01f1][INFO][FUNC emcInit() : register asl ops with driver id(9) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.634395] [50416][15000009b01f1][INFO][FUNC emcInit() : register asl ops with driver id(3) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.647761] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV100          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647770] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV110          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647778] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV200          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647785] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV210          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647792] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV300          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647799] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV300-S        ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647806] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV400          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647813] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV450          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647821] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV340          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647828] [50420][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(HSV360          ), path selector(2), driver id(4), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.647835] [50420][15000009b01f1][INFO][FUNC HpEvaInit() : register asl ops with driver id(4) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.661198] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(V1500           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661207] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(V1800           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661214] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2100           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661221] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2300           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661229] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2300E          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661240] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2600           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661247] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5100           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661254] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5300           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661261] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5500           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661268] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5600           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661275] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S6800E          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661282] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S8000           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661290] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(VIS6000         ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661297] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(Dorado2100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661304] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2600T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661311] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5500T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661318] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5600T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661326] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5800T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661333] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S6800T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661340] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S3900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661347] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S3900-M200      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661355] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S3900-M300      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661362] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661369] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S5900-M200      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661377] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S6900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661384] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2900           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661391] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUASY   ), product id(S2200T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661398] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(V1500           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661405] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(V1800           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661412] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2100           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661419] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2300           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661426] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2300E          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661434] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2600           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661441] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5100           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661448] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5300           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661455] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5500           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661462] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5600           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661469] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S6800E          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661476] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S8000           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661484] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(VIS6000         ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661491] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(Dorado2100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661498] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2600T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661505] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5500T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661512] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5600T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661520] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5800T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661527] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S6800T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661534] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S3900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661541] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S3900-M200      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661549] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S3900-M300      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661556] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661563] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S5900-M200      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661570] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S6900-M100      ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661578] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2900           ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661585] [50423][15000009b0226][INFO][Add a white list succeed, vendor name(HUAWEI  ), product id(S2200T          ), path selector(2), driver id(1), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.661592] [50423][15000009b01f1][INFO][FUNC huaweiInit() : register asl ops with driver id(1) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.674888] [50426][15000009b0226][INFO][Add a white list succeed, vendor name(NETAPP  ), product id(LUN             ), path selector(1), driver id(10), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.674896] [50426][15000009b0226][INFO][Add a white list succeed, vendor name(NETAPP  ), product id(FAS2020         ), path selector(2), driver id(5), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.674904] [50426][15000009b0226][INFO][Add a white list succeed, vendor name(NETAPP  ), product id(FAS2040         ), path selector(2), driver id(5), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.674911] [50426][15000009b0226][INFO][Add a white list succeed, vendor name(NETAPP  ), product id(FAS2050         ), path selector(2), driver id(5), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.674917] [50426][15000009b01f1][INFO][FUNC netappInit() : register asl ops with driver id(5) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.674922] [50426][15000009b01f1][INFO][FUNC netappInit() : register asl ops with driver id(10) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.688221] [50430][15000009b0226][INFO][Add a white list succeed, vendor name(SUN     ), product id(LCSM100_F       ), path selector(2), driver id(2), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.688230] [50430][15000009b0226][INFO][Add a white list succeed, vendor name(SUN     ), product id(SUN_6130        ), path selector(2), driver id(2), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.688237] [50430][15000009b0226][INFO][Add a white list succeed, vendor name(SUN     ), product id(CSM200_R        ), path selector(2), driver id(2), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.688244] [50430][15000009b0226][INFO][Add a white list succeed, vendor name(SUN     ), product id(SUN_6540        ), path selector(2), driver id(2), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.688252] [50430][15000009b0226][INFO][Add a white list succeed, vendor name(SUN     ), product id(SUN_6180        ), path selector(2), driver id(2), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.688258] [50430][15000009b01f1][INFO][FUNC sunStkInit() : register asl ops with driver id(2) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.701659] [50433][15000009b0226][INFO][Add a white list succeed, vendor name(IBM     ), product id(1814      FAStT ), path selector(2), driver id(6), failback(1), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.701666] [50433][15000009b01f1][INFO][FUNC ibmDsInit() : register asl ops with driver id(6) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.714820] [50436][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(MSA2324fc       ), path selector(2), driver id(8), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.714829] [50436][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(P2000G3 FC      ), path selector(2), driver id(8), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.714836] [50436][15000009b0226][INFO][Add a white list succeed, vendor name(HP      ), product id(P2000G3 FC/iSCSI), path selector(2), driver id(8), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.714842] [50436][15000009b01f1][INFO][FUNC HpMsaInit() : register asl ops with driver id(8) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.722585] pcieport 0000:00:02.2: eth6: Link is up at 1000 Mbps, full duplex
[2014-07-17 23:45:48][  201.722588] pcieport 0000:00:02.2: eth6: Flow control is off for TX and off for RX
[2014-07-17 23:45:48][  201.722591] pcieport 0000:00:02.2: eth6: EEE is disabled
[2014-07-17 23:45:48][  201.722604] [50438][000050000408b397][INFO][Send event:13.][NIC][CallFunc,213]
[2014-07-17 23:45:48][  201.722658] [50438][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:48][  201.722666] [50438][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:48][  201.722695] [50438][0000500004201235][INFO][id:0x200010000 routine (DPL_HandleDrvPortEvent:ffff88010d1bbbc0) gen event: (LINK_UP), ret: 0.][DMI][DPL_CheckStateGen,2549]
[2014-07-17 23:45:48][  201.722706] [50438][0000500004201235][INFO][id: 0x200010000, last(INITIAL)->new(LINK_UP),StateListChanged = 0.][DMI][DPL_HandleDevOperateResult,3481]
[2014-07-17 23:45:48][  201.722714] [50438][0000500004200000][INFO][SendFruChg: state 20(LINK_UP) obj 213(ETH) id 0x54846fb8ca16503f 0x20000][DMI][DPL_SendDevChange,3661]
[2014-07-17 23:45:48][  201.722722] [50438][0000500004200000][WARN][Send fru change function is not register. Cannot send fru change.][DMI][SendFruChange,274]
[2014-07-17 23:45:48][  201.722730] [50438][0000500004201235][INFO][DPL handle device(202) drv event:13, Id:200010000, Ret:0.][DMI][DPL_DeviceDrvEventHandle,3970]
[2014-07-17 23:45:48][  201.724463] ADDRCONF(NETDEV_CHANGE): eth6: link becomes ready
[2014-07-17 23:45:48][  201.724573] [50439][000050000408b399][INFO][Event_dev: eth6, event: NETDEV_CHANGE 4.][NIC][Net_NetdevEvent,393]
[2014-07-17 23:45:48]the node info is: event_type:0x10 ifindex   :0x8 ip_addr   :0x0 link_state:69699 dev_name  :eth6
[2014-07-17 23:45:48][  201.738009] [50442][15000009b0226][INFO][Add a white list succeed, vendor name(HITACHI ), product id(DF600F          ), path selector(2), driver id(7), failback(2), failover(1).][BDM_MP][mpAddWhiteList,678][insmod]
[2014-07-17 23:45:48][  201.738016] [50442][15000009b01f1][INFO][FUNC hdsInit() : register asl ops with driver id(7) successfully.][BDM_MP][mpAslRegisterOps,623][insmod]
[2014-07-17 23:45:48][  201.762194] [50448][1500000150913][INFO][Ptt (89) need size (6389760), round size (6389760).][CMM][CMM_CreateSlabPartition,853][insmod]
[2014-07-17 23:45:48][  201.762787] [50448][1500000150914][INFO][Create Partition success, use block number 24, free block number 81355, partition name io scheduler pool , need recovery: FALSE, memleak detectable: FALSE.][CMM][CMM_CreateSlabPartition,907][insmod]
[2014-07-17 23:45:48][  201.762841] [50448][1500000150317][INFO][Initial slab partition time :0 jiffies, schedule count 0.][CMM][CMM_InitSlabPartition,482][insmod]
[2014-07-17 23:45:48][  201.762848] [50448][15000009c0001][INFO][Scheduler noop not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762852] [50448][15000009c0001][INFO][Scheduler noop not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762857] [50448][15000009c0003][INFO][Scheduler noop register succeed.][BDM_SCHED][schedRegisterAlgm,489][insmod]
[2014-07-17 23:45:48][  201.762861] [50448][15000009c0001][INFO][Scheduler deadline not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762866] [50448][15000009c0001][INFO][Scheduler deadline not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762870] [50448][15000009c0003][INFO][Scheduler deadline register succeed.][BDM_SCHED][schedRegisterAlgm,489][insmod]
[2014-07-17 23:45:48][  201.762874] [50448][15000009c0001][INFO][Scheduler pfe not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762879] [50448][15000009c0001][INFO][Scheduler pfe not found.][BDM_SCHED][schedAlgmFind,463][insmod]
[2014-07-17 23:45:48][  201.762883] [50448][15000009c0003][INFO][Scheduler pfe register succeed.][BDM_SCHED][schedRegisterAlgm,489][insmod]
[2014-07-17 23:45:48][  201.762888] [50448][15000009700eb][INFO][Register SCHED interface.][BDM][RegisterSchedOps,149][insmod]
[2014-07-17 23:45:48][  201.762906] [50448][15000009700c2][INFO][Register req trace SCHED_REQ_TRACE.][BDM][reqTraceReg,807][insmod]
[2014-07-17 23:45:48][  201.762910] [50448][15000009c0012][INFO][Scheduler module loading succeed.][BDM_SCHED][schedInit,1006][insmod]
[2014-07-17 23:45:48][  201.910274] [50485][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:45:48][  201.941812] [50493][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:45:48][  201.949700] [50495][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:45:48][  201.957493] boot disk is /dev/sda
[2014-07-17 23:45:48][  201.982225] [50503][5400040600ce][INF][Startup mode value=40.][BSP][COM_Star.eQuery,362][grep]
[2014-07-17 23:45:48][  202.014941] [50512][5400040607da][INF][Current bios channel is : 0.][BSP][SP5_GetB.ersion,1436][grep]
[2014-07-17 23:45:48][  202.022791] [50514][5400040607e3][INF][SPV2R1 BIOS Date:2014-02-25.][BSP][SPV2R1_G.osDate,1624][grep]
[2014-07-17 23:45:48][  202.030566] boot disk is /dev/sda
[2014-07-17 23:45:48][  202.078202] Not found raid device,single device system!
[2014-07-17 23:45:48][202120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:48][  202.092077] UPGRADE_SH [-y]: update patch or BIOS in system starting
[2014-07-17 23:45:48][  202.151027] begin to process cold patch
[2014-07-17 23:45:48][  202.162412] EXT3-fs (sda1): using internal journal
[2014-07-17 23:45:48][  202.167563] process os_upgrade_coldpatch.sh -a
[2014-07-17 23:45:48][  202.172755] end process cold patch
[2014-07-17 23:45:48][  202.177856] begin to process sync after process cold patch
[2014-07-17 23:45:48][  202.183974] end sync and set disk readonly after process cold patch
[2014-07-17 23:45:48][  202.200124] os_upgrade_coldpatch.sh finish and ret[0]
[2014-07-17 23:45:48][  202.209636] UPGRADE_SH: prepare bios upgrade module and file to /OSM/update
[2014-07-17 23:45:48][  202.234281] UPGRADE_SH: system is not in updating status, update BIOS with running version.
[2014-07-17 23:45:48][  202.239598] UPGRADE_SH: BIOS update file:/startup_disk/image/boot/update_pkg/S6900/bios/bios.ROM is not exist
[2014-07-17 23:45:49][203116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:50][  203.860282] [50974][00005000040b02dc][ERR][Detecte nt link err! Virtual: [03:00:00] 0x140000][PCIE_AER][PCIEAER_GetLinkSideUnCorStatus,1445]
[2014-07-17 23:45:50][  203.860290] [50974][00005000040b0000][INFO][Driver 0 report device 3:0.0 chip error, errinfo:0][PCIE_AER][PCIEAER_GetPCIDevFromChipErrEvent,136]
[2014-07-17 23:45:50][  203.860333] [50974][00005000040b0002][INFO][Get chiperr device: 8725 10b5 [3:0:0]][PCIE_AER][PCIEAER_GetPCIDevFromChipErrEvent,147]
[2014-07-17 23:45:50][204112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:50][204120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:45:50][  204.084140] [51030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:45:50][  204.084148] [51030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:45:50][  204.084172] [51030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:45:50][  204.084181] [51030][1500003ea0054][ERR][Fail to receive message from socket (5).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:45:50][  204.084195] [51030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:45:50][2014-07-17 23:45:50,817][204120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:45:50][2014-07-17 23:45:50,817][204120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14245) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(300) birth-time(2014-07-17 23:45:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:50][204120][1500003e90017][INFO][Connected from (127.0.0.1:50060), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:45:50][204120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:45:50][204120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:45:50][204120][1500003e9001d][INFO][(127.0.0.1:50060) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:45:50][2014-07-17 23:45:50,818][204120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:45:50][2014-07-17 23:45:50,818][204120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:45:50][2014-07-17 23:45:50,818][204120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14245) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(300) birth-time(2014-07-17 23:45:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:50][  204.084820] [51030][0000500004090470][INFO][Change AER--Reg value:0000083F 0k!][PCIE][PCIECORE_ControlErrReport,139]
[2014-07-17 23:45:50][  204.084872] [51030][00005000040b0aaa][INFO][The device(3:0.0)  uncorrectable error:40000][PCIE_AER][PCIEAER_CleanOneNTLinkSideErrReg,1934]
[2014-07-17 23:45:50][  204.084889] [51030][00005000040b0aaa][INFO][Recover NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2079]
[2014-07-17 23:45:50][  204.084903] [51030][00005000040b01a9][INFO][Recovery successfully!][PCIE_AER][PCIEAER_RecUnCorFatalErrForNTDevice,1686]
[2014-07-17 23:45:50][  204.084942] [51030][00005000040b001a][INFO][Recovery successfully!][PCIE_AER][PCIEAER_RecChipErrHandler,460]
[2014-07-17 23:45:50][  204.084950] [51030][00005000040502e7][INFO][SendEvent to mod34. Device 3 Event 40 , (DRV_DEVT_PCIEERR_REPAIR_OK), Dev type 3,evnt id93!][DRV_API][DRV_DispatchEvent,1227]
[2014-07-17 23:45:50][  204.084956] [51030][00005000040b0379][ERR][Device(3:0.0) is not end point][PCIE_AER][PCIEAER_FindOBDSPForEndpoint,397]
[2014-07-17 23:45:50][  204.084960] [51030][00005000040b0013][INFO][Delete chip error device from the AER list][PCIE_AER][PCIEAER_DelOneSpecialChipErr,300]
[2014-07-17 23:45:50][  204.084969] [51030][00005000040b0295][INFO][Device(2:1.0) is not on board down stream port][PCIE_AER][PCIEAER_ReSaveOBDSPSubErrlist,192]
[2014-07-17 23:45:50][  204.084975] [51030][00005000042003e8][INFO][Change dmi sdr Event 40][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:50][  204.084982] [51030][0000500004200000][INFO][Handle Event outer Type 40(PCIEERR_REPAIR_OK) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:50][  204.084986] [51030][00005000040b0277][INFO][Recovery chip error over!][PCIE_AER][PCIEAER_ThreadHandle,2073]
[2014-07-17 23:45:50][  204.084993] [51030][0000500004200000][INFO][Handle fru change event slotId 0 type 1][DMI][DMI_HandleFruChgEvt,800]
[2014-07-17 23:45:50][  204.084998] [51030][0000500004200000][INFO][Handle Fru  200 change event: 40(PCIEERR_REPAIR_OK)][DMI][DMI_HandleFruChangeEvent,1451]
[2014-07-17 23:45:51][205117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:52][206112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:53][  206.696966] [51684][00005000040b0aaa][INFO][The device(3:0.0)  uncorrectable error:40000][PCIE_AER][PCIEAER_CleanOneNTLinkSideErrReg,1934]
[2014-07-17 23:45:53][  206.696974] [51684][00005000040b0aaa][INFO][The device(3:0.0)  correctable error:8001][PCIE_AER][PCIEAER_CleanOneNTLinkSideErrReg,1952]
[2014-07-17 23:45:53][  206.696979] [51684][00005000040b0aaa][INFO][Recover NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2079]
[2014-07-17 23:45:53][  206.696989] [51684][0000500004090aaa][INFO][Notify xnet nt(3:0.0) link down][PCIE][PCIECORE_NotifyXnetLinkStatus,517]
[2014-07-17 23:45:53][  206.696998] [51684][00005000040b0aaa][INFO][Stop NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2069]
[2014-07-17 23:45:53][  206.697040] [51684][00005000042003e8][INFO][Change dmi sdr Event 12][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:53][  206.697047] [51684][0000500004200000][INFO][Handle Event outer Type 12(LINK_DOWN) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:53][207118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:53][207120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:45:53][  207.080324] [51780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:45:53][  207.080332] [51780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:45:53][  207.080359] [51780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:45:53][  207.080364] [51780][1500003ea0054][ERR][Fail to receive message from socket (6).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:45:53][  207.080374] [51780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:45:53][2014-07-17 23:45:53,817][207120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:45:53][2014-07-17 23:45:53,817][207120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14307) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(600) birth-time(2014-07-17 23:45:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:53][207120][1500003e90017][INFO][Connected from (127.0.0.1:50316), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:45:53][207120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:45:53][207120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:45:53][207120][1500003e9001d][INFO][(127.0.0.1:50316) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:45:53][2014-07-17 23:45:53,817][207120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:45:53][2014-07-17 23:45:53,817][207120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:45:53][2014-07-17 23:45:53,817][207120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14307) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(600) birth-time(2014-07-17 23:45:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:53][  207.247687] [51821][150000015090b][INFO][Create Partition success, use block number 1, free block number 81354, partition name CLS_MSG_S, need recovery: FALSE.][CMM][CMM_CreateContinuousPartition,486][insmod]
[2014-07-17 23:45:53][  207.247695] [51821][1500000ea000b][ERR][Get local nid(65535) error.][XNET_CLS][clsMsgFilterInit,183][insmod]
[2014-07-17 23:45:53][  207.253065] [goall.sh]insmod xve_cls_msg_filter.ko failed!
[2014-07-17 23:45:54][208113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:55][209118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:56][210113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:56][210120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:45:56][  210.076507] [52530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:45:56][  210.076518] [52530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:45:56][  210.076542] [52530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:45:56][  210.076550] [52530][1500003ea0054][ERR][Fail to receive message from socket (7).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:45:56][  210.076582] [52530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:45:56][2014-07-17 23:45:56,817][210120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:45:56][2014-07-17 23:45:56,817][210120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14367) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(900) birth-time(2014-07-17 23:45:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:56][210120][1500003e90017][INFO][Connected from (127.0.0.1:50572), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:45:56][210120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:45:56][210120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:45:56][210120][1500003e9001d][INFO][(127.0.0.1:50572) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:45:56][2014-07-17 23:45:56,817][210120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:45:56][2014-07-17 23:45:56,817][210120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:45:56][2014-07-17 23:45:56,817][210120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14367) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(900) birth-time(2014-07-17 23:45:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:57][211119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:58][  211.323242] [52842][00005000040b0aaa][INFO][Recover NT(3:0.0) link side AER poll.][PCIE_AER][PCIEAER_StopLinkSideAerPoll,2079]
[2014-07-17 23:45:58][  211.323255] [52842][0000500004090aaa][INFO][Notify xnet nt(3:0.0) link up][PCIE][PCIECORE_NotifyXnetLinkStatus,517]
[2014-07-17 23:45:58][  211.323334] [52842][00005000042003e8][INFO][Change dmi sdr Event 13][DMI][DAL_ChangeDmiSdr,530]
[2014-07-17 23:45:58][  211.323349] [52842][0000500004200000][INFO][Handle Event outer Type 13(LINK_UP) of WWN 54846fb8ca16503f][DMI][DMI_ChgEvtHandler,1172]
[2014-07-17 23:45:58][212114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:59][  212.720995] eth6: no IPv6 routers present
[2014-07-17 23:45:59][213119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:45:59][213120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:45:59][  213.072801] [53280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:45:59][  213.072814] [53280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:45:59][  213.072857] [53280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:45:59][  213.072866] [53280][1500003ea0054][ERR][Fail to receive message from socket (8).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:45:59][  213.072882] [53280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:45:59][2014-07-17 23:45:59,817][213120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:45:59][2014-07-17 23:45:59,817][213120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14373) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1200) birth-time(2014-07-17 23:45:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:45:59][213120][1500003e90017][INFO][Connected from (127.0.0.1:50828), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:45:59][213120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:45:59][213120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:45:59][213120][1500003e9001d][INFO][(127.0.0.1:50828) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:45:59][2014-07-17 23:45:59,817][213120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:45:59][2014-07-17 23:45:59,817][213120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:45:59][2014-07-17 23:45:59,818][213120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14373) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1200) birth-time(2014-07-17 23:45:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:00][214115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:01][215120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:02][  216.031741] DRHD: handling fault status reg 602
[2014-07-17 23:46:02][  216.031753] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:02][  216.031756] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:02][216116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:02][216120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:02][  216.068976] [54030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:02][  216.068995] [54030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:02][  216.069035] [54030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:02][  216.069044] [54030][1500003ea0054][ERR][Fail to receive message from socket (9).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:02][  216.069070] [54030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:02][2014-07-17 23:46:02,817][216120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:02][2014-07-17 23:46:02,817][216120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14406) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1500) birth-time(2014-07-17 23:46:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:02][216120][1500003e90017][INFO][Connected from (127.0.0.1:51084), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:02][216120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:02][216120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:02][216120][1500003e9001d][INFO][(127.0.0.1:51084) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:02][2014-07-17 23:46:02,817][216120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:02][2014-07-17 23:46:02,818][216120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:02][2014-07-17 23:46:02,818][216120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14406) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1500) birth-time(2014-07-17 23:46:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:03][217121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:04][218116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:05][219112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:05][219120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:05][  219.065141] [54780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:05][  219.065155] [54780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:05][  219.065199] [54780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:05][  219.065207] [54780][1500003ea0054][ERR][Fail to receive message from socket (10).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:05][  219.065221] [54780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:05][2014-07-17 23:46:05,817][219120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:05][2014-07-17 23:46:05,817][219120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14419) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1800) birth-time(2014-07-17 23:46:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:05][219120][1500003e90017][INFO][Connected from (127.0.0.1:51340), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:05][219120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:05][219120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:05][219120][1500003e9001d][INFO][(127.0.0.1:51340) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:05][2014-07-17 23:46:05,817][219120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:05][2014-07-17 23:46:05,817][219120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:05][2014-07-17 23:46:05,817][219120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14419) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(1800) birth-time(2014-07-17 23:46:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:06][220117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:07][221113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:08][222118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:08][222120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:08][  222.061335] [55530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:08][  222.061355] [55530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:08][  222.061396] [55530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:08][  222.061406] [55530][1500003ea0054][ERR][Fail to receive message from socket (11).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:08][  222.061445] [55530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:08][2014-07-17 23:46:08,817][222120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:08][2014-07-17 23:46:08,817][222120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14448) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2100) birth-time(2014-07-17 23:46:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:08][222120][1500003e90017][INFO][Connected from (127.0.0.1:51596), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:08][222120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:08][222120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:08][222120][1500003e9001d][INFO][(127.0.0.1:51596) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:08][2014-07-17 23:46:08,818][222120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:08][2014-07-17 23:46:08,818][222120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:08][2014-07-17 23:46:08,818][222120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14448) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2100) birth-time(2014-07-17 23:46:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:09][  223.032890] DRHD: handling fault status reg 702
[2014-07-17 23:46:09][  223.032901] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:09][  223.032904] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:09][223114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:10][224119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:11][  225.033558] DRHD: handling fault status reg 2
[2014-07-17 23:46:11][  225.033569] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:11][  225.033573] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:11][225115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:11][225120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:11][  225.057536] [56280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:11][  225.057548] [56280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:11][  225.057588] [56280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:11][  225.057596] [56280][1500003ea0054][ERR][Fail to receive message from socket (12).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:11][  225.057610] [56280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:11][2014-07-17 23:46:11,817][225120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:11][2014-07-17 23:46:11,817][225120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14465) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2400) birth-time(2014-07-17 23:46:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:11][225120][1500003e90017][INFO][Connected from (127.0.0.1:51852), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:11][225120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:11][225120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:11][225120][1500003e9001d][INFO][(127.0.0.1:51852) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:11][2014-07-17 23:46:11,817][225120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:11][2014-07-17 23:46:11,817][225120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:11][2014-07-17 23:46:11,818][225120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14465) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2400) birth-time(2014-07-17 23:46:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:12][226121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:13][227116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:14][228112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:14][228120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:14][  228.053708] [57030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:14][  228.053722] [57030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:14][  228.053761] [57030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:14][  228.053774] [57030][1500003ea0054][ERR][Fail to receive message from socket (13).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:14][  228.053787] [57030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:14][2014-07-17 23:46:14,817][228120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:14][2014-07-17 23:46:14,817][228120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14491) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2700) birth-time(2014-07-17 23:46:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:14][228120][1500003e90017][INFO][Connected from (127.0.0.1:52108), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:14][228120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:14][228120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:14][228120][1500003e9001d][INFO][(127.0.0.1:52108) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:14][2014-07-17 23:46:14,817][228120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:14][2014-07-17 23:46:14,817][228120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:14][2014-07-17 23:46:14,817][228120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14491) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(2700) birth-time(2014-07-17 23:46:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:15][229118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:16][  230.034425] DRHD: handling fault status reg 102
[2014-07-17 23:46:16][  230.034436] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:16][  230.034439] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:16][230113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:17][231118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:17][231120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:17][  231.049943] [57780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:17][  231.049956] [57780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:17][  231.050000] [57780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:17][  231.050009] [57780][1500003ea0054][ERR][Fail to receive message from socket (14).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:17][  231.050026] [57780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:17][2014-07-17 23:46:17,817][231120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:17][2014-07-17 23:46:17,817][231120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14531) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3000) birth-time(2014-07-17 23:46:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:17][231120][1500003e90017][INFO][Connected from (127.0.0.1:52364), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:17][231120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:17][231120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:17][231120][1500003e9001d][INFO][(127.0.0.1:52364) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:17][2014-07-17 23:46:17,817][231120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:17][2014-07-17 23:46:17,818][231120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:17][2014-07-17 23:46:17,818][231120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14531) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3000) birth-time(2014-07-17 23:46:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:18][232114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:19][  233.031234] DRHD: handling fault status reg 202
[2014-07-17 23:46:19][  233.031241] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:19][  233.031243] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:19][233119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:20][  234.030495] DRHD: handling fault status reg 302
[2014-07-17 23:46:20][  234.030501] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:20][  234.030503] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:20][234115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:20][234120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:20][  234.046007] [58530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:20][  234.046015] [58530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:20][  234.046037] [58530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:20][  234.046043] [58530][1500003ea0054][ERR][Fail to receive message from socket (15).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:20][  234.046059] [58530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:20][2014-07-17 23:46:20,817][234120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:20][2014-07-17 23:46:20,817][234120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14559) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3300) birth-time(2014-07-17 23:46:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:20][234120][1500003e90017][INFO][Connected from (127.0.0.1:52620), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:20][234120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:20][234120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:20][234120][1500003e9001d][INFO][(127.0.0.1:52620) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:20][2014-07-17 23:46:20,817][234120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:20][2014-07-17 23:46:20,817][234120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:20][2014-07-17 23:46:20,817][234120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14559) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3300) birth-time(2014-07-17 23:46:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:21][  234.344463] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:21][  234.344469] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:21][  234.730318] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:21][  234.730323] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:21][  234.731465] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:21][  234.731468] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:21][  234.843867] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:21][  234.843872] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:21][235120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:21][  235.190031] IPv4: martian source 100.148.255.255 from 100.148.85.143, on dev eth6
[2014-07-17 23:46:21][  235.190036] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 3c 08 00        .......PV..<..
[2014-07-17 23:46:22][  235.229767] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:22][  235.229771] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:22][  235.230907] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:22][  235.230911] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:22][  235.343312] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:22][  235.343316] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:22][  235.657767] IPv4: martian source 100.148.255.255 from 100.148.85.70, on dev eth6
[2014-07-17 23:46:22][  235.657772] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 ca 08 00        .......PV.....
[2014-07-17 23:46:22][  235.729187] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:22][  235.729192] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:22][236115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:23][237120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:23][  237.042191] [59280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:23][  237.042198] [59280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:23][  237.042220] [59280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:23][  237.042225] [59280][1500003ea0054][ERR][Fail to receive message from socket (16).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:23][  237.042233] [59280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:23][2014-07-17 23:46:23,817][237120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:23][2014-07-17 23:46:23,817][237120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14585) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3599) birth-time(2014-07-17 23:46:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:23][237120][1500003e90017][INFO][Connected from (127.0.0.1:52876), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:23][237120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:23][237120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:23][237120][1500003e9001d][INFO][(127.0.0.1:52876) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:23][2014-07-17 23:46:23,817][237120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:23][2014-07-17 23:46:23,817][237120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:23][2014-07-17 23:46:23,817][237120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14585) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3599) birth-time(2014-07-17 23:46:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:23][237120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:24][238116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:25][239121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:26][  239.724711] net_ratelimit: 38 callbacks suppressed
[2014-07-17 23:46:26][  239.724721] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:26][  239.724730] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:26][  239.725779] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:26][  239.725786] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:26][  239.838203] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:26][  239.838211] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:26][  239.927126] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:46:26][  239.927136] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:46:26][  239.945191] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:46:26][  239.945198] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:46:26][  240.009591] IPv4: martian source 100.148.255.255 from 100.148.85.173, on dev eth6
[2014-07-17 23:46:26][  240.009599] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 5f 08 00        .......PV.._..
[2014-07-17 23:46:26][240116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:26][240120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:26][  240.038492] [60030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:26][  240.038506] [60030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:26][  240.038553] [60030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:26][  240.038562] [60030][1500003ea0054][ERR][Fail to receive message from socket (17).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:26][  240.038575] [60030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:26][2014-07-17 23:46:26,817][240120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:26][2014-07-17 23:46:26,817][240120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14619) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3900) birth-time(2014-07-17 23:46:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:26][240120][1500003e90017][INFO][Connected from (127.0.0.1:53132), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:26][240120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:26][240120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:26][240120][1500003e9001d][INFO][(127.0.0.1:53132) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:26][2014-07-17 23:46:26,817][240120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:26][2014-07-17 23:46:26,818][240120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:26][2014-07-17 23:46:26,818][240120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14619) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(3900) birth-time(2014-07-17 23:46:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:27][  240.224175] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:27][  240.224184] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:27][  240.225230] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:27][  240.225236] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:27][  240.337625] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:27][  240.337633] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:27][  240.413917] IPv4: martian source 100.148.255.255 from 100.148.61.51, on dev eth6
[2014-07-17 23:46:27][  240.413927] ll header: 00000000: ff ff ff ff ff ff 82 8a 4d 53 f5 d7 08 00        ........MS....
[2014-07-17 23:46:27][241112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:28][242117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:29][243113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:29][243120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:29][  243.034666] [60780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:29][  243.034681] [60780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:29][  243.034719] [60780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:29][  243.034733] [60780][1500003ea0054][ERR][Fail to receive message from socket (18).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:29][  243.034746] [60780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:29][2014-07-17 23:46:29,817][243120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:29][2014-07-17 23:46:29,817][243120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14636) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4200) birth-time(2014-07-17 23:46:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:29][243120][1500003e90017][INFO][Connected from (127.0.0.1:53388), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:29][243120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:29][243120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:29][243120][1500003e9001d][INFO][(127.0.0.1:53388) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:29][2014-07-17 23:46:29,817][243120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:29][2014-07-17 23:46:29,817][243120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:29][2014-07-17 23:46:29,817][243120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14636) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4200) birth-time(2014-07-17 23:46:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:30][244118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:31][  244.721315] net_ratelimit: 55 callbacks suppressed
[2014-07-17 23:46:31][  244.721323] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:46:31][  244.721331] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:46:31][  244.832469] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:31][  244.832479] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:31][  244.935694] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:46:31][  244.935705] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:46:31][  244.935720] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:46:31][  244.935726] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:46:31][245114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:31][  245.038758] DRHD: handling fault status reg 402
[2014-07-17 23:46:31][  245.038769] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:31][  245.038772] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:31][  245.190832] IPv4: martian source 100.148.255.255 from 100.148.85.143, on dev eth6
[2014-07-17 23:46:31][  245.190843] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 3c 08 00        .......PV..<..
[2014-07-17 23:46:31][  245.204631] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:31][  245.204639] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:31][  245.204650] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:31][  245.204656] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:32][  245.218484] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:32][  245.218493] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:32][  245.219558] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:32][  245.219568] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:32][  245.331894] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:32][  245.331902] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:32][246119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:32][246120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:32][  246.030852] [61530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:32][  246.030864] [61530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:32][  246.030907] [61530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:32][  246.030916] [61530][1500003ea0054][ERR][Fail to receive message from socket (19).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:32][  246.030936] [61530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:32][2014-07-17 23:46:32,817][246120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:32][2014-07-17 23:46:32,817][246120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14644) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4500) birth-time(2014-07-17 23:46:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:32][246120][1500003e90017][INFO][Connected from (127.0.0.1:53644), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:32][246120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:32][246120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:32][246120][1500003e9001d][INFO][(127.0.0.1:53644) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:32][2014-07-17 23:46:32,817][246120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:32][2014-07-17 23:46:32,817][246120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:32][2014-07-17 23:46:32,818][246120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14644) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4500) birth-time(2014-07-17 23:46:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:33][247115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:33][  247.039381] DRHD: handling fault status reg 502
[2014-07-17 23:46:33][  247.039392] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:33][  247.039395] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:34][248121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:35][249116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:35][249120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:35][  249.027071] [62280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:35][  249.027085] [62280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:35][  249.027130] [62280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:35][  249.027139] [62280][1500003ea0054][ERR][Fail to receive message from socket (20).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:35][  249.027157] [62280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:35][2014-07-17 23:46:35,817][249120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:35][2014-07-17 23:46:35,817][249120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14690) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4800) birth-time(2014-07-17 23:46:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:35][249120][1500003e90017][INFO][Connected from (127.0.0.1:53900), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:35][249120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:35][249120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:35][249120][1500003e9001d][INFO][(127.0.0.1:53900) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:35][2014-07-17 23:46:35,817][249120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:35][2014-07-17 23:46:35,818][249120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:35][2014-07-17 23:46:35,818][249120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14690) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(4800) birth-time(2014-07-17 23:46:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:36][  249.242571] INFO: task sched_work:395 blocked for more than 120 seconds.
[2014-07-17 23:46:36][  249.242578] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:46:36][  249.242583] sched_work      D 0000000000000000  5544   395      2 0x00000000
[2014-07-17 23:46:36][  249.242685]  ffff88010d21bdd0 0000000000000046 ffff88012af75a00 ffff88010d21a010
[2014-07-17 23:46:36][  249.243050]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.243412]  ffff88010d21bfd8 ffff88010d21bfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.243774]  ffff88005b33a580 ffff88005b39c600 0000000000000000 0000000000000020
[2014-07-17 23:46:36][  249.244136]  0000000000000000 ffff88012af76268 ffff88010981de00 0000000000000d87
[2014-07-17 23:46:36][  249.244498]  0000000000000000 ffff88010d21bd38 ffffffff814632d9 ffff88010d21bd88
[2014-07-17 23:46:36][  249.244861]  ffffffff81076ab3 ffff88010d21bd78 ffffffff8106cc19 000000010d21be28
[2014-07-17 23:46:36][  249.245223]  ffffffff81606ae0 ffff88006989c4a0 ffff88012af75a00 ffff88006989c6e0
[2014-07-17 23:46:36][  249.245586]  00000000006c4060 ffff88010d21bed8 ffff88010d21bf10 ffffffffa01aedbe
[2014-07-17 23:46:36][  249.245948]  ffff88010d21a010 ffff88005b33a580 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:46:36][  249.246310]  0000000000000000 0000000000000000 ffff88010d21bdf0 ffffffff814614d9
[2014-07-17 23:46:36][  249.246703]  0000000000015a00 7fffffffffffffff ffff88010d21be90 ffffffff8145fdbd
[2014-07-17 23:46:36][  249.247079]  ffff88005b1ac200 ffff88005b33a580 0000000000000000 0000000000000000
[2014-07-17 23:46:36][  249.247442]  ffff88010d21be30 ffffffff810c2602 ffff88010d21be40 ffffffff810638ba
[2014-07-17 23:46:36][  249.247805]  ffff88010d21be70 ffffffff81063fce 0000000000000000 ffff88005b33a580
[2014-07-17 23:46:36][  249.248167]  ffff88010d21be70 7fffffffffffffff
[2014-07-17 23:46:36][  249.248262] Call Trace:
[2014-07-17 23:46:36][  249.248276]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:46:36][  249.248288]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:46:36][  249.248296]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:46:36][  249.248352]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:46:36][  249.248365]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:46:36][  249.248376]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:46:36][  249.248387]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:46:36][  249.248396]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:46:36][  249.248404]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:46:36][  249.248417]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:46:36][  249.248433]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:46:36][  249.248470]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:46:36][  249.248505]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:46:36][  249.248516]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:46:36][  249.248550]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:46:36][  249.248559]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:46:36][  249.248566] INFO: task sched_work:396 blocked for more than 120 seconds.
[2014-07-17 23:46:36][  249.248571] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:46:36][  249.248577] sched_work      D 0000000000000000  5544   396      2 0x00000000
[2014-07-17 23:46:36][  249.248588]  ffff88010d1fbdd0 0000000000000046 ffffffff81076216 ffff88010d1fa010
[2014-07-17 23:46:36][  249.248600]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.248611]  ffff88010d1fbfd8 ffff88010d1fbfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.248623]  ffff8800663c0440 ffff880109fb8580 0000000000000001 0000000000000001
[2014-07-17 23:46:36][  249.248634]  ffff88012aeb5a00 ffff88010d1fbd48 ffffffff8107725a ffff88012aeb5a00
[2014-07-17 23:46:36][  249.248646]  ffff88005b166300 ffff88012aeb5a00 0000000000000001 ffff88005b1668e0
[2014-07-17 23:46:36][  249.248657]  0000000000000000 ffff88010d1fbd78 ffffffff8106cc19 ffff88010d1fbd78
[2014-07-17 23:46:36][  249.248669]  ffffffff81606ae0 ffff88005b1666a0 ffff88012aeb5a00 ffff88005b1668e0
[2014-07-17 23:46:36][  249.248680]  0000000000000000 ffff88010d1fbed8 ffff88010d1fbf10 ffffffffa01aedbe
[2014-07-17 23:46:36][  249.248691]  ffff88010d1fa010 ffff8800663c0440 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:46:36][  249.248703]  0000000000000000 0000000000000000 ffff88010d1fbdf0 ffffffff814614d9
[2014-07-17 23:46:36][  249.248714]  0000000000015a00 7fffffffffffffff ffff88010d1fbe90 ffffffff8145fdbd
[2014-07-17 23:46:36][  249.248725]  ffff88005b1ac140 ffff8800663c0440 0000000000000000 0000000000000000
[2014-07-17 23:46:36][  249.248737]  ffff88010d1fbe30 ffffffff810c2602 ffff88010d1fbe40 ffffffff810638ba
[2014-07-17 23:46:36][  249.248748]  ffff88010d1fbe70 ffffffff81063fce 0000000000000000 ffff8800663c0440
[2014-07-17 23:46:36][  249.248760]  ffff88010d1fbe70 7fffffffffffffff
[2014-07-17 23:46:36][  249.248766] Call Trace:
[2014-07-17 23:46:36][  249.248775]  [<ffffffff81076216>] ? update_curr+0x186/0x1c0
[2014-07-17 23:46:36][  249.248785]  [<ffffffff8107725a>] ? dequeue_task_fair+0x6a/0x170
[2014-07-17 23:46:36][  249.248793]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:46:36][  249.248825]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:46:36][  249.248837]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:46:36][  249.248846]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:46:36][  249.248854]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:46:36][  249.248862]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:46:36][  249.248870]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:46:36][  249.248883]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:46:36][  249.248895]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:46:36][  249.248927]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:46:36][  249.248958]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:46:36][  249.248967]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:46:36][  249.249000]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:46:36][  249.249009]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:46:36][  249.249015] INFO: task sched_work:397 blocked for more than 120 seconds.
[2014-07-17 23:46:36][  249.249020] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:46:36][  249.249025] sched_work      D 0000000000000000  5544   397      2 0x00000000
[2014-07-17 23:46:36][  249.249037]  ffff88010d20fdd0 0000000000000046 ffff88012ae35a00 ffff88010d20e010
[2014-07-17 23:46:36][  249.249048]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249060]  ffff88010d20ffd8 ffff88010d20ffd8 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249071]  ffff88005b39c600 ffff880109f86400 0000000000000000 0000000000000020
[2014-07-17 23:46:36][  249.249082]  0000000000000000 ffff88012ae36268 ffff880109ffa200 0000000000000d6d
[2014-07-17 23:46:36][  249.249093]  0000000000000000 ffff88010d20fd38 ffffffff814632d9 ffff88010d20fd88
[2014-07-17 23:46:36][  249.249105]  ffffffff81076ab3 ffff88010d20fd78 ffffffff8106cc19 000000010d20fd78
[2014-07-17 23:46:36][  249.249116]  ffffffff81606ae0 ffff880069d64520 ffff88012ae35a00 ffff880069d64760
[2014-07-17 23:46:36][  249.249128]  0000000000000000 ffff88010d20fed8 ffff88010d20ff10 ffffffffa01aedbe
[2014-07-17 23:46:36][  249.249139]  ffff88010d20e010 ffff88005b39c600 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:46:36][  249.249150]  0000000000000000 0000000000000000 ffff88010d20fdf0 ffffffff814614d9
[2014-07-17 23:46:36][  249.249162]  0000000000015a00 7fffffffffffffff ffff88010d20fe90 ffffffff8145fdbd
[2014-07-17 23:46:36][  249.249173]  ffff88005b1ac080 ffff88005b39c600 0000000000000000 0000000000000000
[2014-07-17 23:46:36][  249.249184]  ffff88010d20fe30 ffffffff810c2602 ffff88010d20fe40 ffffffff810638ba
[2014-07-17 23:46:36][  249.249196]  ffff88010d20fe70 ffffffff81063fce 0000000000000000 ffff88005b39c600
[2014-07-17 23:46:36][  249.249207]  ffff88010d20fe70 7fffffffffffffff
[2014-07-17 23:46:36][  249.249214] Call Trace:
[2014-07-17 23:46:36][  249.249222]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:46:36][  249.249231]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:46:36][  249.249239]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:46:36][  249.249270]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:46:36][  249.249281]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:46:36][  249.249290]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:46:36][  249.249299]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:46:36][  249.249306]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:46:36][  249.249314]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:46:36][  249.249327]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:46:36][  249.249339]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:46:36][  249.249369]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:46:36][  249.249400]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:46:36][  249.249410]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:46:36][  249.249442]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:46:36][  249.249450]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:46:36][  249.249457] INFO: task sched_work:398 blocked for more than 120 seconds.
[2014-07-17 23:46:36][  249.249462] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:46:36][  249.249467] sched_work      D 0000000000000000  5040   398      2 0x00000000
[2014-07-17 23:46:36][  249.249478]  ffff88010d203dd0 0000000000000046 ffff88012af75a00 ffff88010d202010
[2014-07-17 23:46:36][  249.249489]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249501]  ffff88010d203fd8 ffff88010d203fd8 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249512]  ffff8800662d0100 ffff880109f86400 0000000000000000 0000000000000020
[2014-07-17 23:46:36][  249.249523]  0000000000000000 ffff88012af76268 ffff88010981de00 0000000000000d87
[2014-07-17 23:46:36][  249.249534]  0000000000000000 ffff88010d203d38 ffffffff814632d9 ffff88010d203d88
[2014-07-17 23:46:36][  249.249546]  ffffffff81076ab3 ffff88010d203d78 ffffffff8106cc19 000000010d203d78
[2014-07-17 23:46:36][  249.249557]  ffffffff81606ae0 ffff8800698ce4e0 ffff88012af75a00 ffff8800698ce720
[2014-07-17 23:46:36][  249.249569]  0000000000000000 ffff88010d203ed8 ffff88010d203f10 ffffffffa01aedbe
[2014-07-17 23:46:36][  249.249580]  ffff88010d202010 ffff8800662d0100 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:46:36][  249.249591]  0000000000000000 0000000000000000 ffff88010d203df0 ffffffff814614d9
[2014-07-17 23:46:36][  249.249603]  0000000000015a00 7fffffffffffffff ffff88010d203e90 ffffffff8145fdbd
[2014-07-17 23:46:36][  249.249614]  ffff8800698fad80 ffff8800662d0100 0000000000000000 0000000000000000
[2014-07-17 23:46:36][  249.249625]  ffff88010d203e30 ffffffff810c2602 ffff88010d203e40 ffffffff810638ba
[2014-07-17 23:46:36][  249.249637]  ffff88010d203e70 ffffffff81063fce 0000000000000000 ffff8800662d0100
[2014-07-17 23:46:36][  249.249648]  ffff88010d203e70 7fffffffffffffff
[2014-07-17 23:46:36][  249.249655] Call Trace:
[2014-07-17 23:46:36][  249.249663]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:46:36][  249.249672]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:46:36][  249.249679]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:46:36][  249.249711]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:46:36][  249.249722]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:46:36][  249.249731]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:46:36][  249.249739]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:46:36][  249.249747]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:46:36][  249.249755]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:46:36][  249.249767]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:46:36][  249.249782]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:46:36][  249.249813]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:46:36][  249.249844]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:46:36][  249.249853]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:46:36][  249.249885]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:46:36][  249.249894]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:46:36][  249.249901] INFO: task os_exeshell:430 blocked for more than 120 seconds.
[2014-07-17 23:46:36][  249.249906] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:46:36][  249.249911] os_exeshell     D 0000000000000006  5304   430      1 0x00000000
[2014-07-17 23:46:36][  249.249922]  ffff88010d1dbe38 0000000000000086 ffff88010d1dbd08 ffff88010d1da010
[2014-07-17 23:46:36][  249.249933]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249945]  ffff88010d1dbfd8 ffff88010d1dbfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:46:36][  249.249956]  ffff880069c56500 ffffffff81814020 0000002400000000 ffff880109883b78
[2014-07-17 23:46:36][  249.249967]  ffff88005b1bf4a8 0000000000000051 ffff880069c56500 ffff88010d1dbe38
[2014-07-17 23:46:36][  249.249979]  ffff88010d1dbf28 ffff880059259000 ffff88010d1dbe28 ffffffff811580af
[2014-07-17 23:46:36][  249.249990]  ffff88010d1dbdc8 0000000000000296 ffff88010d1dbdb8 ffff88010d1dbdb8
[2014-07-17 23:46:36][  249.250001]  ffff88010d1dbde8 ffff880065f0f480 ffff88010a0865a0 ffff880065f06588
[2014-07-17 23:46:36][  249.250013]  ffff880065f0f3d8 0000000000000292 ffff88010d1dbe18 0000000000000292
[2014-07-17 23:46:36][  249.250024]  ffff88010d1dbf28 ffff880069c56500 ffff88010d1dbe80 ffff880069c56500
[2014-07-17 23:46:36][  249.250035]  0000000000000296 0000000000000006 ffff88010d1dbe58 ffffffff814614d9
[2014-07-17 23:46:36][  249.250047]  ffff88010d1dbe80 ffff88010d1dbe68 ffff88010d1dbeb8 ffffffffa0982355
[2014-07-17 23:46:36][  249.250058]  0000000000000001 ffff880069c56500 ffffffff8105d830 ffffffffa0984420
[2014-07-17 23:46:36][  249.250070]  ffffffffa0984420 ffffffff8113a129 0000000000000000 0000000000000000
[2014-07-17 23:46:36][  249.250081]  0000000000000000 0000000000000005 ffff88010d1dbee8 ffffffffa0982cc5
[2014-07-17 23:46:36][  249.250092]  ffff88010d1dbed8 0000000000000020
[2014-07-17 23:46:36][  249.250099] Call Trace:
[2014-07-17 23:46:36][  249.250109]  [<ffffffff811580af>] ? path_openat+0xff/0x3f0
[2014-07-17 23:46:36][  249.250117]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:46:36][  249.250133]  [<ffffffffa0982355>] OS_CallUserMode+0x95/0x100 [os_rnvramdev]
[2014-07-17 23:46:36][  249.250143]  [<ffffffff8105d830>] ? wake_up_bit+0x40/0x40
[2014-07-17 23:46:36][  249.250158]  [<ffffffff8113a129>] ? kmem_cache_free+0x149/0x290
[2014-07-17 23:46:36][  249.250174]  [<ffffffffa0982cc5>] OS_RnvramDevIoctl+0x65/0x124 [os_rnvramdev]
[2014-07-17 23:46:36][  249.250185]  [<ffffffff8115b0db>] do_vfs_ioctl+0x8b/0x390
[2014-07-17 23:46:36][  249.250194]  [<ffffffff81155501>] ? putname+0x31/0x50
[2014-07-17 23:46:36][  249.250203]  [<ffffffff8115b479>] sys_ioctl+0x99/0xa0
[2014-07-17 23:46:36][  249.250212]  [<ffffffff8146b0f9>] system_call_fastpath+0x16/0x1b
[2014-07-17 23:46:36][  249.834934] net_ratelimit: 69 callbacks suppressed
[2014-07-17 23:46:36][  249.834943] IPv4: martian source 100.148.255.255 from 100.148.102.254, on dev eth6
[2014-07-17 23:46:36][  249.834951] ll header: 00000000: ff ff ff ff ff ff d4 b1 10 b1 71 ce 08 00        ..........q...
[2014-07-17 23:46:36][250112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:36][  250.042430] DRHD: handling fault status reg 602
[2014-07-17 23:46:36][  250.042441] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:36][  250.042444] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:36][  250.186226] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:46:36][  250.186236] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:46:36][  250.186250] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:46:36][  250.186256] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:46:37][  250.212930] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:37][  250.212941] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:37][  250.213821] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:37][  250.213830] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:37][  250.326173] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:37][  250.326182] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:37][  250.414358] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:46:37][  250.414368] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:46:37][  250.595677] IPv4: martian source 100.148.255.255 from 100.148.102.254, on dev eth6
[2014-07-17 23:46:37][  250.595685] ll header: 00000000: ff ff ff ff ff ff d4 b1 10 b1 71 ce 08 00        ..........q...
[2014-07-17 23:46:37][  250.712361] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:37][  250.712370] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:37][  250.713238] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:37][  250.713247] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:37][251117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:38][252112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:38][252120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:38][  252.023223] [63030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:38][  252.023238] [63030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:38][  252.023277] [63030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:38][  252.023286] [63030][1500003ea0054][ERR][Fail to receive message from socket (21).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:38][  252.023298] [63030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:38][2014-07-17 23:46:38,817][252120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:38][2014-07-17 23:46:38,817][252120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14709) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5100) birth-time(2014-07-17 23:46:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:38][252120][1500003e90017][INFO][Connected from (127.0.0.1:54156), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:38][252120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:38][252120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:38][252120][1500003e9001d][INFO][(127.0.0.1:54156) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:38][2014-07-17 23:46:38,817][252120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:38][2014-07-17 23:46:38,817][252120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:38][2014-07-17 23:46:38,817][252120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14709) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5100) birth-time(2014-07-17 23:46:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:39][253118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:39][  253.038211] DRHD: handling fault status reg 702
[2014-07-17 23:46:39][  253.038222] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:46:39][  253.038224] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:40][254114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:40][  254.036476] DRHD: handling fault status reg 2
[2014-07-17 23:46:40][  254.036488] DMAR:[DMA Write] Request device [03:07.3] fault addr 6daff000 
[2014-07-17 23:46:40][  254.036491] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:46:41][255119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:41][255120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:41][  255.019472] [63780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:41][  255.019486] [63780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:41][  255.019532] [63780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:41][  255.019541] [63780][1500003ea0054][ERR][Fail to receive message from socket (22).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:41][  255.019557] [63780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:41][2014-07-17 23:46:41,817][255120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:41][2014-07-17 23:46:41,817][255120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14756) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5400) birth-time(2014-07-17 23:46:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:41][255120][1500003e90017][INFO][Connected from (127.0.0.1:54412), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:41][255120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:41][255120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:41][255120][1500003e9001d][INFO][(127.0.0.1:54412) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:41][2014-07-17 23:46:41,818][255120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:41][2014-07-17 23:46:41,818][255120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:41][2014-07-17 23:46:41,818][255120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14756) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5400) birth-time(2014-07-17 23:46:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:42][  255.207250] net_ratelimit: 73 callbacks suppressed
[2014-07-17 23:46:42][  255.207258] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:42][  255.207266] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:42][  255.208170] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:42][  255.208179] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:42][  255.256219] IPv4: martian source 100.148.255.255 from 100.148.81.249, on dev eth6
[2014-07-17 23:46:42][  255.256230] ll header: 00000000: ff ff ff ff ff ff 00 15 5d 5b 02 42 08 00        ........][.B..
[2014-07-17 23:46:42][  255.320336] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:42][  255.320345] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:42][  255.409370] IPv4: martian source 100.148.255.255 from 100.148.122.123, on dev eth6
[2014-07-17 23:46:42][  255.409380] ll header: 00000000: ff ff ff ff ff ff 00 50 56 82 73 01 08 00        .......PV.s...
[2014-07-17 23:46:42][  255.419043] IPv4: martian source 100.148.255.255 from 100.148.85.173, on dev eth6
[2014-07-17 23:46:42][  255.419051] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 5f 08 00        .......PV.._..
[2014-07-17 23:46:42][  255.630296] IPv4: martian source 100.148.255.255 from 100.148.174.124, on dev eth6
[2014-07-17 23:46:42][  255.630306] ll header: 00000000: ff ff ff ff ff ff 4c b1 6c 91 c7 ca 08 00        ......L.l.....
[2014-07-17 23:46:42][  255.706672] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:42][  255.706680] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:42][  255.707602] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:42][  255.707610] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:42][  255.819755] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:42][  255.819763] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:42][256115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:43][257120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:44][258116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:44][258120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:44][  258.015617] [64530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:44][  258.015631] [64530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:44][  258.015674] [64530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:44][  258.015685] [64530][1500003ea0054][ERR][Fail to receive message from socket (23).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:44][  258.015700] [64530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:44][2014-07-17 23:46:44,817][258120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:44][2014-07-17 23:46:44,817][258120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14773) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5700) birth-time(2014-07-17 23:46:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:44][258120][1500003e90017][INFO][Connected from (127.0.0.1:54668), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:44][258120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:44][258120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:44][258120][1500003e9001d][INFO][(127.0.0.1:54668) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:44][2014-07-17 23:46:44,817][258120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:44][2014-07-17 23:46:44,817][258120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:44][2014-07-17 23:46:44,817][258120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14773) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(5700) birth-time(2014-07-17 23:46:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:45][259121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:46][260116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:47][  260.314595] net_ratelimit: 58 callbacks suppressed
[2014-07-17 23:46:47][  260.314603] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:47][  260.314610] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:47][  260.551967] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:47][  260.551976] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:47][  260.551989] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:47][  260.551995] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:47][  260.701017] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:47][  260.701026] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:47][  260.701920] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:47][  260.701930] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:47][  260.814007] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:47][  260.814015] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:47][  260.961759] IPv4: martian source 100.148.255.255 from 100.148.75.125, on dev eth6
[2014-07-17 23:46:47][  260.961766] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 09 08 00        .......PV.....
[2014-07-17 23:46:47][261112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:47][261120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:47][  261.011822] [65280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:47][  261.011834] [65280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:47][  261.011877] [65280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:47][  261.011886] [65280][1500003ea0054][ERR][Fail to receive message from socket (24).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:47][  261.011899] [65280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:47][2014-07-17 23:46:47,817][261120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:47][2014-07-17 23:46:47,817][261120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14781) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6000) birth-time(2014-07-17 23:46:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:47][261120][1500003e90017][INFO][Connected from (127.0.0.1:54924), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:47][261120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:47][261120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:47][261120][1500003e9001d][INFO][(127.0.0.1:54924) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:47][2014-07-17 23:46:47,817][261120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:47][2014-07-17 23:46:47,817][261120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:47][2014-07-17 23:46:47,817][261120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14781) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6000) birth-time(2014-07-17 23:46:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:47][  261.021650] IPv4: martian source 100.148.255.255 from 100.148.81.40, on dev eth6
[2014-07-17 23:46:47][  261.021662] ll header: 00000000: ff ff ff ff ff ff 00 50 56 b8 6a a9 08 00        .......PV.j...
[2014-07-17 23:46:48][  261.200455] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:48][  261.200465] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:48][  261.201354] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:48][  261.201362] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:48][262117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:49][263113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:50][264118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:50][264120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:50][  264.007937] [66030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:50][  264.007948] [66030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:50][  264.007973] [66030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:50][  264.007993] [66030][1500003ea0054][ERR][Fail to receive message from socket (25).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:50][  264.008015] [66030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:50][2014-07-17 23:46:50,817][264120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:50][2014-07-17 23:46:50,817][264120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14841) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6300) birth-time(2014-07-17 23:46:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:50][264120][1500003e90017][INFO][Connected from (127.0.0.1:55180), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:50][264120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:50][264120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:50][264120][1500003e9001d][INFO][(127.0.0.1:55180) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:50][2014-07-17 23:46:50,817][264120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:50][2014-07-17 23:46:50,817][264120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:50][2014-07-17 23:46:50,817][264120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14841) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6300) birth-time(2014-07-17 23:46:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:51][265113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:52][  265.695426] net_ratelimit: 51 callbacks suppressed
[2014-07-17 23:46:52][  265.695431] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:52][  265.695436] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:52][  265.696166] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:52][  265.696172] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:52][  265.808270] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:52][  265.808276] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:52][  265.895095] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:52][  265.895099] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:52][  265.895106] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:46:52][  265.895109] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:46:52][  265.896679] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:46:52][  265.896684] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:46:52][  265.902040] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:46:52][  265.902044] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:46:52][266118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:52][  266.075480] IPv4: martian source 100.148.255.255 from 100.148.85.183, on dev eth6
[2014-07-17 23:46:52][  266.075486] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 aa 08 00        .......PV.....
[2014-07-17 23:46:52][  266.086304] IPv4: martian source 100.148.255.255 from 100.148.75.25, on dev eth6
[2014-07-17 23:46:52][  266.086309] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 d9 08 00        .......PV.....
[2014-07-17 23:46:53][  266.194851] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:53][  266.194857] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:53][267114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:53][267120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:53][  267.004090] [66780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:53][  267.004099] [66780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:53][  267.004122] [66780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:53][  267.004127] [66780][1500003ea0054][ERR][Fail to receive message from socket (26).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:53][  267.004134] [66780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:53][2014-07-17 23:46:53,817][267120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:53][2014-07-17 23:46:53,817][267120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14849) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6600) birth-time(2014-07-17 23:46:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:53][267120][1500003e90017][INFO][Connected from (127.0.0.1:55436), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:53][267120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:53][267120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:53][267120][1500003e9001d][INFO][(127.0.0.1:55436) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:53][2014-07-17 23:46:53,817][267120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:53][2014-07-17 23:46:53,817][267120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:53][2014-07-17 23:46:53,817][267120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14849) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6600) birth-time(2014-07-17 23:46:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:54][268119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:55][269115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:56][270120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:56][  270.000371] [67530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:56][  270.000386] [67530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:56][  270.000428] [67530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:56][  270.000438] [67530][1500003ea0054][ERR][Fail to receive message from socket (27).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:56][  270.000454] [67530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:56][2014-07-17 23:46:56,817][270120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:56][2014-07-17 23:46:56,817][270120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14855) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6899) birth-time(2014-07-17 23:46:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:56][270120][1500003e90017][INFO][Connected from (127.0.0.1:55692), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:56][270120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:56][270120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:56][270120][1500003e9001d][INFO][(127.0.0.1:55692) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:56][2014-07-17 23:46:56,817][270120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:56][2014-07-17 23:46:56,817][270120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:56][2014-07-17 23:46:56,817][270120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14855) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(6899) birth-time(2014-07-17 23:46:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:56][270121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:57][  270.802598] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:46:57][  270.802607] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:57][  270.802615] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:57][271116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:57][  271.079168] IPv4: martian source 100.148.255.255 from 100.148.75.45, on dev eth6
[2014-07-17 23:46:57][  271.079178] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 3a 08 00        .......PV..:..
[2014-07-17 23:46:57][  271.151237] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:46:57][  271.151244] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:46:57][  271.155622] IPv4: martian source 100.148.255.255 from 100.148.0.36, on dev eth6
[2014-07-17 23:46:57][  271.155631] ll header: 00000000: ff ff ff ff ff ff 00 e0 4c 98 2e d0 08 00        ........L.....
[2014-07-17 23:46:58][  271.189295] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:58][  271.189305] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:58][  271.189840] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:46:58][  271.189847] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:46:58][  271.241395] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:46:58][  271.241404] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:46:58][  271.302011] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:46:58][  271.302019] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:46:58][  271.373726] IPv4: martian source 100.148.255.255 from 100.148.0.36, on dev eth6
[2014-07-17 23:46:58][  271.373735] ll header: 00000000: ff ff ff ff ff ff 00 e0 4c 98 2e d0 08 00        ........L.....
[2014-07-17 23:46:58][  271.688713] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:46:58][  271.688722] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:46:58][272111][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:59][273117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:46:59][273120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:46:59][  272.996619] [68280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:46:59][  272.996633] [68280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:46:59][  272.996674] [68280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:46:59][  272.996683] [68280][1500003ea0054][ERR][Fail to receive message from socket (28).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:46:59][  272.996704] [68280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:46:59][2014-07-17 23:46:59,817][273120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:46:59][2014-07-17 23:46:59,817][273120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14900) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7200) birth-time(2014-07-17 23:46:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:46:59][273120][1500003e90017][INFO][Connected from (127.0.0.1:55948), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:46:59][273120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:46:59][273120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:46:59][273120][1500003e9001d][INFO][(127.0.0.1:55948) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:46:59][2014-07-17 23:46:59,818][273120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:46:59][2014-07-17 23:46:59,818][273120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:46:59][2014-07-17 23:46:59,818][273120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14900) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7200) birth-time(2014-07-17 23:46:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:00][274112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:01][275118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:02][276113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:02][276120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:02][  275.992743] [69030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:02][  275.992755] [69030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:02][  275.992800] [69030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:02][  275.992809] [69030][1500003ea0054][ERR][Fail to receive message from socket (29).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:02][  275.992850] [69030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:02][2014-07-17 23:47:02,817][276120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:02][2014-07-17 23:47:02,817][276120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14915) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7500) birth-time(2014-07-17 23:47:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:02][276120][1500003e90017][INFO][Connected from (127.0.0.1:56204), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:02][276120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:02][276120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:02][276120][1500003e9001d][INFO][(127.0.0.1:56204) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:02][2014-07-17 23:47:02,817][276120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:02][2014-07-17 23:47:02,818][276120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:02][2014-07-17 23:47:02,818][276120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14915) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7500) birth-time(2014-07-17 23:47:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:02][  276.100038] net_ratelimit: 44 callbacks suppressed
[2014-07-17 23:47:02][  276.100046] IPv4: martian source 100.148.255.255 from 100.148.102.254, on dev eth6
[2014-07-17 23:47:02][  276.100054] ll header: 00000000: ff ff ff ff ff ff d4 b1 10 b1 71 ce 08 00        ..........q...
[2014-07-17 23:47:03][  276.183809] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:03][  276.183820] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:03][  276.184104] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:03][  276.184113] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:03][  276.243817] IPv4: martian source 100.148.255.255 from 100.148.91.127, on dev eth6
[2014-07-17 23:47:03][  276.243824] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 0a e8 ae 08 00        .......++.....
[2014-07-17 23:47:03][  276.244244] IPv4: martian source 100.148.255.255 from 100.148.91.127, on dev eth6
[2014-07-17 23:47:03][  276.244250] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 0a e8 ae 08 00        .......++.....
[2014-07-17 23:47:03][  276.296212] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:03][  276.296221] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:03][  276.335049] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:47:03][  276.335057] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:47:03][  276.359191] IPv4: martian source 100.148.255.255 from 100.148.174.124, on dev eth6
[2014-07-17 23:47:03][  276.359199] ll header: 00000000: ff ff ff ff ff ff 4c b1 6c 91 c7 ca 08 00        ......L.l.....
[2014-07-17 23:47:03][  276.464717] IPv4: martian source 100.148.255.255 from 100.148.62.3, on dev eth6
[2014-07-17 23:47:03][  276.464724] ll header: 00000000: ff ff ff ff ff ff 5c f3 fc db 5a 80 08 00        ......\...Z...
[2014-07-17 23:47:03][  276.683232] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:03][  276.683241] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:03][277119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:04][278115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:05][279120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:05][  278.988977] [69780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:05][  278.988991] [69780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:05][  278.989035] [69780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:05][  278.989046] [69780][1500003ea0054][ERR][Fail to receive message from socket (30).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:05][  278.989060] [69780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:05][2014-07-17 23:47:05,817][279120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:05][279120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:05][2014-07-17 23:47:05,817][279120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14967) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7799) birth-time(2014-07-17 23:47:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:05][279120][1500003e90017][INFO][Connected from (127.0.0.1:56460), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:05][279120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:05][279120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:05][279120][1500003e9001d][INFO][(127.0.0.1:56460) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:05][2014-07-17 23:47:05,818][279120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:05][2014-07-17 23:47:05,818][279120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:05][2014-07-17 23:47:05,818][279120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(14967) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(7799) birth-time(2014-07-17 23:47:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:06][280115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:07][281121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:07][  281.048601] DRHD: handling fault status reg 102
[2014-07-17 23:47:07][  281.048612] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:07][  281.048615] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:08][  281.178124] net_ratelimit: 67 callbacks suppressed
[2014-07-17 23:47:08][  281.178133] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:08][  281.178140] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:08][  281.178375] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:08][  281.178385] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:08][  281.255643] IPv4: martian source 100.148.255.255 from 100.148.85.191, on dev eth6
[2014-07-17 23:47:08][  281.255652] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 e4 08 00        .......PV.....
[2014-07-17 23:47:08][  281.290415] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:08][  281.290425] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:08][  281.407094] IPv4: martian source 100.148.255.255 from 100.148.0.36, on dev eth6
[2014-07-17 23:47:08][  281.407102] ll header: 00000000: ff ff ff ff ff ff 00 e0 4c 98 2e d0 08 00        ........L.....
[2014-07-17 23:47:08][  281.677565] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:08][  281.677572] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:08][  281.677811] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:08][  281.677819] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:08][  281.693270] IPv4: martian source 100.148.255.255 from 100.148.102.254, on dev eth6
[2014-07-17 23:47:08][  281.693278] ll header: 00000000: ff ff ff ff ff ff d4 b1 10 b1 71 ce 08 00        ..........q...
[2014-07-17 23:47:08][  281.740077] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:08][  281.740085] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:08][  281.740102] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:08][  281.740107] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:08][282116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:08][282120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:08][  281.985137] [70530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:08][  281.985152] [70530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:08][  281.985192] [70530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:08][  281.985201] [70530][1500003ea0054][ERR][Fail to receive message from socket (31).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:08][  281.985221] [70530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:08][2014-07-17 23:47:08,817][282120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:08][2014-07-17 23:47:08,817][282120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15003) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8100) birth-time(2014-07-17 23:47:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:08][282120][1500003e90017][INFO][Connected from (127.0.0.1:56716), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:08][282120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:08][282120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:08][282120][1500003e9001d][INFO][(127.0.0.1:56716) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:08][2014-07-17 23:47:08,817][282120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:08][2014-07-17 23:47:08,817][282120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:08][2014-07-17 23:47:08,818][282120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15003) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8100) birth-time(2014-07-17 23:47:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:09][283112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:10][284117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:11][285113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:11][285120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:11][  284.981340] [71280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:11][  284.981353] [71280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:11][  284.981394] [71280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:11][  284.981402] [71280][1500003ea0054][ERR][Fail to receive message from socket (32).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:11][  284.981415] [71280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:11][2014-07-17 23:47:11,817][285120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:11][2014-07-17 23:47:11,817][285120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15020) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8400) birth-time(2014-07-17 23:47:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:11][285120][1500003e90017][INFO][Connected from (127.0.0.1:56972), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:11][285120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:11][285120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:11][285120][1500003e9001d][INFO][(127.0.0.1:56972) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:11][2014-07-17 23:47:11,817][285120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:11][2014-07-17 23:47:11,817][285120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:11][2014-07-17 23:47:11,817][285120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15020) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8400) birth-time(2014-07-17 23:47:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:12][286118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:13][  286.284639] net_ratelimit: 64 callbacks suppressed
[2014-07-17 23:47:13][  286.284647] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:13][  286.284655] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:13][  286.410311] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:13][  286.410320] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:13][  286.410438] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:13][  286.410444] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:13][  286.441472] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:13][  286.441480] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:13][  286.441596] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:13][  286.441602] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:13][  286.543804] IPv4: martian source 100.148.255.255 from 100.148.61.120, on dev eth6
[2014-07-17 23:47:13][  286.543815] ll header: 00000000: ff ff ff ff ff ff e0 24 7f 02 a1 e6 08 00        .......$......
[2014-07-17 23:47:13][  286.672092] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:13][  286.672102] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:13][  286.672232] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:13][  286.672243] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:13][  286.784069] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:13][  286.784078] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:13][287113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:13][  287.152342] IPv4: martian source 100.148.255.255 from 100.148.85.73, on dev eth6
[2014-07-17 23:47:13][  287.152353] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 e2 08 00        .......PV.....
[2014-07-17 23:47:14][288119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:14][288120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:14][  287.977537] [72030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:14][  287.977552] [72030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:14][  287.977594] [72030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:14][  287.977603] [72030][1500003ea0054][ERR][Fail to receive message from socket (33).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:14][  287.977642] [72030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:14][2014-07-17 23:47:14,817][288120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:14][2014-07-17 23:47:14,817][288120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15054) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8700) birth-time(2014-07-17 23:47:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:14][288120][1500003e90017][INFO][Connected from (127.0.0.1:57228), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:14][288120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:14][288120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:14][288120][1500003e9001d][INFO][(127.0.0.1:57228) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:14][2014-07-17 23:47:14,817][288120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:14][2014-07-17 23:47:14,818][288120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:14][2014-07-17 23:47:14,818][288120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15054) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(8700) birth-time(2014-07-17 23:47:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:15][289115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:16][290121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:17][291116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:17][291120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:17][  290.973717] [72780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:17][  290.973730] [72780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:17][  290.973772] [72780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:17][  290.973781] [72780][1500003ea0054][ERR][Fail to receive message from socket (34).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:17][  290.973796] [72780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:17][2014-07-17 23:47:17,817][291120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:17][2014-07-17 23:47:17,817][291120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15055) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9000) birth-time(2014-07-17 23:47:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:17][291120][1500003e90017][INFO][Connected from (127.0.0.1:57484), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:17][291120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:17][291120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:17][291120][1500003e9001d][INFO][(127.0.0.1:57484) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:17][2014-07-17 23:47:17,817][291120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:17][2014-07-17 23:47:17,817][291120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:17][2014-07-17 23:47:17,817][291120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15055) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9000) birth-time(2014-07-17 23:47:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:18][  291.614104] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:47:18][  291.614112] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:18][  291.614120] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:18][  291.614224] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:18][  291.614231] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:18][  291.618548] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:47:18][  291.618557] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:47:18][  291.666581] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:18][  291.666591] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:18][  291.666658] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:18][  291.666667] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:18][  291.778338] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:18][  291.778346] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:18][  291.858860] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:47:18][  291.858865] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:47:18][292111][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:18][  291.976119] IPv4: martian source 100.148.255.255 from 100.148.102.254, on dev eth6
[2014-07-17 23:47:18][  291.976125] ll header: 00000000: ff ff ff ff ff ff d4 b1 10 b1 71 ce 08 00        ..........q...
[2014-07-17 23:47:19][  292.166039] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:19][  292.166044] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:19][  292.166110] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:19][  292.166115] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:19][293117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:20][294112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:20][294120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:20][  293.969811] [73530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:20][  293.969822] [73530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:20][  293.969845] [73530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:20][  293.969851] [73530][1500003ea0054][ERR][Fail to receive message from socket (35).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:20][  293.969868] [73530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:20][2014-07-17 23:47:20,817][294120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:20][2014-07-17 23:47:20,817][294120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15094) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9300) birth-time(2014-07-17 23:47:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:20][294120][1500003e90017][INFO][Connected from (127.0.0.1:57740), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:20][294120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:20][294120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:20][294120][1500003e9001d][INFO][(127.0.0.1:57740) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:20][2014-07-17 23:47:20,817][294120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:20][2014-07-17 23:47:20,817][294120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:20][2014-07-17 23:47:20,817][294120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15094) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9300) birth-time(2014-07-17 23:47:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:21][295117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:22][296112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:23][  296.660933] net_ratelimit: 55 callbacks suppressed
[2014-07-17 23:47:23][  296.660938] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:23][  296.660943] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:23][  296.661011] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:23][  296.661016] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:23][  296.772624] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:23][  296.772631] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:23][  296.773355] IPv4: martian source 100.148.255.255 from 100.148.85.104, on dev eth6
[2014-07-17 23:47:23][  296.773359] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 02 08 00        .......PV.....
[2014-07-17 23:47:23][  296.780487] IPv4: martian source 100.148.255.255 from 100.148.85.147, on dev eth6
[2014-07-17 23:47:23][  296.780492] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 5a 08 00        .......PV..Z..
[2014-07-17 23:47:23][  296.817902] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:23][  296.817907] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:23][  296.817986] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:23][  296.817989] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:23][297118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:23][297120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:23][  296.966007] [74280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:23][  296.966016] [74280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:23][  296.966038] [74280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:23][  296.966043] [74280][1500003ea0054][ERR][Fail to receive message from socket (36).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:23][  296.966057] [74280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:23][2014-07-17 23:47:23,817][297120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:23][2014-07-17 23:47:23,817][297120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15123) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9600) birth-time(2014-07-17 23:47:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:23][297120][1500003e90017][INFO][Connected from (127.0.0.1:57996), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:23][297120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:23][297120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:23][297120][1500003e9001d][INFO][(127.0.0.1:57996) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:23][2014-07-17 23:47:23,817][297120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:23][2014-07-17 23:47:23,817][297120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:23][2014-07-17 23:47:23,817][297120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15123) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9600) birth-time(2014-07-17 23:47:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:23][  297.044000] DRHD: handling fault status reg 202
[2014-07-17 23:47:23][  297.044006] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:23][  297.044008] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:23][  297.086597] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:23][  297.086601] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:23][  297.086614] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:23][  297.086617] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:24][  297.160365] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:24][  297.160370] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:24][298113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:25][299118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:26][300114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:26][300120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:26][  299.962266] [75030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:26][  299.962279] [75030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:26][  299.962322] [75030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:26][  299.962331] [75030][1500003ea0054][ERR][Fail to receive message from socket (37).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:26][  299.962358] [75030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:26][2014-07-17 23:47:26,817][300120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:26][2014-07-17 23:47:26,817][300120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15140) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9900) birth-time(2014-07-17 23:47:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:26][300120][1500003e90017][INFO][Connected from (127.0.0.1:58252), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:26][300120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:26][300120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:26][300120][1500003e9001d][INFO][(127.0.0.1:58252) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:26][2014-07-17 23:47:26,817][300120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:26][2014-07-17 23:47:26,817][300120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:26][2014-07-17 23:47:26,817][300120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15140) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(9900) birth-time(2014-07-17 23:47:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:26][  300.054246] DRHD: handling fault status reg 302
[2014-07-17 23:47:26][  300.054257] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:26][  300.054261] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:27][301119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:28][  301.667172] net_ratelimit: 73 callbacks suppressed
[2014-07-17 23:47:28][  301.667181] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:28][  301.667189] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:28][  301.667213] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:28][  301.667219] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:28][  301.671367] IPv4: martian source 100.148.255.255 from 100.148.85.106, on dev eth6
[2014-07-17 23:47:28][  301.671379] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 13 08 00        .......PV.....
[2014-07-17 23:47:28][  301.766898] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:28][  301.766909] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:28][302115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:28][  302.021645] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:28][  302.021655] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:28][  302.021761] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:28][  302.021767] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:28][  302.105863] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:47:28][  302.105873] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:47:29][  302.154724] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:29][  302.154732] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:29][  302.154944] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:29][  302.154952] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:29][  302.266319] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:29][  302.266329] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:29][303120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:29][  302.958476] [75780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:29][  302.958489] [75780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:29][  302.958528] [75780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:29][  302.958537] [75780][1500003ea0054][ERR][Fail to receive message from socket (38).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:29][  302.958550] [75780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:29][2014-07-17 23:47:29,817][303120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:29][2014-07-17 23:47:29,817][303120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15153) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10199) birth-time(2014-07-17 23:47:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:29][303120][1500003e90017][INFO][Connected from (127.0.0.1:58508), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:29][303120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:29][303120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:29][303120][1500003e9001d][INFO][(127.0.0.1:58508) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:29][303120][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:29][2014-07-17 23:47:29,818][303120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:29][2014-07-17 23:47:29,818][303120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:29][2014-07-17 23:47:29,818][303120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15153) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10199) birth-time(2014-07-17 23:47:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:30][304116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:31][305112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:32][306117][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:32][306120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:32][  305.954670] [76530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:32][  305.954685] [76530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:32][  305.954727] [76530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:32][  305.954736] [76530][1500003ea0054][ERR][Fail to receive message from socket (39).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:32][  305.954778] [76530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:32][2014-07-17 23:47:32,817][306120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:32][2014-07-17 23:47:32,817][306120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15187) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10500) birth-time(2014-07-17 23:47:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:32][306120][1500003e90017][INFO][Connected from (127.0.0.1:58764), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:32][306120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:32][306120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:32][306120][1500003e9001d][INFO][(127.0.0.1:58764) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:32][2014-07-17 23:47:32,817][306120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:32][2014-07-17 23:47:32,818][306120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:32][2014-07-17 23:47:32,818][306120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15187) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10500) birth-time(2014-07-17 23:47:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:32][  306.055221] DRHD: handling fault status reg 402
[2014-07-17 23:47:32][  306.055232] DMAR:[DMA Write] Request device [03:07.4] fault addr 6daff000 
[2014-07-17 23:47:32][  306.055235] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:33][  306.761158] net_ratelimit: 54 callbacks suppressed
[2014-07-17 23:47:33][  306.761167] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:33][  306.761174] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:33][307112][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:33][  307.086496] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:47:33][  307.086506] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:47:33][  307.113488] IPv4: martian source 100.148.255.255 from 100.148.62.3, on dev eth6
[2014-07-17 23:47:33][  307.113499] ll header: 00000000: ff ff ff ff ff ff 5c f3 fc db 5a 80 08 00        ......\...Z...
[2014-07-17 23:47:34][  307.149077] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:34][  307.149086] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:34][  307.149271] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:34][  307.149283] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:34][  307.225428] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:34][  307.225439] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:34][  307.225552] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:34][  307.225558] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:34][  307.260605] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:34][  307.260614] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:34][  307.313048] IPv4: martian source 100.148.255.255 from 100.148.122.254, on dev eth6
[2014-07-17 23:47:34][  307.313056] ll header: 00000000: ff ff ff ff ff ff 00 50 56 82 67 a2 08 00        .......PV.g...
[2014-07-17 23:47:34][  307.332539] IPv4: martian source 100.148.255.255 from 100.148.85.183, on dev eth6
[2014-07-17 23:47:34][  307.332548] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 aa 08 00        .......PV.....
[2014-07-17 23:47:34][308118][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:34][  308.056940] DRHD: handling fault status reg 502
[2014-07-17 23:47:34][  308.056950] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:34][  308.056953] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:35][309113][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:35][309120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:35][  308.950844] [77280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:35][  308.950859] [77280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:35][  308.950899] [77280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:35][  308.950908] [77280][1500003ea0054][ERR][Fail to receive message from socket (40).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:35][  308.950946] [77280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:35][2014-07-17 23:47:35,817][309120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:35][2014-07-17 23:47:35,817][309120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15211) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10800) birth-time(2014-07-17 23:47:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:35][309120][1500003e90017][INFO][Connected from (127.0.0.1:59020), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:35][309120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:35][309120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:35][309120][1500003e9001d][INFO][(127.0.0.1:59020) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:35][2014-07-17 23:47:35,817][309120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:35][2014-07-17 23:47:35,817][309120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:35][2014-07-17 23:47:35,818][309120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15211) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(10800) birth-time(2014-07-17 23:47:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:36][310119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:37][311114][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:37][  311.057230] DRHD: handling fault status reg 602
[2014-07-17 23:47:37][  311.057241] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:37][  311.057243] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:38][312119][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:38][312120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:38][  311.947061] [78030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:38][  311.947074] [78030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:38][  311.947114] [78030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:38][  311.947123] [78030][1500003ea0054][ERR][Fail to receive message from socket (41).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:38][  311.947165] [78030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:38][2014-07-17 23:47:38,817][312120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:38][2014-07-17 23:47:38,817][312120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15233) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11100) birth-time(2014-07-17 23:47:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:38][312120][1500003e90017][INFO][Connected from (127.0.0.1:59276), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:38][312120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:38][312120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:38][312120][1500003e9001d][INFO][(127.0.0.1:59276) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:38][2014-07-17 23:47:38,817][312120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:38][2014-07-17 23:47:38,818][312120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:38][2014-07-17 23:47:38,818][312120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15233) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11100) birth-time(2014-07-17 23:47:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:39][  312.143316] net_ratelimit: 67 callbacks suppressed
[2014-07-17 23:47:39][  312.143324] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:39][  312.143332] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:39][  312.143709] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:39][  312.143721] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:39][  312.178050] IPv4: martian source 100.148.255.255 from 100.148.62.3, on dev eth6
[2014-07-17 23:47:39][  312.178059] ll header: 00000000: ff ff ff ff ff ff 5c f3 fc db 5a 80 08 00        ......\...Z...
[2014-07-17 23:47:39][  312.248412] IPv4: martian source 100.148.255.255 from 100.148.21.55, on dev eth6
[2014-07-17 23:47:39][  312.248420] ll header: 00000000: ff ff ff ff ff ff 00 50 56 8d 0c 7a 08 00        .......PV..z..
[2014-07-17 23:47:39][  312.254838] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:39][  312.254849] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:39][  312.429178] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:39][  312.429188] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:39][  312.429304] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:39][  312.429310] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:39][  312.642750] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:39][  312.642759] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:39][  312.643130] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:39][  312.643139] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:39][  312.678252] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:39][  312.678260] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:39][313115][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:40][314121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:40][  314.064284] DRHD: handling fault status reg 702
[2014-07-17 23:47:40][  314.064295] DMAR:[DMA Write] Request device [03:07.4] fault addr 6daff000 
[2014-07-17 23:47:40][  314.064298] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:41][315116][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:41][315120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:41][  314.943243] [78780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:41][  314.943256] [78780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:41][  314.943299] [78780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:41][  314.943308] [78780][1500003ea0054][ERR][Fail to receive message from socket (42).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:41][  314.943336] [78780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:41][2014-07-17 23:47:41,817][315120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:41][2014-07-17 23:47:41,817][315120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15251) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11400) birth-time(2014-07-17 23:47:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:41][315120][1500003e90017][INFO][Connected from (127.0.0.1:59532), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:41][315120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:41][315120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:41][315120][1500003e9001d][INFO][(127.0.0.1:59532) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:41][2014-07-17 23:47:41,817][315120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:41][2014-07-17 23:47:41,817][315120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:41][2014-07-17 23:47:41,818][315120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15251) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11400) birth-time(2014-07-17 23:47:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:42][316121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:43][317127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:44][  317.249055] net_ratelimit: 56 callbacks suppressed
[2014-07-17 23:47:44][  317.249063] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:44][  317.249071] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:44][  317.512280] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:44][  317.512290] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:44][  317.512302] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:44][  317.512308] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:44][  317.526565] IPv4: martian source 100.148.255.255 from 100.148.62.3, on dev eth6
[2014-07-17 23:47:44][  317.526575] ll header: 00000000: ff ff ff ff ff ff 5c f3 fc db 5a 80 08 00        ......\...Z...
[2014-07-17 23:47:44][  317.637119] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:44][  317.637129] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:44][  317.637412] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:44][  317.637420] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:44][  317.742514] IPv4: martian source 100.148.255.255 from 100.148.85.75, on dev eth6
[2014-07-17 23:47:44][  317.742523] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 12 b9 08 00        .......PV.....
[2014-07-17 23:47:44][  317.748498] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:44][  317.748505] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:44][  317.815296] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:47:44][  317.815305] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:47:44][318120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:44][  317.939419] [79530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:44][  317.939432] [79530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:44][  317.939476] [79530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:44][  317.939485] [79530][1500003ea0054][ERR][Fail to receive message from socket (43).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:44][  317.939499] [79530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:44][2014-07-17 23:47:44,817][318120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:44][2014-07-17 23:47:44,817][318120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15282) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11700) birth-time(2014-07-17 23:47:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:44][318120][1500003e90017][INFO][Connected from (127.0.0.1:59788), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:44][318120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:44][318120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:44][318120][1500003e9001d][INFO][(127.0.0.1:59788) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:44][2014-07-17 23:47:44,817][318120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:44][2014-07-17 23:47:44,817][318120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:44][2014-07-17 23:47:44,817][318120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15282) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(11700) birth-time(2014-07-17 23:47:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:44][318122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:44][  318.094767] IPv4: martian source 100.148.255.255 from 100.148.85.139, on dev eth6
[2014-07-17 23:47:44][  318.094775] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 14 08 00        .......PV.....
[2014-07-17 23:47:45][319128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:46][320123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:46][  320.059141] DRHD: handling fault status reg 2
[2014-07-17 23:47:46][  320.059154] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:46][  320.059158] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:47][321120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:47][  320.935631] [80280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:47][  320.935645] [80280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:47][  320.935688] [80280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:47][  320.935698] [80280][1500003ea0054][ERR][Fail to receive message from socket (44).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:47][  320.935713] [80280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:47][2014-07-17 23:47:47,817][321120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:47][2014-07-17 23:47:47,817][321120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15315) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12000) birth-time(2014-07-17 23:47:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:47][321120][1500003e90017][INFO][Connected from (127.0.0.1:60044), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:47][321120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:47][321120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:47][321120][1500003e9001d][INFO][(127.0.0.1:60044) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:47][2014-07-17 23:47:47,817][321120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:47][2014-07-17 23:47:47,817][321120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:47][2014-07-17 23:47:47,818][321120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15315) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12000) birth-time(2014-07-17 23:47:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:47][321129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:48][322126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:49][  322.630889] net_ratelimit: 62 callbacks suppressed
[2014-07-17 23:47:49][  322.630894] IPv4: martian source 100.148.255.255 from 100.148.85.148, on dev eth6
[2014-07-17 23:47:49][  322.630899] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 63 08 00        .......PV..c..
[2014-07-17 23:47:49][  322.631402] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:49][  322.631405] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:49][  322.631747] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:49][  322.631753] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:49][  322.742769] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:49][  322.742775] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:49][323122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:50][  323.130833] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:50][  323.130839] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:50][  323.131175] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:50][  323.131180] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:50][  323.148084] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:50][  323.148089] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:50][  323.148097] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:50][  323.148100] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:50][  323.242191] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:50][  323.242196] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:50][  323.584701] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:50][  323.584705] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:50][324120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:50][  323.931729] [81030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:50][  323.931737] [81030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:50][  323.931760] [81030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:50][  323.931767] [81030][1500003ea0054][ERR][Fail to receive message from socket (45).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:50][  323.931777] [81030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:50][2014-07-17 23:47:50,817][324120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:50][2014-07-17 23:47:50,817][324120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15350) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12300) birth-time(2014-07-17 23:47:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:50][324120][1500003e90017][INFO][Connected from (127.0.0.1:60300), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:50][324120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:50][324120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:50][324120][1500003e9001d][INFO][(127.0.0.1:60300) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:50][2014-07-17 23:47:50,817][324120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:50][2014-07-17 23:47:50,817][324120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:50][2014-07-17 23:47:50,817][324120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15350) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12300) birth-time(2014-07-17 23:47:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:50][324127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:50][  324.051631] DRHD: handling fault status reg 102
[2014-07-17 23:47:50][  324.051637] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:47:50][  324.051639] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:47:51][325122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:52][326127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:53][327120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:53][  326.927888] [81780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:53][  326.927896] [81780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:53][  326.927918] [81780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:53][  326.927923] [81780][1500003ea0054][ERR][Fail to receive message from socket (46).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:53][  326.927931] [81780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:53][2014-07-17 23:47:53,817][327120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:53][2014-07-17 23:47:53,817][327120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15351) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12600) birth-time(2014-07-17 23:47:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:53][327120][1500003e90017][INFO][Connected from (127.0.0.1:60556), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:53][327120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:53][327120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:53][327120][1500003e9001d][INFO][(127.0.0.1:60556) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:53][2014-07-17 23:47:53,817][327120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:53][2014-07-17 23:47:53,817][327120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:53][2014-07-17 23:47:53,817][327120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15351) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12600) birth-time(2014-07-17 23:47:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:53][327123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:54][  327.679986] net_ratelimit: 41 callbacks suppressed
[2014-07-17 23:47:54][  327.679991] IPv4: martian source 100.148.255.255 from 100.148.75.156, on dev eth6
[2014-07-17 23:47:54][  327.679996] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 ee 08 00        .......PV.....
[2014-07-17 23:47:54][  327.713095] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:47:54][  327.713099] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:47:54][  327.713107] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:47:54][  327.713110] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:47:54][  327.736978] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:54][  327.736983] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:54][328128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:54][  328.028746] IPv4: martian source 100.148.255.255 from 100.148.85.86, on dev eth6
[2014-07-17 23:47:54][  328.028751] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 12 b5 08 00        .......PV.....
[2014-07-17 23:47:55][  328.125111] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:47:55][  328.125117] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:47:55][  328.125470] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:47:55][  328.125476] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:47:55][  328.181472] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:47:55][  328.181478] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:47:55][  328.236400] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:55][  328.236405] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:55][  328.303670] IPv4: martian source 100.148.255.255 from 100.148.85.43, on dev eth6
[2014-07-17 23:47:55][  328.303675] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 3f 4b 08 00        .......PV.?K..
[2014-07-17 23:47:55][329123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:56][330120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:56][  329.924211] [82530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:56][  329.924226] [82530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:56][  329.924266] [82530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:56][  329.924275] [82530][1500003ea0054][ERR][Fail to receive message from socket (47).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:56][  329.924290] [82530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:56][2014-07-17 23:47:56,817][330120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:56][2014-07-17 23:47:56,817][330120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15416) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12900) birth-time(2014-07-17 23:47:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:56][330120][1500003e90017][INFO][Connected from (127.0.0.1:60812), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:56][330120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:56][330120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:56][330120][1500003e9001d][INFO][(127.0.0.1:60812) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:56][2014-07-17 23:47:56,817][330120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:56][2014-07-17 23:47:56,817][330120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:56][2014-07-17 23:47:56,818][330120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15416) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(12900) birth-time(2014-07-17 23:47:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:56][330129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:57][331124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:58][332130][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:59][  332.731230] net_ratelimit: 61 callbacks suppressed
[2014-07-17 23:47:59][  332.731238] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:47:59][  332.731245] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:47:59][  332.859201] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:59][  332.859211] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:59][  332.859224] IPv4: martian source 100.148.255.255 from 100.148.15.174, on dev eth6
[2014-07-17 23:47:59][  332.859230] ll header: 00000000: ff ff ff ff ff ff f8 4a bf e5 45 54 08 00        .......J..ET..
[2014-07-17 23:47:59][333120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:47:59][  332.920391] [83280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:47:59][  332.920404] [83280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:47:59][  332.920443] [83280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:47:59][  332.920454] [83280][1500003ea0054][ERR][Fail to receive message from socket (48).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:47:59][  332.920470] [83280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:47:59][2014-07-17 23:47:59,817][333120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:47:59][2014-07-17 23:47:59,817][333120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15422) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13200) birth-time(2014-07-17 23:47:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:59][333120][1500003e90017][INFO][Connected from (127.0.0.1:61068), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:47:59][333120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:47:59][333120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:47:59][333120][1500003e9001d][INFO][(127.0.0.1:61068) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:47:59][2014-07-17 23:47:59,817][333120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:47:59][2014-07-17 23:47:59,817][333120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:47:59][2014-07-17 23:47:59,818][333120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15422) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13200) birth-time(2014-07-17 23:47:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:47:59][333125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:47:59][  333.089883] IPv4: martian source 100.148.255.255 from 100.148.85.134, on dev eth6
[2014-07-17 23:47:59][  333.089891] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 ef 08 00        .......PV.....
[2014-07-17 23:48:00][  333.119375] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:00][  333.119384] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:00][  333.119815] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:00][  333.119824] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:00][  333.212391] IPv4: martian source 100.148.255.255 from 100.148.85.63, on dev eth6
[2014-07-17 23:48:00][  333.212399] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 8f 08 00        .......PV.....
[2014-07-17 23:48:00][  333.230673] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:00][  333.230682] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:00][  333.275160] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:48:00][  333.275171] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:48:00][  333.618790] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:00][  333.618797] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:00][334131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:01][335126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:02][336120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:02][  335.916599] [84030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:02][  335.916612] [84030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:02][  335.916653] [84030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:02][  335.916662] [84030][1500003ea0054][ERR][Fail to receive message from socket (49).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:02][  335.916676] [84030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:02][2014-07-17 23:48:02,817][336120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:02][2014-07-17 23:48:02,817][336120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15455) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13500) birth-time(2014-07-17 23:48:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:02][336120][1500003e90017][INFO][Connected from (127.0.0.1:61324), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:02][336120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:02][336120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:02][336120][1500003e9001d][INFO][(127.0.0.1:61324) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:02][2014-07-17 23:48:02,817][336120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:02][2014-07-17 23:48:02,818][336120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:02][2014-07-17 23:48:02,818][336120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15455) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13500) birth-time(2014-07-17 23:48:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:02][336121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:03][337127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:04][338122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:04][  337.978835] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:48:04][  337.978843] IPv4: martian source 100.148.255.255 from 100.148.122.254, on dev eth6
[2014-07-17 23:48:04][  337.978851] ll header: 00000000: ff ff ff ff ff ff 00 50 56 82 67 a2 08 00        .......PV.g...
[2014-07-17 23:48:05][  338.113754] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:05][  338.113764] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:05][  338.114105] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:05][  338.114115] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:05][  338.224913] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:05][  338.224923] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:05][  338.569702] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:48:05][  338.569712] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:48:05][  338.613171] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:05][  338.613178] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:05][  338.613554] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:05][  338.613564] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:05][  338.724346] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:05][  338.724356] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:05][  338.727693] IPv4: martian source 100.148.255.255 from 100.148.122.254, on dev eth6
[2014-07-17 23:48:05][  338.727700] ll header: 00000000: ff ff ff ff ff ff 00 50 56 82 67 a2 08 00        .......PV.g...
[2014-07-17 23:48:05][339120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:05][  338.912746] [84780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:05][  338.912759] [84780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:05][  338.912803] [84780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:05][  338.912812] [84780][1500003ea0054][ERR][Fail to receive message from socket (50).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:05][  338.912826] [84780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:05][2014-07-17 23:48:05,817][339120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:05][2014-07-17 23:48:05,817][339120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15468) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13800) birth-time(2014-07-17 23:48:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:05][339120][1500003e90017][INFO][Connected from (127.0.0.1:61580), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:05][339120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:05][339120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:05][339120][1500003e9001d][INFO][(127.0.0.1:61580) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:05][2014-07-17 23:48:05,817][339120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:05][2014-07-17 23:48:05,817][339120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:05][2014-07-17 23:48:05,818][339120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15468) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(13800) birth-time(2014-07-17 23:48:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:05][339128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:06][  339.112592] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:06][  339.112601] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:06][340123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:07][341128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:08][342120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:08][  341.908940] [85530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:08][  341.908952] [85530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:08][  341.908991] [85530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:08][  341.909000] [85530][1500003ea0054][ERR][Fail to receive message from socket (51).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:08][  341.909014] [85530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:08][2014-07-17 23:48:08,817][342120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:08][2014-07-17 23:48:08,817][342120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15480) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14100) birth-time(2014-07-17 23:48:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:08][342120][1500003e90017][INFO][Connected from (127.0.0.1:61836), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:08][342120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:08][342120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:08][342120][1500003e9001d][INFO][(127.0.0.1:61836) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:08][2014-07-17 23:48:08,817][342120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:08][2014-07-17 23:48:08,817][342120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:08][2014-07-17 23:48:08,817][342120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15480) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14100) birth-time(2014-07-17 23:48:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:08][342124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:09][343129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:10][  343.219129] net_ratelimit: 34 callbacks suppressed
[2014-07-17 23:48:10][  343.219137] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:10][  343.219145] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:10][  343.272087] IPv4: martian source 100.148.255.255 from 100.148.75.149, on dev eth6
[2014-07-17 23:48:10][  343.272096] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 c6 08 00        .......PV.....
[2014-07-17 23:48:10][  343.490775] IPv4: martian source 100.148.255.255 from 100.148.85.210, on dev eth6
[2014-07-17 23:48:10][  343.490782] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 6a f0 08 00        .......PV.j...
[2014-07-17 23:48:10][  343.607478] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:10][  343.607488] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:10][  343.607911] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:10][  343.607922] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:10][  343.718547] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:10][  343.718558] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:10][  343.771959] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:48:10][  343.771967] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:48:10][  343.788981] IPv4: martian source 100.148.255.255 from 100.148.174.124, on dev eth6
[2014-07-17 23:48:10][  343.788989] ll header: 00000000: ff ff ff ff ff ff 4c b1 6c 91 c7 ca 08 00        ......L.l.....
[2014-07-17 23:48:10][344125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:11][  344.106890] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:11][  344.106899] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:11][  344.107345] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:11][  344.107353] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:11][345120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:11][  344.905147] [86280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:11][  344.905161] [86280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:11][  344.905208] [86280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:11][  344.905217] [86280][1500003ea0054][ERR][Fail to receive message from socket (52).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:11][  344.905232] [86280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:11][2014-07-17 23:48:11,817][345120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:11][2014-07-17 23:48:11,817][345120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15514) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14399) birth-time(2014-07-17 23:48:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:11][345120][1500003e90017][INFO][Connected from (127.0.0.1:62092), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:11][345120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:11][345120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:11][345120][1500003e9001d][INFO][(127.0.0.1:62092) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:11][2014-07-17 23:48:11,817][345120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:11][2014-07-17 23:48:11,818][345120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:11][2014-07-17 23:48:11,818][345120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15514) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14399) birth-time(2014-07-17 23:48:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:11][345130][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:12][346126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:13][347131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:14][348120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:14][  347.901318] [87030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:14][  347.901331] [87030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:14][  347.901370] [87030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:14][  347.901381] [87030][1500003ea0054][ERR][Fail to receive message from socket (53).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:14][  347.901394] [87030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:14][2014-07-17 23:48:14,817][348120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:14][2014-07-17 23:48:14,817][348120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15520) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14700) birth-time(2014-07-17 23:48:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:14][348120][1500003e90017][INFO][Connected from (127.0.0.1:62348), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:14][348120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:14][348120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:14][348120][1500003e9001d][INFO][(127.0.0.1:62348) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:14][2014-07-17 23:48:14,817][348120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:14][2014-07-17 23:48:14,817][348120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:14][2014-07-17 23:48:14,817][348120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15520) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(14700) birth-time(2014-07-17 23:48:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:14][348126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:15][  348.574764] net_ratelimit: 39 callbacks suppressed
[2014-07-17 23:48:15][  348.574772] IPv4: martian source 100.148.255.255 from 100.148.85.183, on dev eth6
[2014-07-17 23:48:15][  348.574780] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 aa 08 00        .......PV.....
[2014-07-17 23:48:15][  348.601863] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:15][  348.601872] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:15][  348.602281] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:15][  348.602291] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:15][  348.669551] IPv4: martian source 100.148.255.255 from 100.148.91.127, on dev eth6
[2014-07-17 23:48:15][  348.669559] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 0a e8 ae 08 00        .......++.....
[2014-07-17 23:48:15][  348.669947] IPv4: martian source 100.148.255.255 from 100.148.91.127, on dev eth6
[2014-07-17 23:48:15][  348.669953] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 0a e8 ae 08 00        .......++.....
[2014-07-17 23:48:15][  348.712823] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:15][  348.712832] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:15][349122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:15][  349.065801] DRHD: handling fault status reg 202
[2014-07-17 23:48:15][  349.065812] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:48:15][  349.065815] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:16][  349.101287] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:16][  349.101295] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:16][  349.101727] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:16][  349.101735] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:16][  349.212248] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:16][  349.212256] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:16][  349.229381] IPv4: martian source 100.148.255.255 from 100.148.91.91, on dev eth6
[2014-07-17 23:48:16][  349.229389] ll header: 00000000: ff ff ff ff ff ff 10 1b 54 97 72 31 08 00        ........T.r1..
[2014-07-17 23:48:16][350127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:17][351120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:17][  350.897524] [87780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:17][  350.897538] [87780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:17][  350.897582] [87780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:17][  350.897591] [87780][1500003ea0054][ERR][Fail to receive message from socket (54).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:17][  350.897607] [87780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:17][2014-07-17 23:48:17,817][351120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:17][2014-07-17 23:48:17,817][351120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15559) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15000) birth-time(2014-07-17 23:48:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:17][351120][1500003e90017][INFO][Connected from (127.0.0.1:62604), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:17][351120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:17][351120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:17][351120][1500003e9001d][INFO][(127.0.0.1:62604) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:17][2014-07-17 23:48:17,817][351120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:17][2014-07-17 23:48:17,817][351120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:17][2014-07-17 23:48:17,818][351120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15559) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15000) birth-time(2014-07-17 23:48:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:17][351123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:18][352123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:19][353128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:20][  353.707031] net_ratelimit: 39 callbacks suppressed
[2014-07-17 23:48:20][  353.707036] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:20][  353.707041] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:20][354120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:20][  353.893627] [88530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:20][  353.893636] [88530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:20][  353.893660] [88530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:20][  353.893666] [88530][1500003ea0054][ERR][Fail to receive message from socket (55).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:20][  353.893675] [88530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:20][2014-07-17 23:48:20,817][354120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:20][2014-07-17 23:48:20,817][354120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15608) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15300) birth-time(2014-07-17 23:48:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:20][354120][1500003e90017][INFO][Connected from (127.0.0.1:62860), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:20][354120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:20][354120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:20][354120][1500003e9001d][INFO][(127.0.0.1:62860) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:20][2014-07-17 23:48:20,817][354120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:20][2014-07-17 23:48:20,817][354120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:20][2014-07-17 23:48:20,817][354120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15608) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15300) birth-time(2014-07-17 23:48:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:20][354123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:21][  354.095710] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:21][  354.095715] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:21][  354.096089] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:21][  354.096095] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:21][  354.182252] IPv4: martian source 100.148.255.255 from 100.148.85.216, on dev eth6
[2014-07-17 23:48:21][  354.182258] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 9c 08 00        .......PV.....
[2014-07-17 23:48:21][  354.199629] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:21][  354.199634] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:21][  354.199756] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:21][  354.199760] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:21][  354.206448] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:21][  354.206453] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:21][  354.595131] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:21][  354.595136] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:21][  354.595526] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:21][  354.595531] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:21][  354.705863] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:21][  354.705869] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:21][355128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:21][  355.059053] DRHD: handling fault status reg 302
[2014-07-17 23:48:21][  355.059060] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:48:21][  355.059061] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:22][356124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:23][357120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:23][  356.889794] [89280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:23][  356.889802] [89280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:23][  356.889825] [89280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:23][  356.889830] [89280][1500003ea0054][ERR][Fail to receive message from socket (56).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:23][  356.889838] [89280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:23][2014-07-17 23:48:23,817][357120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:23][2014-07-17 23:48:23,817][357120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15620) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15600) birth-time(2014-07-17 23:48:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:23][357120][1500003e90017][INFO][Connected from (127.0.0.1:63116), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:23][357120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:23][357120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:23][357120][1500003e9001d][INFO][(127.0.0.1:63116) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:23][2014-07-17 23:48:23,817][357120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:23][2014-07-17 23:48:23,817][357120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:23][2014-07-17 23:48:23,817][357120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15620) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15600) birth-time(2014-07-17 23:48:23,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:23][357129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:24][358125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:25][359130][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:26][  359.200793] net_ratelimit: 52 callbacks suppressed
[2014-07-17 23:48:26][  359.200798] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:26][  359.200803] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:26][  359.404995] IPv4: martian source 100.148.255.255 from 100.148.75.126, on dev eth6
[2014-07-17 23:48:26][  359.405001] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 10 08 00        .......PV.....
[2014-07-17 23:48:26][  359.406834] IPv4: martian source 100.148.255.255 from 100.148.75.135, on dev eth6
[2014-07-17 23:48:26][  359.406838] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 59 08 00        .......PV..Y..
[2014-07-17 23:48:26][  359.589476] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:26][  359.589482] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:26][  359.589847] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:26][  359.589852] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:26][  359.700218] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:26][  359.700223] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:26][  359.713515] IPv4: martian source 100.148.255.255 from 100.148.85.75, on dev eth6
[2014-07-17 23:48:26][  359.713521] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 12 b9 08 00        .......PV.....
[2014-07-17 23:48:26][360120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:26][  359.886125] [90030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:26][  359.886139] [90030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:26][  359.886181] [90030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:26][  359.886190] [90030][1500003ea0054][ERR][Fail to receive message from socket (57).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:26][  359.886204] [90030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:26][2014-07-17 23:48:26,817][360120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:26][2014-07-17 23:48:26,817][360120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15679) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15900) birth-time(2014-07-17 23:48:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:26][360120][1500003e90017][INFO][Connected from (127.0.0.1:63372), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:26][360120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:26][360120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:26][360120][1500003e9001d][INFO][(127.0.0.1:63372) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:26][2014-07-17 23:48:26,817][360120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:26][2014-07-17 23:48:26,818][360120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:26][2014-07-17 23:48:26,818][360120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15679) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(15900) birth-time(2014-07-17 23:48:26,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:26][360125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:27][  360.088928] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:27][  360.088939] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:27][  360.089286] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:27][  360.089296] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:27][  360.169663] IPv4: martian source 100.148.255.255 from 100.148.75.135, on dev eth6
[2014-07-17 23:48:27][  360.169674] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 59 08 00        .......PV..Y..
[2014-07-17 23:48:27][361131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:28][362126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:29][  362.069847] DRHD: handling fault status reg 402
[2014-07-17 23:48:29][  362.069858] DMAR:[DMA Write] Request device [03:07.3] fault addr 6daff000 
[2014-07-17 23:48:29][  362.069861] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:29][363120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:29][  362.882295] [90780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:29][  362.882308] [90780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:29][  362.882359] [90780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:29][  362.882369] [90780][1500003ea0054][ERR][Fail to receive message from socket (58).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:29][  362.882382] [90780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:29][2014-07-17 23:48:29,817][363120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:29][2014-07-17 23:48:29,817][363120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15696) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16200) birth-time(2014-07-17 23:48:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:29][363120][1500003e90017][INFO][Connected from (127.0.0.1:63628), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:29][363120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:29][363120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:29][363120][1500003e9001d][INFO][(127.0.0.1:63628) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:29][2014-07-17 23:48:29,817][363120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:29][2014-07-17 23:48:29,817][363120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:29][2014-07-17 23:48:29,818][363120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15696) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16200) birth-time(2014-07-17 23:48:29,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:29][363121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:30][364127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:31][  364.583828] net_ratelimit: 31 callbacks suppressed
[2014-07-17 23:48:31][  364.583836] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:31][  364.583844] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:31][  364.584209] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:31][  364.584221] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:31][  364.694492] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:31][  364.694503] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:31][365122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:31][  365.036336] IPv4: martian source 100.148.255.255 from 100.148.255.2, on dev eth6
[2014-07-17 23:48:31][  365.036344] ll header: 00000000: ff ff ff ff ff ff 44 37 e6 95 e7 11 08 00        ......D7......
[2014-07-17 23:48:31][  365.036781] IPv4: martian source 100.148.255.255 from 100.148.255.2, on dev eth6
[2014-07-17 23:48:31][  365.036787] ll header: 00000000: ff ff ff ff ff ff 44 37 e6 95 e7 11 08 00        ......D7......
[2014-07-17 23:48:32][  365.083276] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:32][  365.083285] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:32][  365.083638] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:32][  365.083647] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:32][  365.193925] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:32][  365.193932] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:32][  365.267244] IPv4: martian source 100.148.255.255 from 100.148.174.124, on dev eth6
[2014-07-17 23:48:32][  365.267252] ll header: 00000000: ff ff ff ff ff ff 4c b1 6c 91 c7 ca 08 00        ......L.l.....
[2014-07-17 23:48:32][  365.582700] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:32][  365.582708] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:32][366120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:32][  365.878448] [91530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:32][  365.878461] [91530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:32][  365.878500] [91530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:32][  365.878508] [91530][1500003ea0054][ERR][Fail to receive message from socket (59).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:32][  365.878527] [91530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:32][2014-07-17 23:48:32,817][366120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:32][2014-07-17 23:48:32,817][366120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15704) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16500) birth-time(2014-07-17 23:48:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:32][366120][1500003e90017][INFO][Connected from (127.0.0.1:63884), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:32][366120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:32][366120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:32][366120][1500003e9001d][INFO][(127.0.0.1:63884) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:32][2014-07-17 23:48:32,817][366120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:32][2014-07-17 23:48:32,817][366120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:32][2014-07-17 23:48:32,817][366120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15704) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16500) birth-time(2014-07-17 23:48:32,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:32][366128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:33][367123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:34][368129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:35][369120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:35][  368.874664] [92280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:35][  368.874677] [92280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:35][  368.874723] [92280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:35][  368.874732] [92280][1500003ea0054][ERR][Fail to receive message from socket (60).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:35][  368.874746] [92280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:35][2014-07-17 23:48:35,817][369120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:35][2014-07-17 23:48:35,817][369120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15731) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16800) birth-time(2014-07-17 23:48:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:35][369120][1500003e90017][INFO][Connected from (127.0.0.1:64140), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:35][369120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:35][369120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:35][369120][1500003e9001d][INFO][(127.0.0.1:64140) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:35][2014-07-17 23:48:35,817][369120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:35][2014-07-17 23:48:35,817][369120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:35][2014-07-17 23:48:35,818][369120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15731) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(16800) birth-time(2014-07-17 23:48:35,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:35][369124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:36][  369.094170] INFO: task sched_work:395 blocked for more than 120 seconds.
[2014-07-17 23:48:36][  369.094176] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:48:36][  369.094181] sched_work      D 0000000000000000  5544   395      2 0x00000000
[2014-07-17 23:48:36][  369.094283]  ffff88010d21bdd0 0000000000000046 ffff88012af75a00 ffff88010d21a010
[2014-07-17 23:48:36][  369.094647]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.095009]  ffff88010d21bfd8 ffff88010d21bfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.095372]  ffff88005b33a580 ffff88005b39c600 0000000000000000 0000000000000020
[2014-07-17 23:48:36][  369.095734]  0000000000000000 ffff88012af76268 ffff88010981de00 0000000000000d87
[2014-07-17 23:48:36][  369.096096]  0000000000000000 ffff88010d21bd38 ffffffff814632d9 ffff88010d21bd88
[2014-07-17 23:48:36][  369.096458]  ffffffff81076ab3 ffff88010d21bd78 ffffffff8106cc19 000000010d21be28
[2014-07-17 23:48:36][  369.096821]  ffffffff81606ae0 ffff88006989c4a0 ffff88012af75a00 ffff88006989c6e0
[2014-07-17 23:48:36][  369.097183]  00000000006c4060 ffff88010d21bed8 ffff88010d21bf10 ffffffffa01aedbe
[2014-07-17 23:48:36][  369.097546]  ffff88010d21a010 ffff88005b33a580 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:48:36][  369.097908]  0000000000000000 0000000000000000 ffff88010d21bdf0 ffffffff814614d9
[2014-07-17 23:48:36][  369.098288]  0000000000015a00 7fffffffffffffff ffff88010d21be90 ffffffff8145fdbd
[2014-07-17 23:48:36][  369.098651]  ffff88005b1ac200 ffff88005b33a580 0000000000000000 0000000000000000
[2014-07-17 23:48:36][  369.099024]  ffff88010d21be30 ffffffff810c2602 ffff88010d21be40 ffffffff810638ba
[2014-07-17 23:48:36][  369.099386]  ffff88010d21be70 ffffffff81063fce 0000000000000000 ffff88005b33a580
[2014-07-17 23:48:36][  369.099749]  ffff88010d21be70 7fffffffffffffff
[2014-07-17 23:48:36][  369.099843] Call Trace:
[2014-07-17 23:48:36][  369.099857]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:48:36][  369.099869]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:48:36][  369.099877]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:48:36][  369.099932]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:48:36][  369.099944]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:48:36][  369.099953]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:48:36][  369.099962]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:48:36][  369.099970]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:48:36][  369.099976]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:48:36][  369.099988]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:48:36][  369.100005]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:48:36][  369.100034]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:48:36][  369.100062]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:48:36][  369.100072]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:48:36][  369.100098]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:48:36][  369.100107]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:48:36][  369.100113] INFO: task sched_work:396 blocked for more than 120 seconds.
[2014-07-17 23:48:36][  369.100117] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:48:36][  369.100121] sched_work      D 0000000000000000  5544   396      2 0x00000000
[2014-07-17 23:48:36][  369.100132]  ffff88010d1fbdd0 0000000000000046 ffffffff81076216 ffff88010d1fa010
[2014-07-17 23:48:36][  369.100143]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100153]  ffff88010d1fbfd8 ffff88010d1fbfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100164]  ffff8800663c0440 ffff880109fb8580 0000000000000001 0000000000000001
[2014-07-17 23:48:36][  369.100174]  ffff88012aeb5a00 ffff88010d1fbd48 ffffffff8107725a ffff88012aeb5a00
[2014-07-17 23:48:36][  369.100185]  ffff88005b166300 ffff88012aeb5a00 0000000000000001 ffff88005b1668e0
[2014-07-17 23:48:36][  369.100195]  0000000000000000 ffff88010d1fbd78 ffffffff8106cc19 ffff88010d1fbd78
[2014-07-17 23:48:36][  369.100206]  ffffffff81606ae0 ffff88005b1666a0 ffff88012aeb5a00 ffff88005b1668e0
[2014-07-17 23:48:36][  369.100216]  0000000000000000 ffff88010d1fbed8 ffff88010d1fbf10 ffffffffa01aedbe
[2014-07-17 23:48:36][  369.100227]  ffff88010d1fa010 ffff8800663c0440 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:48:36][  369.100237]  0000000000000000 0000000000000000 ffff88010d1fbdf0 ffffffff814614d9
[2014-07-17 23:48:36][  369.100248]  0000000000015a00 7fffffffffffffff ffff88010d1fbe90 ffffffff8145fdbd
[2014-07-17 23:48:36][  369.100258]  ffff88005b1ac140 ffff8800663c0440 0000000000000000 0000000000000000
[2014-07-17 23:48:36][  369.100269]  ffff88010d1fbe30 ffffffff810c2602 ffff88010d1fbe40 ffffffff810638ba
[2014-07-17 23:48:36][  369.100280]  ffff88010d1fbe70 ffffffff81063fce 0000000000000000 ffff8800663c0440
[2014-07-17 23:48:36][  369.100290]  ffff88010d1fbe70 7fffffffffffffff
[2014-07-17 23:48:36][  369.100297] Call Trace:
[2014-07-17 23:48:36][  369.100305]  [<ffffffff81076216>] ? update_curr+0x186/0x1c0
[2014-07-17 23:48:36][  369.100314]  [<ffffffff8107725a>] ? dequeue_task_fair+0x6a/0x170
[2014-07-17 23:48:36][  369.100321]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:48:36][  369.100345]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:48:36][  369.100355]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:48:36][  369.100364]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:48:36][  369.100371]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:48:36][  369.100378]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:48:36][  369.100385]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:48:36][  369.100397]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:48:36][  369.100408]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:48:36][  369.100433]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:48:36][  369.100458]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:48:36][  369.100466]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:48:36][  369.100491]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:48:36][  369.100499]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:48:36][  369.100504] INFO: task sched_work:397 blocked for more than 120 seconds.
[2014-07-17 23:48:36][  369.100508] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:48:36][  369.100513] sched_work      D 0000000000000000  5544   397      2 0x00000000
[2014-07-17 23:48:36][  369.100523]  ffff88010d20fdd0 0000000000000046 ffff88012ae35a00 ffff88010d20e010
[2014-07-17 23:48:36][  369.100534]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100545]  ffff88010d20ffd8 ffff88010d20ffd8 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100555]  ffff88005b39c600 ffff880109f86400 0000000000000000 0000000000000020
[2014-07-17 23:48:36][  369.100566]  0000000000000000 ffff88012ae36268 ffff880109ffa200 0000000000000d6d
[2014-07-17 23:48:36][  369.100576]  0000000000000000 ffff88010d20fd38 ffffffff814632d9 ffff88010d20fd88
[2014-07-17 23:48:36][  369.100587]  ffffffff81076ab3 ffff88010d20fd78 ffffffff8106cc19 000000010d20fd78
[2014-07-17 23:48:36][  369.100598]  ffffffff81606ae0 ffff880069d64520 ffff88012ae35a00 ffff880069d64760
[2014-07-17 23:48:36][  369.100608]  0000000000000000 ffff88010d20fed8 ffff88010d20ff10 ffffffffa01aedbe
[2014-07-17 23:48:36][  369.100619]  ffff88010d20e010 ffff88005b39c600 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:48:36][  369.100629]  0000000000000000 0000000000000000 ffff88010d20fdf0 ffffffff814614d9
[2014-07-17 23:48:36][  369.100640]  0000000000015a00 7fffffffffffffff ffff88010d20fe90 ffffffff8145fdbd
[2014-07-17 23:48:36][  369.100650]  ffff88005b1ac080 ffff88005b39c600 0000000000000000 0000000000000000
[2014-07-17 23:48:36][  369.100661]  ffff88010d20fe30 ffffffff810c2602 ffff88010d20fe40 ffffffff810638ba
[2014-07-17 23:48:36][  369.100671]  ffff88010d20fe70 ffffffff81063fce 0000000000000000 ffff88005b39c600
[2014-07-17 23:48:36][  369.100682]  ffff88010d20fe70 7fffffffffffffff
[2014-07-17 23:48:36][  369.100688] Call Trace:
[2014-07-17 23:48:36][  369.100696]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:48:36][  369.100704]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:48:36][  369.100711]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:48:36][  369.100734]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:48:36][  369.100745]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:48:36][  369.100753]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:48:36][  369.100761]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:48:36][  369.100767]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:48:36][  369.100774]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:48:36][  369.100786]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:48:36][  369.100797]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:48:36][  369.100821]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:48:36][  369.100845]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:48:36][  369.100854]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:48:36][  369.100879]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:48:36][  369.100886]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:48:36][  369.100892] INFO: task sched_work:398 blocked for more than 120 seconds.
[2014-07-17 23:48:36][  369.100896] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:48:36][  369.100901] sched_work      D 0000000000000000  5040   398      2 0x00000000
[2014-07-17 23:48:36][  369.100910]  ffff88010d203dd0 0000000000000046 ffff88012af75a00 ffff88010d202010
[2014-07-17 23:48:36][  369.100921]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100931]  ffff88010d203fd8 ffff88010d203fd8 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.100942]  ffff8800662d0100 ffff880109f86400 0000000000000000 0000000000000020
[2014-07-17 23:48:36][  369.100952]  0000000000000000 ffff88012af76268 ffff88010981de00 0000000000000d87
[2014-07-17 23:48:36][  369.100963]  0000000000000000 ffff88010d203d38 ffffffff814632d9 ffff88010d203d88
[2014-07-17 23:48:36][  369.100974]  ffffffff81076ab3 ffff88010d203d78 ffffffff8106cc19 000000010d203d78
[2014-07-17 23:48:36][  369.100984]  ffffffff81606ae0 ffff8800698ce4e0 ffff88012af75a00 ffff8800698ce720
[2014-07-17 23:48:36][  369.100995]  0000000000000000 ffff88010d203ed8 ffff88010d203f10 ffffffffa01aedbe
[2014-07-17 23:48:36][  369.101006]  ffff88010d202010 ffff8800662d0100 ffffffffa01de000 7fffffffffffffff
[2014-07-17 23:48:36][  369.101016]  0000000000000000 0000000000000000 ffff88010d203df0 ffffffff814614d9
[2014-07-17 23:48:36][  369.101027]  0000000000015a00 7fffffffffffffff ffff88010d203e90 ffffffff8145fdbd
[2014-07-17 23:48:36][  369.101038]  ffff8800698fad80 ffff8800662d0100 0000000000000000 0000000000000000
[2014-07-17 23:48:36][  369.101048]  ffff88010d203e30 ffffffff810c2602 ffff88010d203e40 ffffffff810638ba
[2014-07-17 23:48:36][  369.101059]  ffff88010d203e70 ffffffff81063fce 0000000000000000 ffff8800662d0100
[2014-07-17 23:48:36][  369.101070]  ffff88010d203e70 7fffffffffffffff
[2014-07-17 23:48:36][  369.101076] Call Trace:
[2014-07-17 23:48:36][  369.101083]  [<ffffffff814632d9>] ? _raw_spin_lock+0x9/0x10
[2014-07-17 23:48:36][  369.101091]  [<ffffffff81076ab3>] ? idle_balance+0xf3/0x130
[2014-07-17 23:48:36][  369.101098]  [<ffffffff8106cc19>] ? dequeue_task+0x89/0xa0
[2014-07-17 23:48:36][  369.101122]  [<ffffffffa01aedbe>] ? DBG_Log+0x3e/0x150 [vos]
[2014-07-17 23:48:36][  369.101132]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:48:36][  369.101140]  [<ffffffff8145fdbd>] schedule_timeout+0x21d/0x2c0
[2014-07-17 23:48:36][  369.101148]  [<ffffffff810c2602>] ? call_rcu_sched+0x12/0x20
[2014-07-17 23:48:36][  369.101155]  [<ffffffff810638ba>] ? __put_cred+0x3a/0x50
[2014-07-17 23:48:36][  369.101161]  [<ffffffff81063fce>] ? commit_creds+0x12e/0x1e0
[2014-07-17 23:48:36][  369.101173]  [<ffffffff8146055d>] __down+0x6d/0xb0
[2014-07-17 23:48:36][  369.101187]  [<ffffffff81062d47>] down+0x47/0x50
[2014-07-17 23:48:36][  369.101211]  [<ffffffffa01b84e9>] LVOS_sema_down+0x9/0x10 [vos]
[2014-07-17 23:48:36][  369.101235]  [<ffffffffa01b89ac>] LVOS_SchedWorkThread+0x5c/0x190 [vos]
[2014-07-17 23:48:36][  369.101243]  [<ffffffff8146c3e4>] kernel_thread_helper+0x4/0x10
[2014-07-17 23:48:36][  369.101268]  [<ffffffffa01b8950>] ? LVOS_SchedWorkInit+0x60/0x60 [vos]
[2014-07-17 23:48:36][  369.101276]  [<ffffffff8146c3e0>] ? gs_change+0x13/0x13
[2014-07-17 23:48:36][  369.101282] INFO: task os_exeshell:430 blocked for more than 120 seconds.
[2014-07-17 23:48:36][  369.101286] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[2014-07-17 23:48:36][  369.101290] os_exeshell     D 0000000000000006  5304   430      1 0x00000000
[2014-07-17 23:48:36][  369.101301]  ffff88010d1dbe38 0000000000000086 ffff88010d1dbd08 ffff88010d1da010
[2014-07-17 23:48:36][  369.101311]  0000000000015a00 0000000000015a00 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.101322]  ffff88010d1dbfd8 ffff88010d1dbfd8 0000000000015a00 0000000000015a00
[2014-07-17 23:48:36][  369.101332]  ffff880069c56500 ffffffff81814020 0000002400000000 ffff880109883b78
[2014-07-17 23:48:36][  369.101343]  ffff88005b1bf4a8 0000000000000051 ffff880069c56500 ffff88010d1dbe38
[2014-07-17 23:48:36][  369.101353]  ffff88010d1dbf28 ffff880059259000 ffff88010d1dbe28 ffffffff811580af
[2014-07-17 23:48:36][  369.101364]  ffff88010d1dbdc8 0000000000000296 ffff88010d1dbdb8 ffff88010d1dbdb8
[2014-07-17 23:48:36][  369.101375]  ffff88010d1dbde8 ffff880065f0f480 ffff88010a0865a0 ffff880065f06588
[2014-07-17 23:48:36][  369.101385]  ffff880065f0f3d8 0000000000000292 ffff88010d1dbe18 0000000000000292
[2014-07-17 23:48:36][  369.101396]  ffff88010d1dbf28 ffff880069c56500 ffff88010d1dbe80 ffff880069c56500
[2014-07-17 23:48:36][  369.101406]  0000000000000296 0000000000000006 ffff88010d1dbe58 ffffffff814614d9
[2014-07-17 23:48:36][  369.101417]  ffff88010d1dbe80 ffff88010d1dbe68 ffff88010d1dbeb8 ffffffffa0982355
[2014-07-17 23:48:36][  369.101427]  0000000000000001 ffff880069c56500 ffffffff8105d830 ffffffffa0984420
[2014-07-17 23:48:36][  369.101438]  ffffffffa0984420 ffffffff8113a129 0000000000000000 0000000000000000
[2014-07-17 23:48:36][  369.101448]  0000000000000000 0000000000000005 ffff88010d1dbee8 ffffffffa0982cc5
[2014-07-17 23:48:36][  369.101459]  ffff88010d1dbed8 0000000000000020
[2014-07-17 23:48:36][  369.101465] Call Trace:
[2014-07-17 23:48:36][  369.101475]  [<ffffffff811580af>] ? path_openat+0xff/0x3f0
[2014-07-17 23:48:36][  369.101482]  [<ffffffff814614d9>] schedule+0x29/0xa0
[2014-07-17 23:48:36][  369.101497]  [<ffffffffa0982355>] OS_CallUserMode+0x95/0x100 [os_rnvramdev]
[2014-07-17 23:48:36][  369.101506]  [<ffffffff8105d830>] ? wake_up_bit+0x40/0x40
[2014-07-17 23:48:36][  369.101521]  [<ffffffff8113a129>] ? kmem_cache_free+0x149/0x290
[2014-07-17 23:48:36][  369.101536]  [<ffffffffa0982cc5>] OS_RnvramDevIoctl+0x65/0x124 [os_rnvramdev]
[2014-07-17 23:48:36][  369.101546]  [<ffffffff8115b0db>] do_vfs_ioctl+0x8b/0x390
[2014-07-17 23:48:36][  369.101553]  [<ffffffff81155501>] ? putname+0x31/0x50
[2014-07-17 23:48:36][  369.101562]  [<ffffffff8115b479>] sys_ioctl+0x99/0xa0
[2014-07-17 23:48:36][  369.101569]  [<ffffffff8146b0f9>] system_call_fastpath+0x16/0x1b
[2014-07-17 23:48:36][  369.688757] net_ratelimit: 33 callbacks suppressed
[2014-07-17 23:48:36][  369.688765] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:36][  369.688773] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:36][  369.727890] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:48:36][  369.727899] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:48:36][370130][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:37][  370.077589] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:37][  370.077597] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:37][  370.077940] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:37][  370.077951] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:37][  370.188170] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:37][  370.188178] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:37][  370.490026] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:48:37][  370.490034] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:48:37][  370.577008] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:37][  370.577016] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:37][  370.577393] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:37][  370.577401] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:37][  370.687594] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:37][  370.687604] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:37][371125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:38][  371.076434] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:38][  371.076445] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:38][372120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:38][  371.870836] [93030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:38][  371.870851] [93030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:38][  371.870895] [93030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:38][  371.870904] [93030][1500003ea0054][ERR][Fail to receive message from socket (61).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:38][  371.870917] [93030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:38][2014-07-17 23:48:38,817][372120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:38][2014-07-17 23:48:38,817][372120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15750) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17099) birth-time(2014-07-17 23:48:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:38][372120][1500003e90017][INFO][Connected from (127.0.0.1:64396), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:38][372120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:38][372120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:38][372120][1500003e9001d][INFO][(127.0.0.1:64396) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:38][2014-07-17 23:48:38,817][372120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:38][2014-07-17 23:48:38,817][372120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:38][2014-07-17 23:48:38,817][372120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15750) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17099) birth-time(2014-07-17 23:48:38,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:38][372131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:39][373126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:40][374122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:41][375120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:41][  374.867038] [93780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:41][  374.867053] [93780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:41][  374.867098] [93780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:41][  374.867109] [93780][1500003ea0054][ERR][Fail to receive message from socket (62).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:41][  374.867125] [93780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:41][2014-07-17 23:48:41,817][375120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:41][2014-07-17 23:48:41,817][375120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15756) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17400) birth-time(2014-07-17 23:48:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:41][375120][1500003e90017][INFO][Connected from (127.0.0.1:64652), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:41][375120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:41][375120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:41][375120][1500003e9001d][INFO][(127.0.0.1:64652) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:41][2014-07-17 23:48:41,817][375120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:41][2014-07-17 23:48:41,817][375120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:41][2014-07-17 23:48:41,817][375120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15756) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17400) birth-time(2014-07-17 23:48:41,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:41][375127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:41][  374.968002] net_ratelimit: 31 callbacks suppressed
[2014-07-17 23:48:41][  374.968011] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:41][  374.968019] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:41][  374.968081] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:41][  374.968087] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:42][  375.071971] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:42][  375.071982] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:42][  375.072211] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:42][  375.072222] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:42][  375.073577] DRHD: handling fault status reg 502
[2014-07-17 23:48:42][  375.073587] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:48:42][  375.073590] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:42][  375.182339] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:42][  375.182346] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:42][  375.217011] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:42][  375.217018] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:42][  375.217030] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:42][  375.217036] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:42][  375.571408] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:42][  375.571415] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:42][  375.571656] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:42][  375.571664] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:42][  375.681757] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:42][  375.681764] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:42][376122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:43][377128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:44][  377.074264] DRHD: handling fault status reg 602
[2014-07-17 23:48:44][  377.074276] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:48:44][  377.074279] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:44][378120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:44][  377.863236] [94530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:44][  377.863251] [94530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:44][  377.863297] [94530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:44][  377.863306] [94530][1500003ea0054][ERR][Fail to receive message from socket (63).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:44][  377.863320] [94530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:44][2014-07-17 23:48:44,817][378120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:44][2014-07-17 23:48:44,817][378120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15789) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17700) birth-time(2014-07-17 23:48:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:44][378120][1500003e90017][INFO][Connected from (127.0.0.1:64908), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:44][378120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:44][378120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:44][378120][1500003e9001d][INFO][(127.0.0.1:64908) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:44][2014-07-17 23:48:44,817][378120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:44][2014-07-17 23:48:44,817][378120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:44][2014-07-17 23:48:44,818][378120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15789) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(17700) birth-time(2014-07-17 23:48:44,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:44][378123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:45][379129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:46][380124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:47][  380.066297] net_ratelimit: 42 callbacks suppressed
[2014-07-17 23:48:47][  380.066305] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:47][  380.066313] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:47][  380.066530] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:47][  380.066540] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:47][  380.171774] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:47][  380.171784] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:47][  380.171848] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:47][  380.171854] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:47][  380.176578] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:47][  380.176586] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:47][  380.184282] IPv4: martian source 255.255.255.255 from 100.148.92.20, on dev eth6
[2014-07-17 23:48:47][  380.184289] ll header: 00000000: ff ff ff ff ff ff 00 50 56 b9 19 d4 08 00        .......PV.....
[2014-07-17 23:48:47][  380.565730] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:47][  380.565738] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:47][  380.565955] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:47][  380.565962] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:47][  380.663088] IPv4: martian source 100.148.255.255 from 100.148.62.3, on dev eth6
[2014-07-17 23:48:47][  380.663098] ll header: 00000000: ff ff ff ff ff ff 5c f3 fc db 5a 80 08 00        ......\...Z...
[2014-07-17 23:48:47][  380.675995] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:47][  380.676004] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:47][381120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:47][  380.859416] [95280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:47][  380.859430] [95280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:47][  380.859475] [95280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:47][  380.859484] [95280][1500003ea0054][ERR][Fail to receive message from socket (64).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:47][  380.859500] [95280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:47][2014-07-17 23:48:47,817][381120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:47][2014-07-17 23:48:47,817][381120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15802) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18000) birth-time(2014-07-17 23:48:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:47][381120][1500003e90017][INFO][Connected from (127.0.0.1:65164), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:47][381120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:47][381120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:47][381120][1500003e9001d][INFO][(127.0.0.1:65164) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:47][2014-07-17 23:48:47,817][381120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:47][2014-07-17 23:48:47,817][381120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:47][2014-07-17 23:48:47,818][381120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15802) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18000) birth-time(2014-07-17 23:48:47,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:47][381129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:48][382126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:49][383121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:50][384120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:50][  383.855539] [96030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:50][  383.855548] [96030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:50][  383.855573] [96030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:50][  383.855579] [96030][1500003ea0054][ERR][Fail to receive message from socket (65).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:50][  383.855589] [96030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:50][2014-07-17 23:48:50,817][384120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:50][2014-07-17 23:48:50,817][384120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15841) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18300) birth-time(2014-07-17 23:48:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:50][384120][1500003e90017][INFO][Connected from (127.0.0.1:65420), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:50][384120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:50][384120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:50][384120][1500003e9001d][INFO][(127.0.0.1:65420) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:50][2014-07-17 23:48:50,817][384120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:50][2014-07-17 23:48:50,817][384120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:50][2014-07-17 23:48:50,817][384120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15841) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18300) birth-time(2014-07-17 23:48:50,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:50][384127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:51][385122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:52][  385.170820] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:48:52][  385.170826] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:52][  385.170831] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:52][  385.262035] IPv4: martian source 100.148.255.255 from 100.148.75.121, on dev eth6
[2014-07-17 23:48:52][  385.262042] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 e9 08 00        .......PV.....
[2014-07-17 23:48:52][  385.375542] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:52][  385.375546] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:52][  385.375621] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:52][  385.375624] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:52][  385.559949] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:52][  385.559955] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:52][  385.560292] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:52][  385.560299] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:52][  385.566795] IPv4: martian source 100.148.255.255 from 100.148.85.148, on dev eth6
[2014-07-17 23:48:52][  385.566799] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 63 08 00        .......PV..c..
[2014-07-17 23:48:52][  385.670239] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:52][  385.670243] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:52][  385.772548] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:48:52][  385.772553] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:48:52][386128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:52][  386.025015] IPv4: martian source 100.148.255.255 from 100.148.75.121, on dev eth6
[2014-07-17 23:48:52][  386.025020] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 e9 08 00        .......PV.....
[2014-07-17 23:48:53][387120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:53][  386.851712] [96780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:53][  386.851720] [96780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:53][  386.851743] [96780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:53][  386.851748] [96780][1500003ea0054][ERR][Fail to receive message from socket (66).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:53][  386.851756] [96780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:53][2014-07-17 23:48:53,817][387120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:53][2014-07-17 23:48:53,817][387120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15870) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18600) birth-time(2014-07-17 23:48:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:53][387120][1500003e90017][INFO][Connected from (127.0.0.1:141), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:53][387120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:53][387120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:53][387120][1500003e9001d][INFO][(127.0.0.1:141) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:53][2014-07-17 23:48:53,817][387120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:53][2014-07-17 23:48:53,817][387120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:53][2014-07-17 23:48:53,817][387120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15870) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18600) birth-time(2014-07-17 23:48:53,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:53][387123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:54][388128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:55][389123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:56][390120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:56][  389.847981] [97530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:56][  389.847999] [97530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:56][  389.848040] [97530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:56][  389.848049] [97530][1500003ea0054][ERR][Fail to receive message from socket (67).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:56][  389.848063] [97530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:56][2014-07-17 23:48:56,817][390120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:56][2014-07-17 23:48:56,817][390120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15891) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18900) birth-time(2014-07-17 23:48:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:56][390120][1500003e90017][INFO][Connected from (127.0.0.1:397), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:56][390120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:56][390120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:56][390120][1500003e9001d][INFO][(127.0.0.1:397) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:56][2014-07-17 23:48:56,817][390120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:56][2014-07-17 23:48:56,817][390120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:56][2014-07-17 23:48:56,817][390120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15891) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(18900) birth-time(2014-07-17 23:48:56,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:56][390129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:57][  390.368003] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:48:57][  390.368011] IPv4: martian source 100.148.255.255 from 100.148.112.200, on dev eth6
[2014-07-17 23:48:57][  390.368019] ll header: 00000000: ff ff ff ff ff ff 00 0c 29 2d 80 88 08 00        ........)-....
[2014-07-17 23:48:57][  390.554226] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:48:57][  390.554236] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:48:57][  390.554610] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:48:57][  390.554620] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:48:57][  390.579280] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:57][  390.579290] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:57][  390.579408] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:57][  390.579415] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:57][  390.580679] IPv4: martian source 100.148.255.255 from 100.148.85.183, on dev eth6
[2014-07-17 23:48:57][  390.580687] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 aa 08 00        .......PV.....
[2014-07-17 23:48:57][  390.664450] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:48:57][  390.664459] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:48:57][  390.727059] IPv4: martian source 100.148.255.255 from 100.148.85.101, on dev eth6
[2014-07-17 23:48:57][  390.727067] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 13 ed 08 00        .......PV.....
[2014-07-17 23:48:57][391124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:57][  390.906246] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:48:57][  390.906253] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:48:57][  390.906266] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:48:57][  390.906272] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:48:58][  391.077830] DRHD: handling fault status reg 702
[2014-07-17 23:48:58][  391.077840] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:48:58][  391.077843] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:48:58][392130][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:48:59][393120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:48:59][  392.844220] [98280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:48:59][  392.844234] [98280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:48:59][  392.844280] [98280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:48:59][  392.844289] [98280][1500003ea0054][ERR][Fail to receive message from socket (68).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:48:59][  392.844303] [98280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:48:59][2014-07-17 23:48:59,817][393120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:48:59][2014-07-17 23:48:59,817][393120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15931) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19200) birth-time(2014-07-17 23:48:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:59][393120][1500003e90017][INFO][Connected from (127.0.0.1:653), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:48:59][393120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:48:59][393120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:48:59][393120][1500003e9001d][INFO][(127.0.0.1:653) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:48:59][2014-07-17 23:48:59,817][393120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:48:59][2014-07-17 23:48:59,818][393120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:48:59][2014-07-17 23:48:59,818][393120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15931) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19200) birth-time(2014-07-17 23:48:59,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:48:59][393125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:00][394131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:01][395126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:02][  395.078259] DRHD: handling fault status reg 2
[2014-07-17 23:49:02][  395.078270] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:49:02][  395.078272] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:49:02][  395.548889] net_ratelimit: 62 callbacks suppressed
[2014-07-17 23:49:02][  395.548897] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:02][  395.548905] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:02][  395.658685] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:02][  395.658694] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:02][  395.700228] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:49:02][  395.700237] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:49:02][  395.783144] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:49:02][  395.783152] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:49:02][  395.783216] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:49:02][  395.783222] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:49:02][  395.813894] IPv4: martian source 100.148.255.255 from 100.148.61.41, on dev eth6
[2014-07-17 23:49:02][  395.813902] ll header: 00000000: ff ff ff ff ff ff 00 15 5d 3d 71 01 08 00        ........]=q...
[2014-07-17 23:49:02][396120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:02][  395.840394] [99030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:02][  395.840408] [99030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:02][  395.840454] [99030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:02][  395.840462] [99030][1500003ea0054][ERR][Fail to receive message from socket (69).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:02][  395.840479] [99030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:02][2014-07-17 23:49:02,817][396120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:02][2014-07-17 23:49:02,817][396120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15937) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19500) birth-time(2014-07-17 23:49:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:02][396120][1500003e90017][INFO][Connected from (127.0.0.1:909), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:02][396120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:02][396120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:02][396120][1500003e9001d][INFO][(127.0.0.1:909) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:02][2014-07-17 23:49:02,817][396120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:02][2014-07-17 23:49:02,818][396120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:02][2014-07-17 23:49:02,818][396120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15937) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19500) birth-time(2014-07-17 23:49:02,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:02][396121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:03][  396.047915] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:03][  396.047924] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:03][  396.048317] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:03][  396.048325] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:03][  396.077103] DRHD: handling fault status reg 102
[2014-07-17 23:49:03][  396.077113] DMAR:[DMA Write] Request device [03:07.2] fault addr 6daff000 
[2014-07-17 23:49:03][  396.077115] DMAR:[fault reason 02] Present bit in context entry is clear
[2014-07-17 23:49:03][  396.083753] IPv4: martian source 100.148.255.255 from 100.148.61.118, on dev eth6
[2014-07-17 23:49:03][  396.083759] ll header: 00000000: ff ff ff ff ff ff e0 24 7f 02 a1 ea 08 00        .......$......
[2014-07-17 23:49:03][  396.158104] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:03][  396.158112] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:03][397127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:04][398122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:05][399120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:05][  398.836617] [99780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:05][  398.836633] [99780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:05][  398.836673] [99780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:05][  398.836682] [99780][1500003ea0054][ERR][Fail to receive message from socket (70).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:05][  398.836708] [99780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:05][2014-07-17 23:49:05,817][399120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:05][2014-07-17 23:49:05,817][399120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15957) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19800) birth-time(2014-07-17 23:49:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:05][399120][1500003e90017][INFO][Connected from (127.0.0.1:1165), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:05][399120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:05][399120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:05][399120][1500003e9001d][INFO][(127.0.0.1:1165) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:05][2014-07-17 23:49:05,818][399120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:05][2014-07-17 23:49:05,818][399120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:05][2014-07-17 23:49:05,818][399120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15957) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(19800) birth-time(2014-07-17 23:49:05,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:05][399128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:06][400123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:07][  400.721350] net_ratelimit: 50 callbacks suppressed
[2014-07-17 23:49:07][  400.721360] IPv4: martian source 100.148.255.255 from 100.148.75.114, on dev eth6
[2014-07-17 23:49:07][  400.721368] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 b1 08 00        .......PV.....
[2014-07-17 23:49:07][401128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:07][  400.908740] IPv4: martian source 100.148.255.255 from 100.148.85.75, on dev eth6
[2014-07-17 23:49:07][  400.908752] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 12 b9 08 00        .......PV.....
[2014-07-17 23:49:07][  400.986858] IPv4: martian source 100.148.255.255 from 100.148.41.142, on dev eth6
[2014-07-17 23:49:07][  400.986865] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2e 08 00        .......++=h...
[2014-07-17 23:49:07][  400.986971] IPv4: martian source 100.148.255.255 from 100.148.31.31, on dev eth6
[2014-07-17 23:49:07][  400.986977] ll header: 00000000: ff ff ff ff ff ff 84 2b 2b 3d 68 2c 08 00        .......++=h,..
[2014-07-17 23:49:08][  401.042203] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:08][  401.042212] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:08][  401.042619] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:08][  401.042627] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:08][  401.152306] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:08][  401.152315] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:08][  401.541638] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:08][  401.541646] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:08][  401.542047] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:08][  401.542054] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:08][  401.651734] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:08][  401.651741] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:08][402120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:08][  401.832786] [100530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:08][  401.832805] [100530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:08][  401.832845] [100530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:08][  401.832854] [100530][1500003ea0054][ERR][Fail to receive message from socket (71).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:08][  401.832869] [100530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:08][2014-07-17 23:49:08,817][402120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:08][2014-07-17 23:49:08,817][402120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15986) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20100) birth-time(2014-07-17 23:49:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:08][402120][1500003e90017][INFO][Connected from (127.0.0.1:1421), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:08][402120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:08][402120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:08][402120][1500003e9001d][INFO][(127.0.0.1:1421) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:08][2014-07-17 23:49:08,817][402120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:08][2014-07-17 23:49:08,818][402120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:08][2014-07-17 23:49:08,818][402120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(15986) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20100) birth-time(2014-07-17 23:49:08,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:08][402124][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:09][403129][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:09]Accepted keyboard-interactive/pam for admin from 129.7.11.72 port 2625 ssh2
[2014-07-17 23:49:09]subsystem request for sftp by user admin
[2014-07-17 23:49:10][404125][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:11][405120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:11][  404.829009] [101280][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:11][  404.829025] [101280][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:11][  404.829064] [101280][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:11][  404.829073] [101280][1500003ea0054][ERR][Fail to receive message from socket (72).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:11][  404.829087] [101280][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:11][2014-07-17 23:49:11,817][405120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:11][2014-07-17 23:49:11,817][405120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16008) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20399) birth-time(2014-07-17 23:49:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:11][405120][1500003e90017][INFO][Connected from (127.0.0.1:1677), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:11][405120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:11][405120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:11][405120][1500003e9001d][INFO][(127.0.0.1:1677) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:11][2014-07-17 23:49:11,818][405120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:11][2014-07-17 23:49:11,818][405120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:11][2014-07-17 23:49:11,818][405120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16008) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20399) birth-time(2014-07-17 23:49:11,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:11][405131][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:12][406126][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:12][  405.962362] net_ratelimit: 36 callbacks suppressed
[2014-07-17 23:49:12][  405.962370] IPv4: martian source 100.148.255.255 from 100.148.231.78, on dev eth6
[2014-07-17 23:49:12][  405.962378] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 ac 08 00        .......PV.....
[2014-07-17 23:49:13][  406.036670] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:13][  406.036678] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:13][  406.036961] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:13][  406.036972] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:13][  406.146543] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:13][  406.146552] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:13][  406.536134] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:13][  406.536143] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:13][  406.536385] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:13][  406.536395] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:13][  406.645962] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:13][  406.645971] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:13][  406.725079] IPv4: martian source 100.148.255.255 from 100.148.231.78, on dev eth6
[2014-07-17 23:49:13][  406.725088] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 14 ac 08 00        .......PV.....
[2014-07-17 23:49:13][407121][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:13][  406.839773] IPv4: martian source 100.148.255.255 from 100.148.122.20, on dev eth6
[2014-07-17 23:49:13][  406.839781] ll header: 00000000: ff ff ff ff ff ff 00 50 56 9c 70 82 08 00        .......PV.p...
[2014-07-17 23:49:14][  407.035588] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:14][  407.035596] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:14][408120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:14][  407.825150] [102030][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:14][  407.825165] [102030][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:14][  407.825204] [102030][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:14][  407.825213] [102030][1500003ea0054][ERR][Fail to receive message from socket (73).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:14][  407.825227] [102030][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:14][2014-07-17 23:49:14,817][408120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:14][2014-07-17 23:49:14,817][408120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16016) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20700) birth-time(2014-07-17 23:49:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:14][408120][1500003e90017][INFO][Connected from (127.0.0.1:1933), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:14][408120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:14][408120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:14][408120][1500003e9001d][INFO][(127.0.0.1:1933) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:14][2014-07-17 23:49:14,817][408120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:14][2014-07-17 23:49:14,817][408120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:14][2014-07-17 23:49:14,818][408120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16016) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(20700) birth-time(2014-07-17 23:49:14,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:14][408127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:15][409122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:16][410128][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:17][411120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:17][  410.821372] [102780][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:17][  410.821386] [102780][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:17][  410.821425] [102780][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:17][  410.821434] [102780][1500003ea0054][ERR][Fail to receive message from socket (74).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:17][  410.821449] [102780][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:17][2014-07-17 23:49:17,817][411120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:17][2014-07-17 23:49:17,817][411120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16043) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(21000) birth-time(2014-07-17 23:49:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:17][411120][1500003e90017][INFO][Connected from (127.0.0.1:2189), socket (9).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:17][411120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:17][411120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:17][411120][1500003e9001d][INFO][(127.0.0.1:2189) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:17][2014-07-17 23:49:17,817][411120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:17][2014-07-17 23:49:17,818][411120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:17][2014-07-17 23:49:17,818][411120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16043) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(21000) birth-time(2014-07-17 23:49:17,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:17][411123][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:18][  411.140831] net_ratelimit: 46 callbacks suppressed
[2014-07-17 23:49:18][  411.140840] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:18][  411.140848] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:18][  411.155815] IPv4: martian source 100.148.255.255 from 100.148.85.222, on dev eth6
[2014-07-17 23:49:18][  411.155825] ll header: 00000000: ff ff ff ff ff ff 00 50 56 81 15 cb 08 00        .......PV.....
[2014-07-17 23:49:18][  411.218940] IPv4: martian source 100.148.255.255 from 100.148.174.124, on dev eth6
[2014-07-17 23:49:18][  411.218947] ll header: 00000000: ff ff ff ff ff ff 4c b1 6c 91 c7 ca 08 00        ......L.l.....
[2014-07-17 23:49:18][  411.530423] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:18][  411.530432] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:18][  411.530764] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:18][  411.530773] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:18][  411.640249] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:18][  411.640256] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:18][  411.751508] IPv4: martian source 100.148.255.255 from 100.148.81.40, on dev eth6
[2014-07-17 23:49:18][  411.751517] ll header: 00000000: ff ff ff ff ff ff 00 50 56 b8 6a a9 08 00        .......PV.j...
[2014-07-17 23:49:18][412127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:19][  412.029859] IPv4: martian source 100.148.255.255 from 100.148.91.88, on dev eth6
[2014-07-17 23:49:19][  412.029864] ll header: 00000000: ff ff ff ff ff ff 08 19 a6 28 94 6d 08 00        .........(.m..
[2014-07-17 23:49:19][  412.030196] IPv4: martian source 100.148.255.255 from 100.148.51.28, on dev eth6
[2014-07-17 23:49:19][  412.030201] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a 9d 08 00        ......p{..Z...
[2014-07-17 23:49:19][  412.139665] IPv4: martian source 100.148.255.255 from 100.148.51.33, on dev eth6
[2014-07-17 23:49:19][  412.139670] ll header: 00000000: ff ff ff ff ff ff 70 7b e8 ec 5a a5 08 00        ......p{..Z...
[2014-07-17 23:49:19][413122][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:20][414120][1500003f00095][INFO][Worker thread(Socket_IPV4_Listen) create success.][MSG_SERVER][../src/socket_server.c:SOCKETSERVER_IPV4ListenThread,516][msg_server,13584,33]
[2014-07-17 23:49:20][  413.817443] [103530][1500003ea0230][ERR][Get local NID fail!][MSG_CLNT][MSG_PackRegisterInfo,535][MSG_ClientSendT]
[2014-07-17 23:49:20][  413.817451] [103530][1500003ea0231][ERR][pack register info failed, reason(-1).][MSG_CLNT][MSG_RegisterPidToServer,567][MSG_ClientSendT]
[2014-07-17 23:49:20][  413.817477] [103530][1500003e80010][ERR][Recv data from socket failed. errno(-1)][MSG][MSG_ReceiveMsgFromSocket,218][MSG_ClientRecvM]
[2014-07-17 23:49:20][  413.817482] [103530][1500003ea0054][ERR][Fail to receive message from socket (75).][MSG_CLNT][MSG_ClientRecvMsg,429][MSG_ClientRecvM]
[2014-07-17 23:49:20][  413.817495] [103530][1500003ea008c][INFO][Disconnect from server.][MSG_CLNT][MSG_ClientRecvMsgThread,514][MSG_ClientRecvM]
[2014-07-17 23:49:20][2014-07-17 23:49:20,817][414120][0][NOTICE][Creating taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,647][msg_server,13584,34]
[2014-07-17 23:49:20][2014-07-17 23:49:20,817][414120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16089) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(21300) birth-time(2014-07-17 23:49:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:20][414120][1500003e90017][INFO][Connected from (127.0.0.1:2445), socket (10).][MSG_SERVER][../src/msg_server.c:MSG_ServerInitConnParam,823][msg_server,13584,34]
[2014-07-17 23:49:20][414120][1500003e80026][ERROR][Fail to receive message. errno(-1).][MSG_SERVER][../../../msg/msg-public/src/msg_socket_handle.c:MSG_ReceiveMsgFromSocket,212][msg_server,13584,34]
[2014-07-17 23:49:20][414120][1500003e90019][ERROR][Message server did not receive any message. bid(65535:65535), Client(0).][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,871][msg_server,13584,34]
[2014-07-17 23:49:20][414120][1500003e9001d][INFO][(127.0.0.1:2445) disconnected.][MSG_SERVER][../src/msg_server.c:MSG_ServerRecvMsgThread,920][msg_server,13584,34]
[2014-07-17 23:49:20][2014-07-17 23:49:20,817][414120][0][WARN][A self-processing task exited(34, 0x430100) with code 0!][MSG_SERVER][../src/task/df_task.c:__TSK_SelfTaskEntry,656][msg_server,13584,34]
[2014-07-17 23:49:20][2014-07-17 23:49:20,817][414120][0][NOTICE][Freeing taskcb(34)!][MSG_SERVER][../src/task/df_task.c:__TSK_FreeTaskID,347][msg_server,13584,34]
[2014-07-17 23:49:20][2014-07-17 23:49:20,817][414120][0][NOTICE][ ----Task 34:---- name(Socket_IPV4_Lis) state(0xb0b) booked(0) os-pid(16089) thread-id(0x7f451b26c700) type(1) policy(0) priority(0) stack-size(0x32000) stack-top(0x7f451b26d000) entry(0x430100) parent-tid(33) birth-tick(21300) birth-time(2014-07-17 23:49:20,817) parent-addr(0x40aa1e) msg-queue(-1)][MSG_SERVER][../src/task/df_task.c:DF_ShowTaskInfo,1053][msg_server,13584,34]
[2014-07-17 23:49:20][414127][1500003e90044][INFO][Waiting for master/slave select, Sysstate is (0).][MSG_SERVER][../src/msg_server_main.c:_MSGS_CheckStartStatus,262][msg_server,13584,73]
[2014-07-17 23:49:21]subsystem request for sftp by user admin

[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]     ` <1407732187.9800.11.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
@ 2014-08-11  8:36       ` Yijing Wang
  2014-08-11 14:59       ` Linda Knippers
  1 sibling, 0 replies; 17+ messages in thread
From: Yijing Wang @ 2014-08-11  8:36 UTC (permalink / raw)
  To: Alex Williamson
  Cc: David Woodhouse,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA, Jiang Liu

>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>  
>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>   */
>>  static __init int iommu_setup(char *p)
>>  {
>> +	char *end;
>>  	iommu_merge = 1;
>>  
>>  	if (!p)
>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>  #endif
>>  		if (!strncmp(p, "pt", 2))
>>  			iommu_pass_through = 1;
>> +		if (!strncmp(p, "pt_force=", 9)) {
>> +			iommu_pass_through = 1;
>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
> 
> Documentation/kernel-parameters.txt?

Oh, I missed it, I will update it if other guys think the patch is the right fix to the issue later.

> 
>> +		}
>>  
>>  		gart_parse_options(p);
>>  
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index d1f5caa..49757f1 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>  				return ret;
>>  		}
>>  
>> +	/* We found some strange devices in HP c7000 and other platforms that
>> +	 * can not be enumerated by OS, but they did DMA read/write without
>> +	 * driver management, so we should create the pt mapping for these
>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>> +	 * force to do pt context mapping in the bus number.
>> +	 */
> 
> So best case with this patch is that the user needs to discover that
> this option exists, figure out the undocumented parameters, be running
> on VT-d, permanently add a kernel commandline option, and never have any
> intention of assigning the device to userspace or a VM...

Hmmm, we can add some detection code in dmar fault process functions, and print
some useful messages.

> 
> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
> can the vendor fix this with a firmware update?  This device behavior is
> really quite broken for this kind of server class product.  Thanks,

Currently, I don't know how many devices have this issue. So I'm not sure
the vendor fix is a proper way to fix it. Alex, sorry, I don't understand
the firmware update to fix it? Do you mean updating the device EEPROM firmware ?

Thanks!
Yijing.


> 
> Alex
> 
>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>> +		int found = 0;
>> +
>> +		iommu = NULL;
>> +		for_each_active_iommu(iommu, drhd) {
>> +			if (iommu_pt_force_domain != drhd->segment)
>> +				continue;
>> +
>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>> +				if (!dev_is_pci(dev))
>> +					continue;
>> +
>> +				pdev = to_pci_dev(dev);
>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>> +						(pdev->subordinate
>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>> +					found = 1;
>> +					break;
>> +				}
>> +			}
>> +
>> +			if (drhd->include_all) {
>> +				found = 1;
>> +				break;
>> +			}
>> +		}
>> +
>> +		if (found && iommu)
>> +			for (i = 0; i < 256; i++)
>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>> +						CONTEXT_TT_MULTI_LEVEL);
>> +	}
>> +
>>  	return 0;
>>  }
>>  
> 
> 
> 
> 
> .
> 


-- 
Thanks!
Yijing

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]     ` <1407732187.9800.11.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
  2014-08-11  8:36       ` Yijing Wang
@ 2014-08-11 14:59       ` Linda Knippers
       [not found]         ` <53E8DA5E.8090406-VXdhtT5mjnY@public.gmane.org>
  1 sibling, 1 reply; 17+ messages in thread
From: Linda Knippers @ 2014-08-11 14:59 UTC (permalink / raw)
  To: Alex Williamson, Yijing Wang
  Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse, Jiang Liu

On 8/11/2014 12:43 AM, Alex Williamson wrote:
> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>> We found some strange devices in HP C7000 and Huawei Server. These devices
>> can not be enumerated by OS, but they still did DMA read/write without OS 
>> management. Because iommu will not create the DMA mapping for these devices,
>> the DMA read/write will be blocked by iommu hardware.
>>
>> Eg.
>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>              +-01.0-[11]--
>> 			 +-01.1-[02]--
>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>> 	         +-02.1-[12]--
>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>
>> [ 1438.477262] DRHD: handling fault status reg 402
>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>
>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>> ---
>>  arch/x86/include/asm/iommu.h |    2 ++
>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>> index 345c99c..5e3a2d8 100644
>> --- a/arch/x86/include/asm/iommu.h
>> +++ b/arch/x86/include/asm/iommu.h
>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>  extern int force_iommu, no_iommu;
>>  extern int iommu_detected;
>>  extern int iommu_pass_through;
>> +extern int iommu_pt_force_bus;
>> +extern int iommu_pt_force_domain;
>>  
>>  /* 10 seconds */
>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>> index a25e202..bf21d97 100644
>> --- a/arch/x86/kernel/pci-dma.c
>> +++ b/arch/x86/kernel/pci-dma.c
>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>   * guests and not for driver dma translation.
>>   */
>>  int iommu_pass_through __read_mostly;
>> +int iommu_pt_force_bus = -1;
>> +int iommu_pt_force_domain = -1;
>>  
>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>  
>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>   */
>>  static __init int iommu_setup(char *p)
>>  {
>> +	char *end;
>>  	iommu_merge = 1;
>>  
>>  	if (!p)
>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>  #endif
>>  		if (!strncmp(p, "pt", 2))
>>  			iommu_pass_through = 1;
>> +		if (!strncmp(p, "pt_force=", 9)) {
>> +			iommu_pass_through = 1;
>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
> 
> Documentation/kernel-parameters.txt?
> 
>> +		}
>>  
>>  		gart_parse_options(p);
>>  
>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>> index d1f5caa..49757f1 100644
>> --- a/drivers/iommu/intel-iommu.c
>> +++ b/drivers/iommu/intel-iommu.c
>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>  				return ret;
>>  		}
>>  
>> +	/* We found some strange devices in HP c7000 and other platforms that
>> +	 * can not be enumerated by OS, but they did DMA read/write without
>> +	 * driver management, so we should create the pt mapping for these
>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>> +	 * force to do pt context mapping in the bus number.
>> +	 */
> 
> So best case with this patch is that the user needs to discover that
> this option exists, figure out the undocumented parameters, be running
> on VT-d, permanently add a kernel commandline option, and never have any
> intention of assigning the device to userspace or a VM...
> 
> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
> can the vendor fix this with a firmware update?  This device behavior is
> really quite broken for this kind of server class product.  

Yeah, something doesn't sound right here.

I would like to hear more about this configuration, off list if you prefer.
What servers?  What firmware revisions?

Thanks,

-- ljk

> Thanks,
> 
> Alex
> 
>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>> +		int found = 0;
>> +
>> +		iommu = NULL;
>> +		for_each_active_iommu(iommu, drhd) {
>> +			if (iommu_pt_force_domain != drhd->segment)
>> +				continue;
>> +
>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>> +				if (!dev_is_pci(dev))
>> +					continue;
>> +
>> +				pdev = to_pci_dev(dev);
>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>> +						(pdev->subordinate
>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>> +					found = 1;
>> +					break;
>> +				}
>> +			}
>> +
>> +			if (drhd->include_all) {
>> +				found = 1;
>> +				break;
>> +			}
>> +		}
>> +
>> +		if (found && iommu)
>> +			for (i = 0; i < 256; i++)
>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>> +						CONTEXT_TT_MULTI_LEVEL);
>> +	}
>> +
>>  	return 0;
>>  }
>>  
> 
> 
> 
> _______________________________________________
> iommu mailing list
> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]         ` <53E8DA5E.8090406-VXdhtT5mjnY@public.gmane.org>
@ 2014-08-12  1:37           ` Yijing Wang
       [not found]             ` <53E96FE0.7080600-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Yijing Wang @ 2014-08-12  1:37 UTC (permalink / raw)
  To: Linda Knippers, Alex Williamson
  Cc: huaxiuxiu-hv44wF8Li93QT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse, Jiang Liu

[-- Attachment #1: Type: text/plain, Size: 6588 bytes --]

On 2014/8/11 22:59, Linda Knippers wrote:
> On 8/11/2014 12:43 AM, Alex Williamson wrote:
>> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>> management. Because iommu will not create the DMA mapping for these devices,
>>> the DMA read/write will be blocked by iommu hardware.
>>>
>>> Eg.
>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>              +-01.0-[11]--
>>> 			 +-01.1-[02]--
>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>> 	         +-02.1-[12]--
>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>
>>> [ 1438.477262] DRHD: handling fault status reg 402
>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>
>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>> ---
>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>> index 345c99c..5e3a2d8 100644
>>> --- a/arch/x86/include/asm/iommu.h
>>> +++ b/arch/x86/include/asm/iommu.h
>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>  extern int force_iommu, no_iommu;
>>>  extern int iommu_detected;
>>>  extern int iommu_pass_through;
>>> +extern int iommu_pt_force_bus;
>>> +extern int iommu_pt_force_domain;
>>>  
>>>  /* 10 seconds */
>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>> index a25e202..bf21d97 100644
>>> --- a/arch/x86/kernel/pci-dma.c
>>> +++ b/arch/x86/kernel/pci-dma.c
>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>   * guests and not for driver dma translation.
>>>   */
>>>  int iommu_pass_through __read_mostly;
>>> +int iommu_pt_force_bus = -1;
>>> +int iommu_pt_force_domain = -1;
>>>  
>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>  
>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>   */
>>>  static __init int iommu_setup(char *p)
>>>  {
>>> +	char *end;
>>>  	iommu_merge = 1;
>>>  
>>>  	if (!p)
>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>  #endif
>>>  		if (!strncmp(p, "pt", 2))
>>>  			iommu_pass_through = 1;
>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>> +			iommu_pass_through = 1;
>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>
>> Documentation/kernel-parameters.txt?
>>
>>> +		}
>>>  
>>>  		gart_parse_options(p);
>>>  
>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>> index d1f5caa..49757f1 100644
>>> --- a/drivers/iommu/intel-iommu.c
>>> +++ b/drivers/iommu/intel-iommu.c
>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>  				return ret;
>>>  		}
>>>  
>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>> +	 * driver management, so we should create the pt mapping for these
>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>> +	 * force to do pt context mapping in the bus number.
>>> +	 */
>>
>> So best case with this patch is that the user needs to discover that
>> this option exists, figure out the undocumented parameters, be running
>> on VT-d, permanently add a kernel commandline option, and never have any
>> intention of assigning the device to userspace or a VM...
>>
>> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
>> can the vendor fix this with a firmware update?  This device behavior is
>> really quite broken for this kind of server class product.  
> 
> Yeah, something doesn't sound right here.
> 
> I would like to hear more about this configuration, off list if you prefer.
> What servers?  What firmware revisions?

Hi Linda, we found this issue in HP C7000 server. I attached the dmesg and lspci info,
because the machine is in product department, so I don't know the firmware revision.

Thanks!
Yijing.


>>
>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>> +		int found = 0;
>>> +
>>> +		iommu = NULL;
>>> +		for_each_active_iommu(iommu, drhd) {
>>> +			if (iommu_pt_force_domain != drhd->segment)
>>> +				continue;
>>> +
>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>> +				if (!dev_is_pci(dev))
>>> +					continue;
>>> +
>>> +				pdev = to_pci_dev(dev);
>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>> +						(pdev->subordinate
>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>> +					found = 1;
>>> +					break;
>>> +				}
>>> +			}
>>> +
>>> +			if (drhd->include_all) {
>>> +				found = 1;
>>> +				break;
>>> +			}
>>> +		}
>>> +
>>> +		if (found && iommu)
>>> +			for (i = 0; i < 256; i++)
>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>> +						CONTEXT_TT_MULTI_LEVEL);
>>> +	}
>>> +
>>>  	return 0;
>>>  }
>>>  
>>
>>
>>
>> _______________________________________________
>> iommu mailing list
>> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>>
> 
> 
> .
> 


-- 
Thanks!
Yijing

[-- Attachment #2: lspci_vvv-hpc7.log --]
[-- Type: text/plain, Size: 232163 bytes --]

00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 0
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [144 v1] Vendor Specific Information: ID=0004 Rev=1 Len=03c <?>
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>

00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=11, subordinate=11, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #8, Speed 5GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:01.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #9, Speed 5GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled+ Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: ebd00000-ebffffff
	Prefetchable memory behind bridge: 00000000dc000000-00000000dc0fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #16, Speed 8GT/s, Width x8, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd+
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=12, subordinate=12, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2c (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 00004000-00004fff
	Memory behind bridge: ebb00000-ebcfffff
	Prefetchable memory behind bridge: 00000000dc100000-00000000dc1fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #18, Speed 8GT/s, Width x8, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x4, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
			 EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:02.3 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2d (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=13, subordinate=13, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: dc200000-dc2fffff
	Prefetchable memory behind bridge: 00000000def00000-00000000ea7fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #24, Speed 5GT/s, Width x16, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd+
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=14, subordinate=14, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3c (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=15, subordinate=15, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:03.3 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3d (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=16, subordinate=16, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:04.0 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at eacf0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.1 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 7
	Region 0: Memory at eace0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.2 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 10
	Region 0: Memory at eacd0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.3 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 10
	Region 0: Memory at eacc0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.4 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 4 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at eacb0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.5 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 5 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 7
	Region 0: Memory at eaca0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.6 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 6 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 10
	Region 0: Memory at eac90000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:04.7 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 7 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 10
	Region 0: Memory at eac80000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-

00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr+ FatalErr+ UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-

00:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Region 0: Memory at eac70000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [6c] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=18, subordinate=18, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #17, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled+ Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis- ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [88] Subsystem: Hewlett-Packard Company Device 18a9
	Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [138 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans+
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 18a9
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 21
	Region 0: Memory at eac60000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ehci_hcd
	Kernel modules: ehci-hcd

00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 1 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=08, subordinate=08, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x4, ASPM L0s L1, Latency L0 <1us, L1 <4us
			ClockPM- Surprise- LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled+ Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train+ SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 18a9
	Capabilities: [a0] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b5) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00003000-00003fff
	Memory behind bridge: ead00000-ebafffff
	Prefetchable memory behind bridge: 00000000dd000000-00000000ddffffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #8, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <1us, L1 <4us
			ClockPM- Surprise- LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
		Address: 00000000  Data: 0000
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device 18a9
	Capabilities: [a0] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Kernel driver in use: pcieport
	Kernel modules: shpchp

00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device 18a9
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Interrupt: pin A routed to IRQ 20
	Region 0: Memory at eac50000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ehci_hcd
	Kernel modules: ehci-hcd

00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=00, secondary=17, subordinate=17, sec-latency=32
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Subsystem: Hewlett-Packard Company Device 18a9

00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05)
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Capabilities: [e0] Vendor Specific Information: Len=0c <?>
	Kernel modules: iTCO_wdt

01:00.0 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Slave Instrumentation & System Support (rev 05)
	Subsystem: Hewlett-Packard Company iLO4
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: I/O ports at 3000 [size=256]
	Region 1: Memory at ebaf0000 (32-bit, non-prefetchable) [size=512]
	Region 2: I/O ports at 3400 [size=256]
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [b0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <4us, L1 <4us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: hpwdt
	Kernel modules: hpwdt

01:00.1 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200EH (prog-if 00 [VGA controller])
	Subsystem: Hewlett-Packard Company iLO4
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 7
	Region 0: Memory at dd000000 (32-bit, prefetchable) [size=16M]
	Region 1: Memory at ebae0000 (32-bit, non-prefetchable) [size=16K]
	Region 2: Memory at eb000000 (32-bit, non-prefetchable) [size=8M]
	Expansion ROM at <unassigned> [disabled]
	Capabilities: [a8] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [b0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <4us, L1 <4us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel modules: mgag200

01:00.2 System peripheral: Hewlett-Packard Company Integrated Lights-Out Standard Management Processor Support and Messaging (rev 05)
	Subsystem: Hewlett-Packard Company iLO4
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 16
	Region 0: I/O ports at 3800 [size=256]
	Region 1: Memory at eaff0000 (32-bit, non-prefetchable) [size=256]
	Region 2: Memory at eae00000 (32-bit, non-prefetchable) [size=1M]
	Region 3: Memory at ead80000 (32-bit, non-prefetchable) [size=512K]
	Region 4: Memory at ead70000 (32-bit, non-prefetchable) [size=32K]
	Region 5: Memory at ead60000 (32-bit, non-prefetchable) [size=32K]
	[virtual] Expansion ROM at ead00000 [disabled] [size=64K]
	Capabilities: [78] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [b0] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [c0] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <4us, L1 <4us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: hpilo
	Kernel modules: hpilo

01:00.4 USB controller: Hewlett-Packard Company Integrated Lights-Out Standard Virtual USB Controller (rev 02) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company iLO4
	Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 16
	Region 4: I/O ports at 3c00 [size=32]
	Capabilities: [70] MSI: Enable- Count=1/1 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [80] Express (v1) Legacy Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s, Latency L0 <4us, L1 <4us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [f0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: uhci_hcd
	Kernel modules: uhci-hcd

03:00.0 RAID bus controller: Hewlett-Packard Company Smart Array Gen8 Controllers (rev 01)
	Subsystem: Hewlett-Packard Company P220i
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 34
	Region 0: Memory at ebc00000 (64-bit, non-prefetchable) [size=1M]
	Region 2: Memory at ebbf0000 (64-bit, non-prefetchable) [size=1K]
	Region 4: I/O ports at 4000 [size=256]
	[virtual] Expansion ROM at dc100000 [disabled] [size=512K]
	Capabilities: [80] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [90] MSI: Enable- Count=1/32 Maskable+ 64bit+
		Address: 0000000000000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [b0] MSI-X: Enable+ Count=64 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <1us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM unknown, Latency L0 unlimited, L1 <64us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 8GT/s, Width x4, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range B, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
			 EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest-
	Capabilities: [100 v2] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [300 v1] #19
	Kernel driver in use: hpsa
	Kernel modules: hpsa

04:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 32
	Region 0: Memory at ebff0000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebfc0000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebfa0000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc000000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, NIC PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 0
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 42 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy+
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 00
		VF offset: 0, stride: 1, Device ID: 0710
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 1
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2net
	Kernel modules: be2net

04:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 36
	Region 0: Memory at ebf90000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebf60000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebf40000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc040000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable+ Count=32 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable+ Non-Fatal+ Fatal+ Unsupported+
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, NIC PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 1
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 42 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 01
		VF offset: 0, stride: 1, Device ID: 0710
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 2
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2net
	Kernel modules: be2net

04:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 37
	Region 0: Memory at ebf30000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebf00000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebee0000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc080000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, iSCSI PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 0
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 40 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 02
		VF offset: 0, stride: 1, Device ID: 0712
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 3
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2iscsi
	Kernel modules: be2iscsi

04:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
	Subsystem: Hewlett-Packard Company Device 337b
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 38
	Region 0: Memory at ebed0000 (64-bit, non-prefetchable) [size=16K]
	Region 2: Memory at ebea0000 (64-bit, non-prefetchable) [size=128K]
	Region 4: Memory at ebe80000 (64-bit, non-prefetchable) [size=128K]
	[virtual] Expansion ROM at dc0c0000 [disabled] [size=256K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI+ D1- D2- AuxCurrent=375mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [48] MSI-X: Enable- Count=8 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [c0] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <1us, L1 <16us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <2us, L1 <16us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b8] Vital Product Data
		Product Name: 647586-B21, iSCSI PF
		Read-only fields:
			[PN] Part number: 647584-001
			[SN] Serial number: H3534360ZX
			[V0] Vendor specific: VA00000000
			[EC] Engineering changes: A-5120
			[FN] Unknown: 36 34 39 39 34 30 2d 30 30 31 0d
			[VA] Vendor specific: 649940-001\x0d
			[VB] Vendor specific: PW=10W; PCIE X8 GEN 2
			[V1] Vendor specific: HP FlexFabric 10Gb 2-port 554FLB Adapter
			[V2] Vendor specific: 554FLB
			[V4] Vendor specific: 1
			[V5] Vendor specific: OCl11102-F4-HP
			[V6] Vendor specific: A0:1,D0:1
			[RV] Reserved: checksum good, 40 byte(s) reserved
		End
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [180 v1] Single Root I/O Virtualization (SR-IOV)
		IOVCap:	Migration-, Interrupt Message Number: 000
		IOVCtl:	Enable- Migration- Interrupt- MSE- ARIHierarchy-
		IOVSta:	Migration-
		Initial VFs: 0, Total VFs: 0, Number of VFs: 0, Function Dependency Link: 03
		VF offset: 0, stride: 1, Device ID: 0712
		Supported Page Size: 00000557, System Page Size: 00000001
		Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)
		VF Migration: offset: 00000000, BIR: 0
	Capabilities: [160 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 0
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [168 v1] Device Serial Number f0-92-1c-ff-fe-16-8d-48
	Capabilities: [12c v1] Transaction Processing Hints
		No steering table available
	Kernel driver in use: be2iscsi
	Kernel modules: be2iscsi

05:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM57810 10 Gigabit Ethernet (rev 10)
	Subsystem: Hewlett-Packard Company Device 17a5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 40
	Region 0: Memory at ea000000 (64-bit, prefetchable) [size=8M]
	Region 2: Memory at e9800000 (64-bit, prefetchable) [size=8M]
	Region 4: Memory at e97f0000 (64-bit, prefetchable) [size=64K]
	[virtual] Expansion ROM at def00000 [disabled] [size=256K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] Vital Product Data
		Product Name: HP Flex-10 10Gb 2-port 530M Adapter
		Read-only fields:
			[PN] Part number: 631882-001
			[EC] Engineering changes: A
			[MN] Manufacture ID: 31 30 33 43
			[V0] Vendor specific: 12W PCIeGen3
			[V1] Vendor specific: N/A
			[V2] Vendor specific: 01234
			[V3] Vendor specific: 7.0.49
			[V6] Vendor specific: 7.0.51
			[RV] Reserved: checksum good, 243 byte(s) reserved
		End
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00001000
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <1us, L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number a0-d3-c1-ff-fe-f5-06-18
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [1b8 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 1
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [220 v1] #15
	Capabilities: [300 v1] #19
	Kernel driver in use: bnx2x
	Kernel modules: bnx2x

05:00.1 Ethernet controller: Broadcom Corporation NetXtreme II BCM57810 10 Gigabit Ethernet (rev 10)
	Subsystem: Hewlett-Packard Company Device 17a5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 44
	Region 0: Memory at e8800000 (64-bit, prefetchable) [size=8M]
	Region 2: Memory at e8000000 (64-bit, prefetchable) [size=8M]
	Region 4: Memory at e7ff0000 (64-bit, prefetchable) [size=64K]
	[virtual] Expansion ROM at def40000 [disabled] [size=256K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] Vital Product Data
		Product Name: HP Flex-10 10Gb 2-port 530M Adapter
		Read-only fields:
			[PN] Part number: 631882-001
			[EC] Engineering changes: A
			[MN] Manufacture ID: 31 30 33 43
			[V0] Vendor specific: 12W PCIeGen3
			[V1] Vendor specific: N/A
			[V2] Vendor specific: 01234
			[V3] Vendor specific: 7.0.49
			[V6] Vendor specific: 7.0.51
			[RV] Reserved: checksum good, 243 byte(s) reserved
		End
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00001000
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <1us, L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number a0-d3-c1-ff-fe-f5-06-1c
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [1b8 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 2
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [220 v1] #15
	Kernel driver in use: bnx2x
	Kernel modules: bnx2x

1f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:08.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v0] Vendor Specific Information: ID=0001 Rev=0 Len=0f0 <?>

1f:08.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:09.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v0] Vendor Specific Information: ID=0001 Rev=0 Len=0f0 <?>

1f:09.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.3 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0d.3 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

1f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

1f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

1f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:10.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

1f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

1f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

1f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

1f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

1f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

1f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

20:00.0 PCI bridge: Intel Corporation Xeon E5/Core i7 DMI2 in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
	Bus: primary=20, secondary=2d, subordinate=2d, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis+ ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=24, subordinate=24, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:01.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=25, subordinate=25, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:02.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2a (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=26, subordinate=26, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:02.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=27, subordinate=27, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:02.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2c (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=28, subordinate=28, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:02.3 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 2d (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=29, subordinate=29, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=21, subordinate=21, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: ec000000-ec0fffff
	Prefetchable memory behind bridge: 00000000eff00000-00000000fb7fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag+ RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #24, Speed 5GT/s, Width x16, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd+
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:03.1 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3b (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=2a, subordinate=2a, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot+
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:03.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3c (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=2b, subordinate=2b, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:03.3 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3d (rev 07) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Bus: primary=20, secondary=2c, subordinate=2c, sec-latency=0
	I/O behind bridge: 0000f000-00000fff
	Memory behind bridge: fff00000-000fffff
	Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [40] Subsystem: Hewlett-Packard Company Device 18a8
	Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
		Address: 00000000  Data: 0000
		Masking: 00000000  Pending: 00000000
	Capabilities: [90] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 256 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 8GT/s, Width x4, ASPM L1, Latency L0 unlimited, L1 <16us
			ClockPM- Surprise+ LLActRep+ BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x0, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
		RootCap: CRSVisible-
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range BCD, TimeoutDis+ ARIFwd+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
		LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
	Capabilities: [110 v1] Access Control Services
		ACSCap:	SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
		ACSCtl:	SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
	Capabilities: [148 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
	Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
	Capabilities: [250 v1] #19
	Capabilities: [280 v1] Vendor Specific Information: ID=0004 Rev=2 Len=018 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp

20:04.0 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at fbff0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.1 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 7
	Region 0: Memory at fbfe0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.2 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 10
	Region 0: Memory at fbfd0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.3 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 10
	Region 0: Memory at fbfc0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.4 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 4 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 5
	Region 0: Memory at fbfb0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.5 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 5 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 7
	Region 0: Memory at fbfa0000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.6 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 6 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin C routed to IRQ 10
	Region 0: Memory at fbf90000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:04.7 System peripheral: Intel Corporation Xeon E5/Core i7 DMA Channel 7 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin D routed to IRQ 10
	Region 0: Memory at fbf80000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [80] MSI-X: Enable- Count=1 Masked-
		Vector table: BAR=0 offset=00002000
		PBA: BAR=0 offset=00003000
	Capabilities: [90] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [e0] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

20:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-

20:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr+ FatalErr+ UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-

20:05.4 PIC: Intel Corporation Xeon E5/Core i7 I/O APIC (rev 07) (prog-if 20 [IO(X)-APIC])
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Region 0: Memory at fbf70000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [6c] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-

21:00.0 Ethernet controller: Broadcom Corporation NetXtreme II BCM57810 10 Gigabit Ethernet (rev 10)
	Subsystem: Hewlett-Packard Company Device 17a5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 64
	Region 0: Memory at fb000000 (64-bit, prefetchable) [size=8M]
	Region 2: Memory at fa800000 (64-bit, prefetchable) [size=8M]
	Region 4: Memory at fa7f0000 (64-bit, prefetchable) [size=64K]
	[virtual] Expansion ROM at eff00000 [disabled] [size=256K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] Vital Product Data
		Product Name: HP Flex-10 10Gb 2-port 530M Adapter
		Read-only fields:
			[PN] Part number: 631882-001
			[EC] Engineering changes: A
			[MN] Manufacture ID: 31 30 33 43
			[V0] Vendor specific: 12W PCIeGen3
			[V1] Vendor specific: N/A
			[V2] Vendor specific: 01234
			[V3] Vendor specific: 7.0.49
			[V6] Vendor specific: 7.0.51
			[RV] Reserved: checksum good, 243 byte(s) reserved
		End
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00001000
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <1us, L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number 2c-44-fd-ff-fe-8d-ff-88
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [1b8 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 1
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [220 v1] #15
	Capabilities: [300 v1] #19
	Kernel driver in use: bnx2x
	Kernel modules: bnx2x

21:00.1 Ethernet controller: Broadcom Corporation NetXtreme II BCM57810 10 Gigabit Ethernet (rev 10)
	Subsystem: Hewlett-Packard Company Device 17a5
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 68
	Region 0: Memory at f9800000 (64-bit, prefetchable) [size=8M]
	Region 2: Memory at f9000000 (64-bit, prefetchable) [size=8M]
	Region 4: Memory at f8ff0000 (64-bit, prefetchable) [size=64K]
	[virtual] Expansion ROM at eff40000 [disabled] [size=256K]
	Capabilities: [48] Power Management version 3
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold-)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
	Capabilities: [50] Vital Product Data
		Product Name: HP Flex-10 10Gb 2-port 530M Adapter
		Read-only fields:
			[PN] Part number: 631882-001
			[EC] Engineering changes: A
			[MN] Manufacture ID: 31 30 33 43
			[V0] Vendor specific: 12W PCIeGen3
			[V1] Vendor specific: N/A
			[V2] Vendor specific: 01234
			[V3] Vendor specific: 7.0.49
			[V6] Vendor specific: 7.0.51
			[RV] Reserved: checksum good, 243 byte(s) reserved
		End
	Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
		Address: 0000000000000000  Data: 0000
	Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00001000
	Capabilities: [ac] Express (v2) Endpoint, MSI 00
		DevCap:	MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
			ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal+ Fatal+ Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr+ NoSnoop+
			MaxPayload 256 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-
		LnkCap:	Port #0, Speed 5GT/s, Width x8, ASPM L0s L1, Latency L0 <1us, L1 <2us
			ClockPM+ Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-
		UESvrt:	DLP- SDES+ TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [13c v1] Device Serial Number 2c-44-fd-ff-fe-8d-ff-8c
	Capabilities: [150 v1] Power Budgeting <?>
	Capabilities: [160 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [1b8 v1] Alternative Routing-ID Interpretation (ARI)
		ARICap:	MFVC- ACS-, Next Function: 2
		ARICtl:	MFVC- ACS-, Function Group: 0
	Capabilities: [220 v1] #15
	Kernel driver in use: bnx2x
	Kernel modules: bnx2x

3f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:08.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v0] Vendor Specific Information: ID=0001 Rev=0 Len=0f0 <?>

3f:08.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:09.3 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Capabilities: [100 v0] Vendor Specific Information: ID=0001 Rev=0 Len=0f0 <?>

3f:09.4 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link Reut 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.3 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0d.3 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

3f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

3f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

3f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:10.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

3f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
	Kernel driver in use: snbep_uncore

3f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [40] Express (v1) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
			ExtTag- RBE- FLReset-
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
			ClockPM- Surprise- LLActRep- BwNot-
		LnkCtl:	ASPM Disabled; Disabled- Retrain- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-

3f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

3f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

3f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore

3f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07)
	Subsystem: Hewlett-Packard Company Device 18a8
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: snbep_uncore


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: dmesg-IOMMU.log --]
[-- Type: text/plain; charset="gb18030"; name="dmesg-IOMMU.log", Size: 256851 bytes --]

izing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.0.93-0.8-default (geeko@buildhost)  #1 SMP Tue Aug 27 08:44:18 UTC 2013 (70ed288)
[    0.000000] Command line: noexec=on nmi_watchdog=1 pci=realloc console=tty0 console=ttyS0,115200 crashkernel=192M@48M nohz=off highres=on intel_iommu=on selinux=0 hpet=verbose audit=1 elevator=noop hugepages=100 hugepagesz=1G default_hugepagesz=1G
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009cc00 (usable)
[    0.000000]  BIOS-e820: 000000000009cc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000bddac000 (usable)
[    0.000000]  BIOS-e820: 00000000bddac000 - 00000000bddde000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bddde000 - 00000000d0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fee10000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 000000203ffff000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: HP ProLiant BL460c Gen8, BIOS I31 09/18/2013
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x203ffff max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   1 disabled
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] last_pfn = 0xbddac max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000f4f80] f4f80
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000bddac000
[    0.000000]  0000000000 - 0080000000 page 1G
[    0.000000]  0080000000 - 00bdc00000 page 2M
[    0.000000]  00bdc00000 - 00bddac000 page 4k
[    0.000000] kernel direct mapping tables up to 0xbddabfff @ [mem 0x1fffd000-0x1fffffff]
[    0.000000] init_memory_mapping: 0000000100000000-000000203ffff000
[    0.000000]  0100000000 - 2000000000 page 1G
[    0.000000]  2000000000 - 203fe00000 page 2M
[    0.000000]  203fe00000 - 203ffff000 page 4k
[    0.000000] kernel direct mapping tables up to 0x203fffefff @ [mem 0xbdda9000-0xbddabfff]
[    0.000000] nmi ring buffer: 262144
[    0.000000] RAMDISK: 37ab7000 - 37ff0000
[    0.000000] Reserving 192MB of memory at 48MB for crashkernel (System RAM: 132095MB)
[    0.000000] ACPI: RSDP 00000000000f4f00 00024 (v02 HP    )
[    0.000000] ACPI: XSDT 00000000bddaed00 000EC (v01 HP     ProLiant 00000002   Ò? 0000162E)
[    0.000000] ACPI: FACP 00000000bddaee40 000F4 (v03 HP     ProLiant 00000002   Ò? 0000162E)
[    0.000000] ACPI Warning: Invalid length for Pm1aControlBlock: 32, using default 16 (20110413/tbfadt-611)
[    0.000000] ACPI Warning: Invalid length for Pm2ControlBlock: 32, using default 8 (20110413/tbfadt-611)
[    0.000000] ACPI: DSDT 00000000bddaef40 026DC (v01 HP         DSDT 00000001 INTL 20030228)
[    0.000000] ACPI: FACS 00000000bddac140 00040
[    0.000000] ACPI: SPCR 00000000bddac180 00050 (v01 HP     SPCRRBSU 00000001   Ò? 0000162E)
[    0.000000] ACPI: MCFG 00000000bddac200 0003C (v01 HP     ProLiant 00000001      00000000)
[    0.000000] ACPI: HPET 00000000bddac240 00038 (v01 HP     ProLiant 00000002   Ò? 0000162E)
[    0.000000] ACPI: FFFF 00000000bddac280 00064 (v02 HP     ProLiant 00000002   Ò? 0000162E)
[    0.000000] ACPI: SPMI 00000000bddac300 00040 (v05 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: ERST 00000000bddac340 00230 (v01 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: APIC 00000000bddac580 0026A (v01 HP     ProLiant 00000002      00000000)
[    0.000000] ACPI: SRAT 00000000bddac800 00750 (v01 HP     Proliant 00000001   Ò? 0000162E)
[    0.000000] ACPI: FFFF 00000000bddacf80 00176 (v01 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: BERT 00000000bddad100 00030 (v01 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: HEST 00000000bddad140 000BC (v01 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: DMAR 00000000bddad200 0060C (v01 HP     ProLiant 00000001   Ò? 0000162E)
[    0.000000] ACPI: FFFF 00000000bddaec40 00030 (v01 HP     ProLiant 00000001      00000000)
[    0.000000] ACPI: PCCT 00000000bddaec80 0006E (v01 HP     Proliant 00000001   PH 0000504D)
[    0.000000] ACPI: SSDT 00000000bddb1640 007EA (v01     HP DEV_PCI1 00000001 INTL 20120503)
[    0.000000] ACPI: SSDT 00000000bddb1e40 00166 (v03     HP  CRSPCI0 00000002   HP 00000001)
[    0.000000] ACPI: SSDT 00000000bddb1fc0 000C7 (v03     HP  CRSPCI1 00000002   HP 00000001)
[    0.000000] ACPI: SSDT 00000000bddb20c0 00413 (v03     HP embedded 00000002 INTL 20030228)
[    0.000000] ACPI: SSDT 00000000bddb2500 0038A (v02     HP   riser0 00000002 INTL 20030228)
[    0.000000] ACPI: SSDT 00000000bddb28c0 00263 (v03     HP embedde2 00000002 INTL 20030228)
[    0.000000] ACPI: SSDT 00000000bddb2b40 00BB9 (v01     HP      pcc 00000001 INTL 20120503)
[    0.000000] ACPI: SSDT 00000000bddb3700 00377 (v01     HP     pmab 00000001 INTL 20120503)
[    0.000000] ACPI: SSDT 00000000bddb3a80 05524 (v01     HP     pcc2 00000001 INTL 20120503)
[    0.000000] ACPI: SSDT 00000000bddb8fc0 04E84 (v01 INTEL  PPM RCM  00000001 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0f -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2d -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2e -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2f -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 0-1040000000
[    0.000000] SRAT: Node 1 PXM 1 1040000000-2040000000
[    0.000000] Initmem setup node 0 0000000000000000-0000001040000000
[    0.000000]   NODE_DATA [000000103ffd9000 - 000000103fffffff]
[    0.000000] Initmem setup node 1 0000001040000000-000000203ffff000
[    0.000000]   NODE_DATA [000000203ff98080 - 000000203ffbf07f]
[    0.000000]  [ffffea0000000000-ffffea0038dfffff] PMD -> [ffff880fffe00000-ffff881037dfffff] on node 0
[    0.000000]  [ffffea0038e00000-ffffea0070dfffff] PMD -> [ffff881fff600000-ffff8820375fffff] on node 1
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x0203ffff
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009c
[    0.000000]     0: 0x00000100 -> 0x000bddac
[    0.000000]     0: 0x00100000 -> 0x01040000
[    0.000000]     1: 0x01040000 -> 0x0203ffff
[    0.000000] On node 0 totalpages: 16768312
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3919 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 759268 pages, LIFO batch:31
[    0.000000]   Normal zone: 218624 pages used for memmap
[    0.000000]   Normal zone: 15772160 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 16777215
[    0.000000]   Normal zone: 229376 pages used for memmap
[    0.000000]   Normal zone: 16547839 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x908
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x28] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x2a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x2c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x2e] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x29] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x2b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x2d] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x2f] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec10000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 0, version 32, address 0xfec10000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 64 CPUs, 32 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000
[    0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000bddac000 - 00000000bddde000
[    0.000000] PM: Registered nosave memory: 00000000bddde000 - 00000000d0000000
[    0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fee10000
[    0.000000] PM: Registered nosave memory: 00000000fee10000 - 00000000ff800000
[    0.000000] PM: Registered nosave memory: 00000000ff800000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:2ec00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:4096 nr_cpumask_bits:64 nr_cpu_ids:64 nr_node_ids:2
[    0.000000] PERCPU: Embedded 26 pages/cpu @ffff88103fa00000 s75264 r8192 d23040 u131072
[    0.000000] pcpu-alloc: s75264 r8192 d23040 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 16 17 18 19 20 21 22 23 
[    0.000000] pcpu-alloc: [0] 32 34 36 38 40 42 44 46 48 50 52 54 56 58 60 62 
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 24 25 26 27 28 29 30 31 
[    0.000000] pcpu-alloc: [1] 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 33083186
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: noexec=on nmi_watchdog=1 pci=realloc console=tty0 console=ttyS0,115200 crashkernel=192M@48M nohz=off highres=on intel_iommu=on selinux=0 hpet=verbose audit=1 elevator=noop hugepages=100 hugepagesz=1G default_hugepagesz=1G
[    0.000000] Intel-IOMMU: enabled
[    0.000000] audit: enabled (after initialization)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.000000] Memory: 132054084k/135266300k available (4524k kernel code, 1084192k absent, 2128024k reserved, 7613k data, 1364k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] NR_IRQS:262400 nr_irqs:2008 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] allocated 1073741824 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet: hpet_enable(921):
[    0.000000] hpet: ID: 0x8086a701, PERIOD: 0x429b17f
[    0.000000] hpet: CFG: 0x0, STATUS: 0x0
[    0.000000] hpet: COUNTER_l: 0x0, COUNTER_h: 0x0
[    0.000000] hpet: T0: CFG_l: 0x8030, CFG_h: 0xf00000
[    0.000000] hpet: T0: CMP_l: 0xffffffff, CMP_h: 0xffffffff
[    0.000000] hpet: T0 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T1: CFG_l: 0x8000, CFG_h: 0xf00000
[    0.000000] hpet: T1: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T1 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T2: CFG_l: 0x8000, CFG_h: 0xf00800
[    0.000000] hpet: T2: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T2 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T3: CFG_l: 0x8000, CFG_h: 0xf01000
[    0.000000] hpet: T3: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T3 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T4: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T4: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T4 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T5: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T5: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T5 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T6: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T6: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T6 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T7: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T7: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T7 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: hpet_enable(960):
[    0.000000] hpet: ID: 0x8086a701, PERIOD: 0x429b17f
[    0.000000] hpet: CFG: 0x0, STATUS: 0x0
[    0.000000] hpet: COUNTER_l: 0x0, COUNTER_h: 0x0
[    0.000000] hpet: T0: CFG_l: 0x8030, CFG_h: 0xf00000
[    0.000000] hpet: T0: CMP_l: 0xffffffff, CMP_h: 0xffffffff
[    0.000000] hpet: T0 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T1: CFG_l: 0x8000, CFG_h: 0xf00000
[    0.000000] hpet: T1: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T1 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T2: CFG_l: 0x8000, CFG_h: 0xf00800
[    0.000000] hpet: T2: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T2 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T3: CFG_l: 0x8000, CFG_h: 0xf01000
[    0.000000] hpet: T3: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T3 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T4: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T4: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T4 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T5: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T5: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T5 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T6: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T6: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T6 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T7: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T7: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T7 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: hpet_set_mode(401):
[    0.000000] hpet: ID: 0x8086a701, PERIOD: 0x429b17f
[    0.000000] hpet: CFG: 0x3, STATUS: 0x0
[    0.000000] hpet: COUNTER_l: 0xed54, COUNTER_h: 0x0
[    0.000000] hpet: T0: CFG_l: 0x813c, CFG_h: 0xf00000
[    0.000000] hpet: T0: CMP_l: 0x1c417, CMP_h: 0x0
[    0.000000] hpet: T0 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T1: CFG_l: 0x8000, CFG_h: 0xf00000
[    0.000000] hpet: T1: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T1 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T2: CFG_l: 0x8000, CFG_h: 0xf00800
[    0.000000] hpet: T2: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T2 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T3: CFG_l: 0x8000, CFG_h: 0xf01000
[    0.000000] hpet: T3: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T3 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T4: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T4: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T4 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T5: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T5: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T5 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T6: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T6: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T6 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet: T7: CFG_l: 0xc000, CFG_h: 0x0
[    0.000000] hpet: T7: CMP_l: 0xffffffff, CMP_h: 0x0
[    0.000000] hpet: T7 ROUTE_l: 0x0, ROUTE_h: 0x0
[    0.000000] hpet clockevent registered
[    0.004000] Fast TSC calibration using PIT
[    0.008000] Detected 2600.105 MHz processor.
[    0.000026] Calibrating delay loop (skipped), value calculated using timer frequency.. 5200.21 BogoMIPS (lpj=10400420)
[    0.003556] pid_max: default: 65536 minimum: 512
[    0.005254] kdb version 4.4 by Keith Owens, Scott Lurndal. Copyright SGI, All Rights Reserved
[    0.015635] Security Framework initialized
[    0.017022] AppArmor: AppArmor initialized
[    0.024811] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes)
[    0.050370] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.062929] Mount-cache hash table entries: 256
[    0.064916] Initializing cgroup subsys cpuacct
[    0.066379] Initializing cgroup subsys memory
[    0.067910] Initializing cgroup subsys devices
[    0.069336] Initializing cgroup subsys freezer
[    0.070766] Initializing cgroup subsys net_cls
[    0.072232] Initializing cgroup subsys blkio
[    0.073988] Initializing cgroup subsys perf_event
[    0.075556] CPU: Physical Processor ID: 0
[    0.076938] CPU: Processor Core ID: 0
[    0.078160] ENERGY_PERF_BIAS: Is set to 'performance'
[    0.078161] ENERGY_PERF_BIAS: View and update with cpupower-set(8)
[    0.083074] mce: CPU supports 20 MCE banks
[    0.084443] CPU0: Thermal monitoring enabled (TM1)
[    0.085997] using mwait in idle threads.
[    0.088022] ACPI: Core revision 20110413
[    0.094037] DMAR: Host address width 46
[    0.095347] DMAR: DRHD base: 0x000000f8efe000 flags: 0x0
[    0.097030] IOMMU 0: reg_base_addr f8efe000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.099513] DMAR: DRHD base: 0x000000f1ffe000 flags: 0x1
[    0.101202] IOMMU 1: reg_base_addr f1ffe000 ver 1:0 cap d2078c106f0462 ecap f020fe
[    0.103623] DMAR: RMRR base: 0x000000bdffd000 end: 0x000000bdffffff
[    0.105551] DMAR: RMRR base: 0x000000bdff6000 end: 0x000000bdffcfff
[    0.107517] DMAR: RMRR base: 0x000000bdf83000 end: 0x000000bdf84fff
[    0.109430] DMAR: RMRR base: 0x000000bdf7f000 end: 0x000000bdf82fff
[    0.111343] DMAR: RMRR base: 0x000000bdf6f000 end: 0x000000bdf7efff
[    0.113345] DMAR: RMRR base: 0x000000bdf6e000 end: 0x000000bdf6efff
[    0.115382] DMAR: RMRR base: 0x000000000f4000 end: 0x000000000f4fff
[    0.117362] DMAR: RMRR base: 0x000000000e8000 end: 0x000000000e8fff
[    0.119326] DMAR: RMRR base: 0x000000bddde000 end: 0x000000bdddefff
[    0.121268] DMAR: ATSR flags: 0x0
[    0.122512] IOAPIC id 10 under DRHD base  0xf8efe000 IOMMU 0
[    0.124273] IOAPIC id 8 under DRHD base  0xf1ffe000 IOMMU 1
[    0.126000] IOAPIC id 0 under DRHD base  0xf1ffe000 IOMMU 1
[    0.127705] HPET id 0 under DRHD base 0xf1ffe000
[    0.129262] BIOS requests to not use x2apic
[    0.129262] Use 'intremap=no_x2apic_optout' to override BIOS request
[    0.133253] Enabled IRQ remapping in xapic mode
[    0.135842] x2apic not enabled, IRQ remapping is in xapic mode
[    0.138028] Switched APIC routing to physical flat.
[    0.140253] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.181870] CPU0: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz stepping 07
[    0.288744] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Broken BIOS detected, complain to your hardware vendor.
[    0.292977] [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 330)
[    0.295383] Intel PMU driver.
[    0.297378] ... version:                3
[    0.299494] ... bit width:              48
[    0.300830] ... generic registers:      4
[    0.302153] ... value mask:             0000ffffffffffff
[    0.303863] ... max period:             000000007fffffff
[    0.305521] ... fixed-purpose events:   3
[    0.306915] ... event mask:             000000070000000f
[    0.309579] NMI watchdog enabled, takes one hw-pmu counter.
[    0.311642] Booting Node   0, Processors  #1
[    0.313502] smpboot cpu 1: start_ip = 97000
[    0.348751] NMI watchdog enabled, takes one hw-pmu counter.
[    0.350869]  #2
[    0.351452] smpboot cpu 2: start_ip = 97000
[    0.383213] NMI watchdog enabled, takes one hw-pmu counter.
[    0.385247]  #3
[    0.385799] smpboot cpu 3: start_ip = 97000
[    0.417645] NMI watchdog enabled, takes one hw-pmu counter.
[    0.420129]  #4
[    0.420696] smpboot cpu 4: start_ip = 97000
[    0.452507] NMI watchdog enabled, takes one hw-pmu counter.
[    0.455964]  #5
[    0.456521] smpboot cpu 5: start_ip = 97000
[    0.487828] NMI watchdog enabled, takes one hw-pmu counter.
[    0.489838]  #6
[    0.490397] smpboot cpu 6: start_ip = 97000
[    0.521704] NMI watchdog enabled, takes one hw-pmu counter.
[    0.523715]  #7
[    0.524295] smpboot cpu 7: start_ip = 97000
[    0.555608] NMI watchdog enabled, takes one hw-pmu counter.
[    0.557657]  Ok.
[    0.558352] Booting Node   1, Processors  #8
[    0.559726] smpboot cpu 8: start_ip = 97000
[    0.719882] NMI watchdog enabled, takes one hw-pmu counter.
[    0.721937]  #9
[    0.722501] smpboot cpu 9: start_ip = 97000
[    0.754300] NMI watchdog enabled, takes one hw-pmu counter.
[    0.757008]  #10
[    0.757619] smpboot cpu 10: start_ip = 97000
[    0.789397] NMI watchdog enabled, takes one hw-pmu counter.
[    0.791362]  #11
[    0.791939] smpboot cpu 11: start_ip = 97000
[    0.823715] NMI watchdog enabled, takes one hw-pmu counter.
[    0.825676]  #12
[    0.826269] smpboot cpu 12: start_ip = 97000
[    0.858060] NMI watchdog enabled, takes one hw-pmu counter.
[    0.860045]  #13
[    0.860685] smpboot cpu 13: start_ip = 97000
[    0.892395] NMI watchdog enabled, takes one hw-pmu counter.
[    0.895570]  #14
[    0.896315] smpboot cpu 14: start_ip = 97000
[    0.928003] NMI watchdog enabled, takes one hw-pmu counter.
[    0.929996]  #15
[    0.930709] smpboot cpu 15: start_ip = 97000
[    1.010911] NMI watchdog enabled, takes one hw-pmu counter.
[    1.013140]  Ok.
[    1.013806] Booting Node   0, Processors  #16
[    1.015185] smpboot cpu 16: start_ip = 97000
[    1.046591] NMI watchdog enabled, takes one hw-pmu counter.
[    1.048546]  #17
[    1.049134] smpboot cpu 17: start_ip = 97000
[    1.080451] NMI watchdog enabled, takes one hw-pmu counter.
[    1.082402]  #18
[    1.082990] smpboot cpu 18: start_ip = 97000
[    1.114310] NMI watchdog enabled, takes one hw-pmu counter.
[    1.117121]  #19
[    1.117816] smpboot cpu 19: start_ip = 97000
[    1.149596] NMI watchdog enabled, takes one hw-pmu counter.
[    1.151631]  #20
[    1.152192] smpboot cpu 20: start_ip = 97000
[    1.183499] NMI watchdog enabled, takes one hw-pmu counter.
[    1.185426]  #21
[    1.186334] smpboot cpu 21: start_ip = 97000
[    1.217693] NMI watchdog enabled, takes one hw-pmu counter.
[    1.219833]  #22
[    1.220820] smpboot cpu 22: start_ip = 97000
[    1.252138] NMI watchdog enabled, takes one hw-pmu counter.
[    1.254101]  #23
[    1.254775] smpboot cpu 23: start_ip = 97000
[    1.286097] NMI watchdog enabled, takes one hw-pmu counter.
[    1.288116]  Ok.
[    1.288815] Booting Node   1, Processors  #24
[    1.290273] smpboot cpu 24: start_ip = 97000
[    1.321950] NMI watchdog enabled, takes one hw-pmu counter.
[    1.323881]  #25
[    1.324468] smpboot cpu 25: start_ip = 97000
[    1.356250] NMI watchdog enabled, takes one hw-pmu counter.
[    1.358443]  #26
[    1.359023] smpboot cpu 26: start_ip = 97000
[    1.390816] NMI watchdog enabled, takes one hw-pmu counter.
[    1.392761]  #27
[    1.393374] smpboot cpu 27: start_ip = 97000
[    1.425149] NMI watchdog enabled, takes one hw-pmu counter.
[    1.427225]  #28
[    1.427945] smpboot cpu 28: start_ip = 97000
[    1.508236] NMI watchdog enabled, takes one hw-pmu counter.
[    1.510279]  #29
[    1.510863] smpboot cpu 29: start_ip = 97000
[    1.542641] NMI watchdog enabled, takes one hw-pmu counter.
[    1.544568]  #30
[    1.545152] smpboot cpu 30: start_ip = 97000
[    1.576835] NMI watchdog enabled, takes one hw-pmu counter.
[    1.578792]  #31
[    1.579400] smpboot cpu 31: start_ip = 97000
[    1.611105] NMI watchdog enabled, takes one hw-pmu counter.
[    1.612962] Brought up 32 CPUs
[    1.613997] Total of 32 processors activated (166447.04 BogoMIPS).
[    1.652288] devtmpfs: initialized
[    1.671378] print_constraints: dummy: 
[    1.673056] Time: 14:28:29  Date: 07/17/14
[    1.674629] NET: Registered protocol family 16
[    1.676758] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    1.680011] ACPI: bus type pci registered
[    1.681461] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[    1.684467] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
[    1.715128] PCI: Using configuration type 1 for base access
[    1.724208] bio: create slab <bio-0> at 0
[    1.727029] ACPI: EC: Look up EC in DSDT
[    1.738070] ACPI: Interpreter enabled
[    1.739932] ACPI: (supports S0 S4 S5)
[    1.741502] ACPI: Using IOAPIC for interrupt routing
[    1.748758] ACPI: No dock devices found.
[    1.750147] HEST: Table parsing has been initialized.
[    1.752173] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.755108] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-1f])
[    1.757132] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xf7ffffff]
[    1.759525] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xf7ffffff]
[    1.761846] pci_root PNP0A08:00: host bridge window [io  0x1000-0x7fff]
[    1.763982] pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
[    1.766064] pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
[    1.768554] pci_root PNP0A08:00: host bridge window [io  0x0d00-0x0fff]
[    1.771161] pci_root PNP0A08:00: host bridge window [mem 0xfed00000-0xfed03fff]
[    1.773505] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[    1.775962] pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03bb]
[    1.779131] pci_root PNP0A08:00: host bridge window [io  0x03c0-0x03df]
[    1.781353] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    1.784097] pci_root PNP0A08:00: host bridge window expanded to [mem 0xf0000000-0xf7ffffff]; [mem 0xf0000000-0xf7ffffff] ignored
[    1.787711] pci 0000:00:00.0: [8086:3c00] type 0 class 0x000600
[    1.787765] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.787768] pci 0000:00:00.0: PME# disabled
[    1.787793] pci 0000:00:01.0: [8086:3c02] type 1 class 0x000604
[    1.787853] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.787856] pci 0000:00:01.0: PME# disabled
[    1.787882] pci 0000:00:01.1: [8086:3c03] type 1 class 0x000604
[    1.787941] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.787945] pci 0000:00:01.1: PME# disabled
[    1.787978] pci 0000:00:02.0: [8086:3c04] type 1 class 0x000604
[    1.788037] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.788040] pci 0000:00:02.0: PME# disabled
[    1.788065] pci 0000:00:02.1: [8086:3c05] type 1 class 0x000604
[    1.788124] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    1.788127] pci 0000:00:02.1: PME# disabled
[    1.788155] pci 0000:00:02.2: [8086:3c06] type 1 class 0x000604
[    1.788214] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.788217] pci 0000:00:02.2: PME# disabled
[    1.788243] pci 0000:00:02.3: [8086:3c07] type 1 class 0x000604
[    1.788302] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    1.788305] pci 0000:00:02.3: PME# disabled
[    1.788335] pci 0000:00:03.0: [8086:3c08] type 1 class 0x000604
[    1.788394] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.788397] pci 0000:00:03.0: PME# disabled
[    1.788422] pci 0000:00:03.1: [8086:3c09] type 1 class 0x000604
[    1.788481] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    1.788484] pci 0000:00:03.1: PME# disabled
[    1.788511] pci 0000:00:03.2: [8086:3c0a] type 1 class 0x000604
[    1.788570] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.788573] pci 0000:00:03.2: PME# disabled
[    1.788607] pci 0000:00:03.3: [8086:3c0b] type 1 class 0x000604
[    1.788666] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    1.788669] pci 0000:00:03.3: PME# disabled
[    1.788698] pci 0000:00:04.0: [8086:3c20] type 0 class 0x000880
[    1.788711] pci 0000:00:04.0: reg 10: [mem 0xf6cf0000-0xf6cf3fff 64bit]
[    1.788786] pci 0000:00:04.1: [8086:3c21] type 0 class 0x000880
[    1.788798] pci 0000:00:04.1: reg 10: [mem 0xf6ce0000-0xf6ce3fff 64bit]
[    1.788872] pci 0000:00:04.2: [8086:3c22] type 0 class 0x000880
[    1.788885] pci 0000:00:04.2: reg 10: [mem 0xf6cd0000-0xf6cd3fff 64bit]
[    1.788961] pci 0000:00:04.3: [8086:3c23] type 0 class 0x000880
[    1.788974] pci 0000:00:04.3: reg 10: [mem 0xf6cc0000-0xf6cc3fff 64bit]
[    1.789048] pci 0000:00:04.4: [8086:3c24] type 0 class 0x000880
[    1.789061] pci 0000:00:04.4: reg 10: [mem 0xf6cb0000-0xf6cb3fff 64bit]
[    1.789135] pci 0000:00:04.5: [8086:3c25] type 0 class 0x000880
[    1.789148] pci 0000:00:04.5: reg 10: [mem 0xf6ca0000-0xf6ca3fff 64bit]
[    1.789222] pci 0000:00:04.6: [8086:3c26] type 0 class 0x000880
[    1.789234] pci 0000:00:04.6: reg 10: [mem 0xf6c90000-0xf6c93fff 64bit]
[    1.789309] pci 0000:00:04.7: [8086:3c27] type 0 class 0x000880
[    1.789322] pci 0000:00:04.7: reg 10: [mem 0xf6c80000-0xf6c83fff 64bit]
[    1.789394] pci 0000:00:05.0: [8086:3c28] type 0 class 0x000880
[    1.789470] pci 0000:00:05.2: [8086:3c2a] type 0 class 0x000880
[    1.789540] pci 0000:00:05.4: [8086:3c2c] type 0 class 0x000800
[    1.789552] pci 0000:00:05.4: reg 10: [mem 0xf6c70000-0xf6c70fff]
[    1.789626] pci 0000:00:11.0: [8086:1d3e] type 1 class 0x000604
[    1.789714] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    1.789718] pci 0000:00:11.0: PME# disabled
[    1.789770] pci 0000:00:1a.0: [8086:1d2d] type 0 class 0x000c03
[    1.789789] pci 0000:00:1a.0: reg 10: [mem 0xf6c60000-0xf6c603ff]
[    1.789875] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.789879] pci 0000:00:1a.0: PME# disabled
[    1.789901] pci 0000:00:1c.0: [8086:1d10] type 1 class 0x000604
[    1.789976] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.789979] pci 0000:00:1c.0: PME# disabled
[    1.790008] pci 0000:00:1c.7: [8086:1d1e] type 1 class 0x000604
[    1.790075] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    1.790078] pci 0000:00:1c.7: PME# disabled
[    1.790104] pci 0000:00:1d.0: [8086:1d26] type 0 class 0x000c03
[    1.790124] pci 0000:00:1d.0: reg 10: [mem 0xf6c50000-0xf6c503ff]
[    1.790210] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.790213] pci 0000:00:1d.0: PME# disabled
[    1.790232] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    1.790292] pci 0000:00:1f.0: [8086:1d41] type 0 class 0x000601
[    1.790440] pci 0000:00:01.0: PCI bridge to [bus 11-11]
[    1.792116] pci 0000:00:01.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.792119] pci 0000:00:01.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.792124] pci 0000:00:01.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.792161] pci 0000:00:01.1: PCI bridge to [bus 02-02]
[    1.793862] pci 0000:00:01.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.793865] pci 0000:00:01.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.793870] pci 0000:00:01.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.793935] pci 0000:04:00.0: [19a2:0710] type 0 class 0x000200
[    1.793950] pci 0000:04:00.0: reg 10: [mem 0xf7ff0000-0xf7ff3fff 64bit]
[    1.793962] pci 0000:04:00.0: reg 18: [mem 0xf7fc0000-0xf7fdffff 64bit]
[    1.793974] pci 0000:04:00.0: reg 20: [mem 0xf7fa0000-0xf7fbffff 64bit]
[    1.793983] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.794024] pci 0000:04:00.0: PME# supported from D3hot D3cold
[    1.794028] pci 0000:04:00.0: PME# disabled
[    1.794069] pci 0000:04:00.1: [19a2:0710] type 0 class 0x000200
[    1.794084] pci 0000:04:00.1: reg 10: [mem 0xf7f90000-0xf7f93fff 64bit]
[    1.794096] pci 0000:04:00.1: reg 18: [mem 0xf7f60000-0xf7f7ffff 64bit]
[    1.794108] pci 0000:04:00.1: reg 20: [mem 0xf7f40000-0xf7f5ffff 64bit]
[    1.794117] pci 0000:04:00.1: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.794157] pci 0000:04:00.1: PME# supported from D3hot D3cold
[    1.794161] pci 0000:04:00.1: PME# disabled
[    1.794195] pci 0000:04:00.2: [19a2:0712] type 0 class 0x000180
[    1.794210] pci 0000:04:00.2: reg 10: [mem 0xf7f30000-0xf7f33fff 64bit]
[    1.794222] pci 0000:04:00.2: reg 18: [mem 0xf7f00000-0xf7f1ffff 64bit]
[    1.794235] pci 0000:04:00.2: reg 20: [mem 0xf7ee0000-0xf7efffff 64bit]
[    1.794243] pci 0000:04:00.2: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.794284] pci 0000:04:00.2: PME# supported from D3hot D3cold
[    1.794287] pci 0000:04:00.2: PME# disabled
[    1.794321] pci 0000:04:00.3: [19a2:0712] type 0 class 0x000180
[    1.794336] pci 0000:04:00.3: reg 10: [mem 0xf7ed0000-0xf7ed3fff 64bit]
[    1.794349] pci 0000:04:00.3: reg 18: [mem 0xf7ea0000-0xf7ebffff 64bit]
[    1.794361] pci 0000:04:00.3: reg 20: [mem 0xf7e80000-0xf7e9ffff 64bit]
[    1.794369] pci 0000:04:00.3: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.794410] pci 0000:04:00.3: PME# supported from D3hot D3cold
[    1.794413] pci 0000:04:00.3: PME# disabled
[    1.801474] pci 0000:00:02.0: PCI bridge to [bus 04-04]
[    1.803186] pci 0000:00:02.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.803190] pci 0000:00:02.0:   bridge window [mem 0xf7d00000-0xf7ffffff]
[    1.803195] pci 0000:00:02.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.803232] pci 0000:00:02.1: PCI bridge to [bus 12-12]
[    1.804853] pci 0000:00:02.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.804857] pci 0000:00:02.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.804861] pci 0000:00:02.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.804923] pci 0000:03:00.0: [103c:323b] type 0 class 0x000104
[    1.804933] pci 0000:03:00.0: reg 10: [mem 0xf7c00000-0xf7cfffff 64bit]
[    1.804941] pci 0000:03:00.0: reg 18: [mem 0xf7bf0000-0xf7bf03ff 64bit]
[    1.804947] pci 0000:03:00.0: reg 20: [io  0x4000-0x40ff]
[    1.804956] pci 0000:03:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
[    1.804982] pci 0000:03:00.0: PME# supported from D0 D1 D3hot
[    1.804984] pci 0000:03:00.0: PME# disabled
[    1.809438] pci 0000:00:02.2: PCI bridge to [bus 03-03]
[    1.812241] pci 0000:00:02.2:   bridge window [io  0x4000-0x4fff]
[    1.812244] pci 0000:00:02.2:   bridge window [mem 0xf7b00000-0xf7cfffff]
[    1.812249] pci 0000:00:02.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.812287] pci 0000:00:02.3: PCI bridge to [bus 13-13]
[    1.814529] pci 0000:00:02.3:   bridge window [io  0xf000-0x0000] (disabled)
[    1.814532] pci 0000:00:02.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.814537] pci 0000:00:02.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.814589] pci 0000:05:00.0: [14e4:168e] type 0 class 0x000200
[    1.814601] pci 0000:05:00.0: reg 10: [mem 0xf6000000-0xf67fffff 64bit pref]
[    1.814611] pci 0000:05:00.0: reg 18: [mem 0xf5800000-0xf5ffffff 64bit pref]
[    1.814621] pci 0000:05:00.0: reg 20: [mem 0xf57f0000-0xf57fffff 64bit pref]
[    1.814628] pci 0000:05:00.0: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.814665] pci 0000:05:00.0: PME# supported from D0 D3hot
[    1.814668] pci 0000:05:00.0: PME# disabled
[    1.814703] pci 0000:05:00.1: [14e4:168e] type 0 class 0x000200
[    1.814715] pci 0000:05:00.1: reg 10: [mem 0xf4800000-0xf4ffffff 64bit pref]
[    1.814725] pci 0000:05:00.1: reg 18: [mem 0xf4000000-0xf47fffff 64bit pref]
[    1.814735] pci 0000:05:00.1: reg 20: [mem 0xf3ff0000-0xf3ffffff 64bit pref]
[    1.814742] pci 0000:05:00.1: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.814779] pci 0000:05:00.1: PME# supported from D0 D3hot
[    1.814782] pci 0000:05:00.1: PME# disabled
[    1.821408] pci 0000:00:03.0: PCI bridge to [bus 05-05]
[    1.823115] pci 0000:00:03.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.823119] pci 0000:00:03.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.823124] pci 0000:00:03.0:   bridge window [mem 0xf3f00000-0xf67fffff 64bit pref]
[    1.823162] pci 0000:00:03.1: PCI bridge to [bus 14-14]
[    1.825470] pci 0000:00:03.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.825474] pci 0000:00:03.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.825479] pci 0000:00:03.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.825516] pci 0000:00:03.2: PCI bridge to [bus 15-15]
[    1.827171] pci 0000:00:03.2:   bridge window [io  0xf000-0x0000] (disabled)
[    1.827174] pci 0000:00:03.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.827179] pci 0000:00:03.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.827238] pci 0000:00:03.3: PCI bridge to [bus 16-16]
[    1.829252] pci 0000:00:03.3:   bridge window [io  0xf000-0x0000] (disabled)
[    1.829255] pci 0000:00:03.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.829260] pci 0000:00:03.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.829324] pci 0000:00:11.0: PCI bridge to [bus 18-18]
[    1.830952] pci 0000:00:11.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.830956] pci 0000:00:11.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.830962] pci 0000:00:11.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.831021] pci 0000:00:1c.0: PCI bridge to [bus 08-08]
[    1.832632] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.832636] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.832642] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.832718] pci 0000:01:00.0: [103c:3306] type 0 class 0x000880
[    1.832737] pci 0000:01:00.0: reg 10: [io  0x3000-0x30ff]
[    1.832751] pci 0000:01:00.0: reg 14: [mem 0xf7af0000-0xf7af01ff]
[    1.832765] pci 0000:01:00.0: reg 18: [io  0x3400-0x34ff]
[    1.832923] pci 0000:01:00.1: [102b:0533] type 0 class 0x000300
[    1.832942] pci 0000:01:00.1: reg 10: [mem 0xf2000000-0xf2ffffff pref]
[    1.832956] pci 0000:01:00.1: reg 14: [mem 0xf7ae0000-0xf7ae3fff]
[    1.832970] pci 0000:01:00.1: reg 18: [mem 0xf7000000-0xf77fffff]
[    1.833134] pci 0000:01:00.2: [103c:3307] type 0 class 0x000880
[    1.833153] pci 0000:01:00.2: reg 10: [io  0x3800-0x38ff]
[    1.833167] pci 0000:01:00.2: reg 14: [mem 0xf6ff0000-0xf6ff00ff]
[    1.833181] pci 0000:01:00.2: reg 18: [mem 0xf6e00000-0xf6efffff]
[    1.833195] pci 0000:01:00.2: reg 1c: [mem 0xf6d80000-0xf6dfffff]
[    1.833209] pci 0000:01:00.2: reg 20: [mem 0xf6d70000-0xf6d77fff]
[    1.833222] pci 0000:01:00.2: reg 24: [mem 0xf6d60000-0xf6d67fff]
[    1.833237] pci 0000:01:00.2: reg 30: [mem 0x00000000-0x0000ffff pref]
[    1.833303] pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
[    1.833307] pci 0000:01:00.2: PME# disabled
[    1.833349] pci 0000:01:00.4: [103c:3300] type 0 class 0x000c03
[    1.833420] pci 0000:01:00.4: reg 20: [io  0x3c00-0x3c1f]
[    1.841383] pci 0000:00:1c.7: PCI bridge to [bus 01-01]
[    1.843063] pci 0000:00:1c.7:   bridge window [io  0x3000-0x3fff]
[    1.843066] pci 0000:00:1c.7:   bridge window [mem 0xf6d00000-0xf7afffff]
[    1.843071] pci 0000:00:1c.7:   bridge window [mem 0xf2000000-0xf2ffffff 64bit pref]
[    1.843135] pci 0000:00:1e.0: PCI bridge to [bus 17-17] (subtractive decode)
[    1.846050] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.846054] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.846059] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.846061] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf7ffffff] (subtractive decode)
[    1.846064] pci 0000:00:1e.0:   bridge window [io  0x1000-0x7fff] (subtractive decode)
[    1.846066] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    1.846068] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    1.846070] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x0fff] (subtractive decode)
[    1.846072] pci 0000:00:1e.0:   bridge window [mem 0xfed00000-0xfed03fff] (subtractive decode)
[    1.846074] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[    1.846076] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03bb] (subtractive decode)
[    1.846078] pci 0000:00:1e.0:   bridge window [io  0x03c0-0x03df] (subtractive decode)
[    1.846080] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    1.846131] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    1.846135] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.846302] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IPT1._PRT]
[    1.846497] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IPT8._PRT]
[    1.846548] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.VRP1._PRT]
[    1.846593] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT1A._PRT]
[    1.846637] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT1B._PRT]
[    1.846679] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT2A._PRT]
[    1.846759] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT2B._PRT]
[    1.846804] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT2C._PRT]
[    1.846847] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT2D._PRT]
[    1.846890] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT3A._PRT]
[    1.847059] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT3B._PRT]
[    1.847101] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT3C._PRT]
[    1.847144] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PT3D._PRT]
[    1.847246]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.849112]  pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x00
[    1.851765] ACPI _OSC control for PCIe not granted, disabling ASPM
[    1.860864] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 20-3f])
[    1.862942] pci_root PNP0A08:01: host bridge window [mem 0xf8000000-0xfbffffff]
[    1.865349] pci_root PNP0A08:01: host bridge window [mem 0xf8000000-0xfbffffff]
[    1.867764] pci_root PNP0A08:01: host bridge window [io  0x8000-0xffff]
[    1.869967] pci_root PNP0A08:01: host bridge window expanded to [mem 0xf8000000-0xfbffffff]; [mem 0xf8000000-0xfbffffff] ignored
[    1.873517] pci 0000:20:00.0: [8086:3c01] type 1 class 0x000604
[    1.873584] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold
[    1.873588] pci 0000:20:00.0: PME# disabled
[    1.873635] pci 0000:20:01.0: [8086:3c02] type 1 class 0x000604
[    1.873702] pci 0000:20:01.0: PME# supported from D0 D3hot D3cold
[    1.873705] pci 0000:20:01.0: PME# disabled
[    1.873734] pci 0000:20:01.1: [8086:3c03] type 1 class 0x000604
[    1.873800] pci 0000:20:01.1: PME# supported from D0 D3hot D3cold
[    1.873804] pci 0000:20:01.1: PME# disabled
[    1.873839] pci 0000:20:02.0: [8086:3c04] type 1 class 0x000604
[    1.873905] pci 0000:20:02.0: PME# supported from D0 D3hot D3cold
[    1.873908] pci 0000:20:02.0: PME# disabled
[    1.873937] pci 0000:20:02.1: [8086:3c05] type 1 class 0x000604
[    1.874003] pci 0000:20:02.1: PME# supported from D0 D3hot D3cold
[    1.874007] pci 0000:20:02.1: PME# disabled
[    1.874037] pci 0000:20:02.2: [8086:3c06] type 1 class 0x000604
[    1.874103] pci 0000:20:02.2: PME# supported from D0 D3hot D3cold
[    1.874106] pci 0000:20:02.2: PME# disabled
[    1.874136] pci 0000:20:02.3: [8086:3c07] type 1 class 0x000604
[    1.874204] pci 0000:20:02.3: PME# supported from D0 D3hot D3cold
[    1.874207] pci 0000:20:02.3: PME# disabled
[    1.874241] pci 0000:20:03.0: [8086:3c08] type 1 class 0x000604
[    1.874307] pci 0000:20:03.0: PME# supported from D0 D3hot D3cold
[    1.874310] pci 0000:20:03.0: PME# disabled
[    1.874340] pci 0000:20:03.1: [8086:3c09] type 1 class 0x000604
[    1.874406] pci 0000:20:03.1: PME# supported from D0 D3hot D3cold
[    1.874409] pci 0000:20:03.1: PME# disabled
[    1.874439] pci 0000:20:03.2: [8086:3c0a] type 1 class 0x000604
[    1.874505] pci 0000:20:03.2: PME# supported from D0 D3hot D3cold
[    1.874508] pci 0000:20:03.2: PME# disabled
[    1.874539] pci 0000:20:03.3: [8086:3c0b] type 1 class 0x000604
[    1.874605] pci 0000:20:03.3: PME# supported from D0 D3hot D3cold
[    1.874608] pci 0000:20:03.3: PME# disabled
[    1.874641] pci 0000:20:04.0: [8086:3c20] type 0 class 0x000880
[    1.874655] pci 0000:20:04.0: reg 10: [mem 0xfbff0000-0xfbff3fff 64bit]
[    1.874738] pci 0000:20:04.1: [8086:3c21] type 0 class 0x000880
[    1.874752] pci 0000:20:04.1: reg 10: [mem 0xfbfe0000-0xfbfe3fff 64bit]
[    1.874835] pci 0000:20:04.2: [8086:3c22] type 0 class 0x000880
[    1.874849] pci 0000:20:04.2: reg 10: [mem 0xfbfd0000-0xfbfd3fff 64bit]
[    1.874932] pci 0000:20:04.3: [8086:3c23] type 0 class 0x000880
[    1.874946] pci 0000:20:04.3: reg 10: [mem 0xfbfc0000-0xfbfc3fff 64bit]
[    1.875028] pci 0000:20:04.4: [8086:3c24] type 0 class 0x000880
[    1.875042] pci 0000:20:04.4: reg 10: [mem 0xfbfb0000-0xfbfb3fff 64bit]
[    1.875125] pci 0000:20:04.5: [8086:3c25] type 0 class 0x000880
[    1.875139] pci 0000:20:04.5: reg 10: [mem 0xfbfa0000-0xfbfa3fff 64bit]
[    1.875224] pci 0000:20:04.6: [8086:3c26] type 0 class 0x000880
[    1.875237] pci 0000:20:04.6: reg 10: [mem 0xfbf90000-0xfbf93fff 64bit]
[    1.875321] pci 0000:20:04.7: [8086:3c27] type 0 class 0x000880
[    1.875334] pci 0000:20:04.7: reg 10: [mem 0xfbf80000-0xfbf83fff 64bit]
[    1.875416] pci 0000:20:05.0: [8086:3c28] type 0 class 0x000880
[    1.875496] pci 0000:20:05.2: [8086:3c2a] type 0 class 0x000880
[    1.875575] pci 0000:20:05.4: [8086:3c2c] type 0 class 0x000800
[    1.875587] pci 0000:20:05.4: reg 10: [mem 0xfbf70000-0xfbf70fff]
[    1.875705] pci 0000:20:00.0: PCI bridge to [bus 2d-2d]
[    1.877439] pci 0000:20:00.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.877443] pci 0000:20:00.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.877448] pci 0000:20:00.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.877489] pci 0000:20:01.0: PCI bridge to [bus 24-24]
[    1.879232] pci 0000:20:01.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.879235] pci 0000:20:01.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.879241] pci 0000:20:01.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.879289] pci 0000:20:01.1: PCI bridge to [bus 25-25]
[    1.880918] pci 0000:20:01.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.880922] pci 0000:20:01.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.880927] pci 0000:20:01.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.880969] pci 0000:20:02.0: PCI bridge to [bus 26-26]
[    1.883913] pci 0000:20:02.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.883917] pci 0000:20:02.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.883922] pci 0000:20:02.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.883963] pci 0000:20:02.1: PCI bridge to [bus 27-27]
[    1.885634] pci 0000:20:02.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.885638] pci 0000:20:02.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.885643] pci 0000:20:02.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.885684] pci 0000:20:02.2: PCI bridge to [bus 28-28]
[    1.888409] pci 0000:20:02.2:   bridge window [io  0xf000-0x0000] (disabled)
[    1.888413] pci 0000:20:02.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.888419] pci 0000:20:02.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.888460] pci 0000:20:02.3: PCI bridge to [bus 29-29]
[    1.890163] pci 0000:20:02.3:   bridge window [io  0xf000-0x0000] (disabled)
[    1.890167] pci 0000:20:02.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.890172] pci 0000:20:02.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.890230] pci 0000:21:00.0: [14e4:168e] type 0 class 0x000200
[    1.890243] pci 0000:21:00.0: reg 10: [mem 0xfb000000-0xfb7fffff 64bit pref]
[    1.890253] pci 0000:21:00.0: reg 18: [mem 0xfa800000-0xfaffffff 64bit pref]
[    1.890264] pci 0000:21:00.0: reg 20: [mem 0xfa7f0000-0xfa7fffff 64bit pref]
[    1.890271] pci 0000:21:00.0: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.890312] pci 0000:21:00.0: PME# supported from D0 D3hot
[    1.890315] pci 0000:21:00.0: PME# disabled
[    1.890354] pci 0000:21:00.1: [14e4:168e] type 0 class 0x000200
[    1.890367] pci 0000:21:00.1: reg 10: [mem 0xf9800000-0xf9ffffff 64bit pref]
[    1.890377] pci 0000:21:00.1: reg 18: [mem 0xf9000000-0xf97fffff 64bit pref]
[    1.890388] pci 0000:21:00.1: reg 20: [mem 0xf8ff0000-0xf8ffffff 64bit pref]
[    1.890396] pci 0000:21:00.1: reg 30: [mem 0x00000000-0x0003ffff pref]
[    1.890436] pci 0000:21:00.1: PME# supported from D0 D3hot
[    1.890439] pci 0000:21:00.1: PME# disabled
[    1.897246] pci 0000:20:03.0: PCI bridge to [bus 21-21]
[    1.899826] pci 0000:20:03.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.899830] pci 0000:20:03.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.899835] pci 0000:20:03.0:   bridge window [mem 0xf8f00000-0xfb7fffff 64bit pref]
[    1.899877] pci 0000:20:03.1: PCI bridge to [bus 2a-2a]
[    1.901677] pci 0000:20:03.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.901680] pci 0000:20:03.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.901686] pci 0000:20:03.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.901727] pci 0000:20:03.2: PCI bridge to [bus 2b-2b]
[    1.903426] pci 0000:20:03.2:   bridge window [io  0xf000-0x0000] (disabled)
[    1.903429] pci 0000:20:03.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.903434] pci 0000:20:03.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.903475] pci 0000:20:03.3: PCI bridge to [bus 2c-2c]
[    1.905122] pci 0000:20:03.3:   bridge window [io  0xf000-0x0000] (disabled)
[    1.905125] pci 0000:20:03.3:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.905131] pci 0000:20:03.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.905182] pci_bus 0000:20: on NUMA node 1 (pxm 1)
[    1.905185] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT]
[    1.905271] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT1A._PRT]
[    1.905316] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT1B._PRT]
[    1.905360] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT2A._PRT]
[    1.905402] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT2B._PRT]
[    1.905444] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT2C._PRT]
[    1.905486] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT2D._PRT]
[    1.905528] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT3A._PRT]
[    1.905960] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT3B._PRT]
[    1.906004] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT3C._PRT]
[    1.906062] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1.PT3D._PRT]
[    1.906157]  pci0000:20: Requesting ACPI _OSC control (0x1d)
[    1.908187]  pci0000:20: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x00
[    1.910853] ACPI _OSC control for PCIe not granted, disabling ASPM
[    1.915916] ACPI: PCI Interrupt Link [LNKA] (IRQs *5 7 10 11)
[    1.918264] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11)
[    1.920644] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 *10 11)
[    1.923702] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 *10 11)
[    1.926091] ACPI: PCI Interrupt Link [LNKE] (IRQs *5 7 10 11)
[    1.928635] ACPI: PCI Interrupt Link [LNKF] (IRQs 5 *7 10 11)
[    1.931020] ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 10 11) *0, disabled.
[    1.935497] ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 10 11) *0, disabled.
[    1.938883] vgaarb: device added: PCI:0000:01:00.1,decodes=io+mem,owns=io+mem,locks=none
[    1.941590] vgaarb: loaded
[    1.942803] PCI: Using ACPI for IRQ routing
[    1.945028] PCI: Discovered peer bus 1f
[    1.946347] pci 0000:1f:08.0: [8086:3c80] type 0 class 0x000880
[    1.946386] pci 0000:1f:08.3: [8086:3c83] type 0 class 0x000880
[    1.946431] pci 0000:1f:08.4: [8086:3c84] type 0 class 0x000880
[    1.946481] pci 0000:1f:09.0: [8086:3c90] type 0 class 0x000880
[    1.946517] pci 0000:1f:09.3: [8086:3c93] type 0 class 0x000880
[    1.946563] pci 0000:1f:09.4: [8086:3c94] type 0 class 0x000880
[    1.946613] pci 0000:1f:0a.0: [8086:3cc0] type 0 class 0x000880
[    1.946644] pci 0000:1f:0a.1: [8086:3cc1] type 0 class 0x000880
[    1.946674] pci 0000:1f:0a.2: [8086:3cc2] type 0 class 0x000880
[    1.946704] pci 0000:1f:0a.3: [8086:3cd0] type 0 class 0x000880
[    1.946736] pci 0000:1f:0b.0: [8086:3ce0] type 0 class 0x000880
[    1.946765] pci 0000:1f:0b.3: [8086:3ce3] type 0 class 0x000880
[    1.946795] pci 0000:1f:0c.0: [8086:3ce8] type 0 class 0x000880
[    1.946824] pci 0000:1f:0c.1: [8086:3ce8] type 0 class 0x000880
[    1.946852] pci 0000:1f:0c.2: [8086:3ce8] type 0 class 0x000880
[    1.946881] pci 0000:1f:0c.3: [8086:3ce8] type 0 class 0x000880
[    1.946911] pci 0000:1f:0c.6: [8086:3cf4] type 0 class 0x000880
[    1.946940] pci 0000:1f:0c.7: [8086:3cf6] type 0 class 0x000880
[    1.946969] pci 0000:1f:0d.0: [8086:3ce8] type 0 class 0x000880
[    1.947000] pci 0000:1f:0d.1: [8086:3ce8] type 0 class 0x000880
[    1.947029] pci 0000:1f:0d.2: [8086:3ce8] type 0 class 0x000880
[    1.947059] pci 0000:1f:0d.3: [8086:3ce8] type 0 class 0x000880
[    1.947088] pci 0000:1f:0d.6: [8086:3cf5] type 0 class 0x000880
[    1.947118] pci 0000:1f:0e.0: [8086:3ca0] type 0 class 0x000880
[    1.947152] pci 0000:1f:0e.1: [8086:3c46] type 0 class 0x001101
[    1.947191] pci 0000:1f:0f.0: [8086:3ca8] type 0 class 0x000880
[    1.947236] pci 0000:1f:0f.1: [8086:3c71] type 0 class 0x000880
[    1.947280] pci 0000:1f:0f.2: [8086:3caa] type 0 class 0x000880
[    1.947324] pci 0000:1f:0f.3: [8086:3cab] type 0 class 0x000880
[    1.947368] pci 0000:1f:0f.4: [8086:3cac] type 0 class 0x000880
[    1.947412] pci 0000:1f:0f.5: [8086:3cad] type 0 class 0x000880
[    1.947455] pci 0000:1f:0f.6: [8086:3cae] type 0 class 0x000880
[    1.947492] pci 0000:1f:10.0: [8086:3cb0] type 0 class 0x000880
[    1.947537] pci 0000:1f:10.1: [8086:3cb1] type 0 class 0x000880
[    1.947581] pci 0000:1f:10.2: [8086:3cb2] type 0 class 0x000880
[    1.947626] pci 0000:1f:10.3: [8086:3cb3] type 0 class 0x000880
[    1.947670] pci 0000:1f:10.4: [8086:3cb4] type 0 class 0x000880
[    1.947715] pci 0000:1f:10.5: [8086:3cb5] type 0 class 0x000880
[    1.947760] pci 0000:1f:10.6: [8086:3cb6] type 0 class 0x000880
[    1.947805] pci 0000:1f:10.7: [8086:3cb7] type 0 class 0x000880
[    1.947847] pci 0000:1f:11.0: [8086:3cb8] type 0 class 0x000880
[    1.947887] pci 0000:1f:13.0: [8086:3ce4] type 0 class 0x000880
[    1.947916] pci 0000:1f:13.1: [8086:3c43] type 0 class 0x001101
[    1.947947] pci 0000:1f:13.4: [8086:3ce6] type 0 class 0x001101
[    1.947976] pci 0000:1f:13.5: [8086:3c44] type 0 class 0x001101
[    1.948006] pci 0000:1f:13.6: [8086:3c45] type 0 class 0x000880
[    1.949189] PCI: Discovered peer bus 3f
[    1.950518] pci 0000:3f:08.0: [8086:3c80] type 0 class 0x000880
[    1.950563] pci 0000:3f:08.3: [8086:3c83] type 0 class 0x000880
[    1.950615] pci 0000:3f:08.4: [8086:3c84] type 0 class 0x000880
[    1.950674] pci 0000:3f:09.0: [8086:3c90] type 0 class 0x000880
[    1.950717] pci 0000:3f:09.3: [8086:3c93] type 0 class 0x000880
[    1.950769] pci 0000:3f:09.4: [8086:3c94] type 0 class 0x000880
[    1.950826] pci 0000:3f:0a.0: [8086:3cc0] type 0 class 0x000880
[    1.950862] pci 0000:3f:0a.1: [8086:3cc1] type 0 class 0x000880
[    1.950897] pci 0000:3f:0a.2: [8086:3cc2] type 0 class 0x000880
[    1.950933] pci 0000:3f:0a.3: [8086:3cd0] type 0 class 0x000880
[    1.950970] pci 0000:3f:0b.0: [8086:3ce0] type 0 class 0x000880
[    1.951004] pci 0000:3f:0b.3: [8086:3ce3] type 0 class 0x000880
[    1.951043] pci 0000:3f:0c.0: [8086:3ce8] type 0 class 0x000880
[    1.951077] pci 0000:3f:0c.1: [8086:3ce8] type 0 class 0x000880
[    1.951114] pci 0000:3f:0c.2: [8086:3ce8] type 0 class 0x000880
[    1.951149] pci 0000:3f:0c.3: [8086:3ce8] type 0 class 0x000880
[    1.951185] pci 0000:3f:0c.6: [8086:3cf4] type 0 class 0x000880
[    1.951221] pci 0000:3f:0c.7: [8086:3cf6] type 0 class 0x000880
[    1.951255] pci 0000:3f:0d.0: [8086:3ce8] type 0 class 0x000880
[    1.951290] pci 0000:3f:0d.1: [8086:3ce8] type 0 class 0x000880
[    1.951325] pci 0000:3f:0d.2: [8086:3ce8] type 0 class 0x000880
[    1.951360] pci 0000:3f:0d.3: [8086:3ce8] type 0 class 0x000880
[    1.951396] pci 0000:3f:0d.6: [8086:3cf5] type 0 class 0x000880
[    1.951432] pci 0000:3f:0e.0: [8086:3ca0] type 0 class 0x000880
[    1.951474] pci 0000:3f:0e.1: [8086:3c46] type 0 class 0x001101
[    1.951523] pci 0000:3f:0f.0: [8086:3ca8] type 0 class 0x000880
[    1.951575] pci 0000:3f:0f.1: [8086:3c71] type 0 class 0x000880
[    1.951627] pci 0000:3f:0f.2: [8086:3caa] type 0 class 0x000880
[    1.951679] pci 0000:3f:0f.3: [8086:3cab] type 0 class 0x000880
[    1.951731] pci 0000:3f:0f.4: [8086:3cac] type 0 class 0x000880
[    1.951782] pci 0000:3f:0f.5: [8086:3cad] type 0 class 0x000880
[    1.951833] pci 0000:3f:0f.6: [8086:3cae] type 0 class 0x000880
[    1.951876] pci 0000:3f:10.0: [8086:3cb0] type 0 class 0x000880
[    1.951928] pci 0000:3f:10.1: [8086:3cb1] type 0 class 0x000880
[    1.951981] pci 0000:3f:10.2: [8086:3cb2] type 0 class 0x000880
[    1.952034] pci 0000:3f:10.3: [8086:3cb3] type 0 class 0x000880
[    1.952087] pci 0000:3f:10.4: [8086:3cb4] type 0 class 0x000880
[    1.952140] pci 0000:3f:10.5: [8086:3cb5] type 0 class 0x000880
[    1.952194] pci 0000:3f:10.6: [8086:3cb6] type 0 class 0x000880
[    1.952247] pci 0000:3f:10.7: [8086:3cb7] type 0 class 0x000880
[    1.952297] pci 0000:3f:11.0: [8086:3cb8] type 0 class 0x000880
[    1.952344] pci 0000:3f:13.0: [8086:3ce4] type 0 class 0x000880
[    1.952378] pci 0000:3f:13.1: [8086:3c43] type 0 class 0x001101
[    1.952415] pci 0000:3f:13.4: [8086:3ce6] type 0 class 0x001101
[    1.952450] pci 0000:3f:13.5: [8086:3c44] type 0 class 0x001101
[    1.952485] pci 0000:3f:13.6: [8086:3c45] type 0 class 0x000880
[    1.958521] PCI: pci_cache_line_size set to 64 bytes
[    1.958884] reserve RAM buffer: 000000000009cc00 - 000000000009ffff 
[    1.958887] reserve RAM buffer: 00000000bddac000 - 00000000bfffffff 
[    1.958890] reserve RAM buffer: 000000203ffff000 - 000000203fffffff 
[    1.958998] NetLabel: Initializing
[    1.961165] NetLabel:  domain hash size = 128
[    1.962615] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.964207] NetLabel:  unlabeled traffic allowed by default
[    1.965972] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.968694] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.972792] hpet: hpet_late_init(1007):
[    1.974078] hpet: ID: 0x8086a701, PERIOD: 0x429b17f
[    1.975687] hpet: CFG: 0x3, STATUS: 0x0
[    1.976950] hpet: COUNTER_l: 0x1d62600, COUNTER_h: 0x0
[    1.978666] hpet: T0: CFG_l: 0x8138, CFG_h: 0xf00000
[    1.980259] hpet: T0: CMP_l: 0x1d70d0f, CMP_h: 0x0
[    1.981838] hpet: T0 ROUTE_l: 0x0, ROUTE_h: 0x0
[    1.983277] hpet: T1: CFG_l: 0x8000, CFG_h: 0xf00000
[    1.984837] hpet: T1: CMP_l: 0xffffffff, CMP_h: 0x0
[    1.986373] hpet: T1 ROUTE_l: 0x0, ROUTE_h: 0x0
[    1.987920] hpet: T2: CFG_l: 0x8000, CFG_h: 0xf00800
[    1.989557] hpet: T2: CMP_l: 0x3aa41ce, CMP_h: 0x0
[    1.991082] hpet: T2 ROUTE_l: 0x0, ROUTE_h: 0x0
[    1.992509] hpet: T3: CFG_l: 0x8000, CFG_h: 0xf01000
[    1.994081] hpet: T3: CMP_l: 0xffffffff, CMP_h: 0x0
[    1.995608] hpet: T3 ROUTE_l: 0x0, ROUTE_h: 0x0
[    1.997083] hpet: T4: CFG_l: 0xc000, CFG_h: 0x0
[    1.998627] hpet: T4: CMP_l: 0xffffffff, CMP_h: 0x0
[    2.000466] hpet: T4 ROUTE_l: 0x0, ROUTE_h: 0x0
[    2.001985] hpet: T5: CFG_l: 0xc000, CFG_h: 0x0
[    2.003411] hpet: T5: CMP_l: 0xffffffff, CMP_h: 0x0
[    2.005086] hpet: T5 ROUTE_l: 0x0, ROUTE_h: 0x0
[    2.006529] hpet: T6: CFG_l: 0xc000, CFG_h: 0x0
[    2.007979] hpet: T6: CMP_l: 0xffffffff, CMP_h: 0x0
[    2.009669] hpet: T6 ROUTE_l: 0x0, ROUTE_h: 0x0
[    2.012596] hpet: T7: CFG_l: 0xc000, CFG_h: 0x0
[    2.014078] hpet: T7: CMP_l: 0xffffffff, CMP_h: 0x0
[    2.015661] hpet: T7 ROUTE_l: 0x0, ROUTE_h: 0x0
[    2.017198] Switching to clocksource hpet
[    2.021696] AppArmor: AppArmor Filesystem Enabled
[    2.023340] pnp: PnP ACPI init
[    2.024432] ACPI: bus type pnp registered
[    2.025908] pnp 00:00: [bus 00-1f]
[    2.025913] pnp 00:00: [mem 0xf0000000-0xf7ffffff window]
[    2.025917] pnp 00:00: [mem 0xf0000000-0xf7ffffff window]
[    2.025920] pnp 00:00: [io  0x1000-0x7fff window]
[    2.025924] pnp 00:00: [io  0x0000-0x03af window]
[    2.025927] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    2.025931] pnp 00:00: [io  0x0d00-0x0fff window]
[    2.025934] pnp 00:00: [mem 0xfed00000-0xfed03fff window]
[    2.025938] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    2.025941] pnp 00:00: [io  0x03b0-0x03bb window]
[    2.025944] pnp 00:00: [io  0x03c0-0x03df window]
[    2.025948] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    2.026158] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    2.026462] pnp 00:01: [mem 0xf1ffe000-0xf1ffffff]
[    2.026771] system 00:01: [mem 0xf1ffe000-0xf1ffffff] has been reserved
[    2.029024] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.029199] pnp 00:02: [io  0x0070-0x0077]
[    2.029202] pnp 00:02: [io  0x0408-0x040f]
[    2.029205] pnp 00:02: [io  0x04d0-0x04d1]
[    2.029208] pnp 00:02: [io  0x0020-0x003f]
[    2.029211] pnp 00:02: [io  0x00a0-0x00bf]
[    2.029214] pnp 00:02: [io  0x0090-0x009f]
[    2.029217] pnp 00:02: [io  0x0050-0x0053]
[    2.029220] pnp 00:02: [io  0x0310-0x0315]
[    2.029224] pnp 00:02: [io  0x0316-0x0317]
[    2.029227] pnp 00:02: [io  0x0700-0x071f]
[    2.029231] pnp 00:02: [io  0x0880-0x08ff]
[    2.029234] pnp 00:02: [io  0x0900-0x097f]
[    2.029237] pnp 00:02: [io  0x0010-0x001f]
[    2.029240] pnp 00:02: [io  0x0cd4-0x0cd7]
[    2.029243] pnp 00:02: [io  0x0cd0-0x0cd3]
[    2.029246] pnp 00:02: [io  0x0f50-0x0f58]
[    2.029249] pnp 00:02: [io  0x00f0]
[    2.029253] pnp 00:02: [io  0x0ca0-0x0ca1]
[    2.029256] pnp 00:02: [io  0x0ca4-0x0ca5]
[    2.029259] pnp 00:02: [mem 0xc0000000-0xcfffffff]
[    2.029263] pnp 00:02: [mem 0xfe000000-0xfebfffff]
[    2.029266] pnp 00:02: [mem 0xfc000000-0xfc000fff]
[    2.029270] pnp 00:02: [mem 0xfed1c000-0xfed1ffff]
[    2.029273] pnp 00:02: [mem 0xfed30000-0xfed3ffff]
[    2.029276] pnp 00:02: [mem 0xfee00000-0xfee00fff]
[    2.029279] pnp 00:02: [mem 0xff800000-0xffffffff]
[    2.029283] pnp 00:02: [io  0x03f8-0x03ff]
[    2.029565] system 00:02: [io  0x0408-0x040f] has been reserved
[    2.031731] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    2.033614] system 00:02: [io  0x0310-0x0315] has been reserved
[    2.035560] system 00:02: [io  0x0316-0x0317] has been reserved
[    2.038443] system 00:02: [io  0x0700-0x071f] has been reserved
[    2.040357] system 00:02: [io  0x0880-0x08ff] has been reserved
[    2.042794] system 00:02: [io  0x0900-0x097f] has been reserved
[    2.044746] system 00:02: [io  0x0cd4-0x0cd7] has been reserved
[    2.047106] system 00:02: [io  0x0cd0-0x0cd3] has been reserved
[    2.049280] system 00:02: [io  0x0f50-0x0f58] has been reserved
[    2.051234] system 00:02: [io  0x0ca0-0x0ca1] has been reserved
[    2.053376] system 00:02: [io  0x0ca4-0x0ca5] has been reserved
[    2.055343] system 00:02: [io  0x03f8-0x03ff] has been reserved
[    2.057426] system 00:02: [mem 0xc0000000-0xcfffffff] has been reserved
[    2.060299] system 00:02: [mem 0xfe000000-0xfebfffff] has been reserved
[    2.062542] system 00:02: [mem 0xfc000000-0xfc000fff] has been reserved
[    2.064653] system 00:02: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.066945] system 00:02: [mem 0xfed30000-0xfed3ffff] has been reserved
[    2.069396] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
[    2.071710] system 00:02: [mem 0xff800000-0xffffffff] has been reserved
[    2.073953] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.073987] pnp 00:03: [io  0x0ca2-0x0ca3]
[    2.074075] pnp 00:03: Plug and Play ACPI device, IDs IPI0001 (active)
[    2.074129] pnp 00:04: [mem 0xfed00000-0xfed003ff]
[    2.074215] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
[    2.074236] pnp 00:05: [dma 7]
[    2.074239] pnp 00:05: [io  0x0000-0x000f]
[    2.074243] pnp 00:05: [io  0x0080-0x008f]
[    2.074246] pnp 00:05: [io  0x00c0-0x00df]
[    2.074328] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    2.074346] pnp 00:06: [io  0x0061]
[    2.074425] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
[    2.074444] pnp 00:07: [io  0x002e-0x002f]
[    2.074528] pnp 00:07: Plug and Play ACPI device, IDs PNP0a06 (active)
[    2.074768] pnp 00:08: [irq 3]
[    2.074773] pnp 00:08: [io  0x02f8-0x02ff]
[    2.075010] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 PNP0500 (active)
[    2.075033] pnp 00:09: [io  0x0070-0x0071]
[    2.075117] pnp 00:09: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.075137] pnp 00:0a: [io  0x0060]
[    2.075140] pnp 00:0a: [io  0x0064]
[    2.075154] pnp 00:0a: [irq 1]
[    2.075236] pnp 00:0a: Plug and Play ACPI device, IDs PNP0303 (active)
[    2.075269] pnp 00:0b: [irq 12]
[    2.075354] pnp 00:0b: Plug and Play ACPI device, IDs PNP0f13 PNP0f0e (active)
[    2.075692] pnp 00:0c: [bus 20-3f]
[    2.075696] pnp 00:0c: [mem 0xf8000000-0xfbffffff window]
[    2.075700] pnp 00:0c: [mem 0xf8000000-0xfbffffff window]
[    2.075704] pnp 00:0c: [io  0x8000-0xffff window]
[    2.075807] pnp 00:0c: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    2.075952] pnp 00:0d: [mem 0xf8efe000-0xf8efffff]
[    2.076200] system 00:0d: [mem 0xf8efe000-0xf8efffff] has been reserved
[    2.078336] system 00:0d: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.078431] pnp: PnP ACPI: found 14 devices
[    2.079830] ACPI: ACPI bus type pnp unregistered
[    2.088368] PCI: max bus depth: 1 pci_try_num: 2
[    2.088590] pci 0000:00:02.0: BAR 15: assigned [mem 0xf0000000-0xf00fffff pref]
[    2.091019] pci 0000:00:02.2: BAR 15: assigned [mem 0xf0100000-0xf01fffff pref]
[    2.093358] pci 0000:00:03.0: BAR 14: assigned [mem 0xf0200000-0xf02fffff]
[    2.095488] pci 0000:00:01.0: PCI bridge to [bus 11-11]
[    2.097166] pci 0000:00:01.0:   bridge window [io  disabled]
[    2.099088] pci 0000:00:01.0:   bridge window [mem disabled]
[    2.101023] pci 0000:00:01.0:   bridge window [mem pref disabled]
[    2.102959] pci 0000:00:01.1: PCI bridge to [bus 02-02]
[    2.104625] pci 0000:00:01.1:   bridge window [io  disabled]
[    2.106396] pci 0000:00:01.1:   bridge window [mem disabled]
[    2.108246] pci 0000:00:01.1:   bridge window [mem pref disabled]
[    2.110865] pci 0000:04:00.0: BAR 6: assigned [mem 0xf0000000-0xf003ffff pref]
[    2.113956] pci 0000:04:00.1: BAR 6: assigned [mem 0xf0040000-0xf007ffff pref]
[    2.116370] pci 0000:04:00.2: BAR 6: assigned [mem 0xf0080000-0xf00bffff pref]
[    2.118780] pci 0000:04:00.3: BAR 6: assigned [mem 0xf00c0000-0xf00fffff pref]
[    2.121152] pci 0000:00:02.0: PCI bridge to [bus 04-04]
[    2.122891] pci 0000:00:02.0:   bridge window [io  disabled]
[    2.124695] pci 0000:00:02.0:   bridge window [mem 0xf7d00000-0xf7ffffff]
[    2.126800] pci 0000:00:02.0:   bridge window [mem 0xf0000000-0xf00fffff pref]
[    2.129174] pci 0000:00:02.1: PCI bridge to [bus 12-12]
[    2.130879] pci 0000:00:02.1:   bridge window [io  disabled]
[    2.132777] pci 0000:00:02.1:   bridge window [mem disabled]
[    2.134617] pci 0000:00:02.1:   bridge window [mem pref disabled]
[    2.136529] pci 0000:03:00.0: BAR 6: assigned [mem 0xf0100000-0xf017ffff pref]
[    2.138950] pci 0000:00:02.2: PCI bridge to [bus 03-03]
[    2.140667] pci 0000:00:02.2:   bridge window [io  0x4000-0x4fff]
[    2.142564] pci 0000:00:02.2:   bridge window [mem 0xf7b00000-0xf7cfffff]
[    2.144666] pci 0000:00:02.2:   bridge window [mem 0xf0100000-0xf01fffff pref]
[    2.146999] pci 0000:00:02.3: PCI bridge to [bus 13-13]
[    2.148834] pci 0000:00:02.3:   bridge window [io  disabled]
[    2.150662] pci 0000:00:02.3:   bridge window [mem disabled]
[    2.152425] pci 0000:00:02.3:   bridge window [mem pref disabled]
[    2.154329] pci 0000:05:00.0: BAR 6: assigned [mem 0xf3f00000-0xf3f3ffff pref]
[    2.157689] pci 0000:05:00.1: BAR 6: assigned [mem 0xf3f40000-0xf3f7ffff pref]
[    2.160302] pci 0000:00:03.0: PCI bridge to [bus 05-05]
[    2.162476] pci 0000:00:03.0:   bridge window [io  disabled]
[    2.164416] pci 0000:00:03.0:   bridge window [mem 0xf0200000-0xf02fffff]
[    2.166699] pci 0000:00:03.0:   bridge window [mem 0xf3f00000-0xf67fffff 64bit pref]
[    2.169259] pci 0000:00:03.1: PCI bridge to [bus 14-14]
[    2.170983] pci 0000:00:03.1:   bridge window [io  disabled]
[    2.172793] pci 0000:00:03.1:   bridge window [mem disabled]
[    2.174661] pci 0000:00:03.1:   bridge window [mem pref disabled]
[    2.176658] pci 0000:00:03.2: PCI bridge to [bus 15-15]
[    2.178464] pci 0000:00:03.2:   bridge window [io  disabled]
[    2.180438] pci 0000:00:03.2:   bridge window [mem disabled]
[    2.182339] pci 0000:00:03.2:   bridge window [mem pref disabled]
[    2.185080] pci 0000:00:03.3: PCI bridge to [bus 16-16]
[    2.187255] pci 0000:00:03.3:   bridge window [io  disabled]
[    2.189306] pci 0000:00:03.3:   bridge window [mem disabled]
[    2.191234] pci 0000:00:03.3:   bridge window [mem pref disabled]
[    2.193124] pci 0000:00:11.0: PCI bridge to [bus 18-18]
[    2.195043] pci 0000:00:11.0:   bridge window [io  disabled]
[    2.196967] pci 0000:00:11.0:   bridge window [mem disabled]
[    2.198880] pci 0000:00:11.0:   bridge window [mem pref disabled]
[    2.200762] pci 0000:00:1c.0: PCI bridge to [bus 08-08]
[    2.202399] pci 0000:00:1c.0:   bridge window [io  disabled]
[    2.204151] pci 0000:00:1c.0:   bridge window [mem disabled]
[    2.205923] pci 0000:00:1c.0:   bridge window [mem pref disabled]
[    2.207844] pci 0000:01:00.2: BAR 6: assigned [mem 0xf6d00000-0xf6d0ffff pref]
[    2.210117] pci 0000:00:1c.7: PCI bridge to [bus 01-01]
[    2.211761] pci 0000:00:1c.7:   bridge window [io  0x3000-0x3fff]
[    2.213725] pci 0000:00:1c.7:   bridge window [mem 0xf6d00000-0xf7afffff]
[    2.215812] pci 0000:00:1c.7:   bridge window [mem 0xf2000000-0xf2ffffff 64bit pref]
[    2.218254] pci 0000:00:1e.0: PCI bridge to [bus 17-17]
[    2.219955] pci 0000:00:1e.0:   bridge window [io  disabled]
[    2.221882] pci 0000:00:1e.0:   bridge window [mem disabled]
[    2.223755] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    2.225871] pci 0000:20:03.0: BAR 14: assigned [mem 0xf8000000-0xf80fffff]
[    2.228133] pci 0000:20:00.0: PCI bridge to [bus 2d-2d]
[    2.229843] pci 0000:20:00.0:   bridge window [io  disabled]
[    2.232546] pci 0000:20:00.0:   bridge window [mem disabled]
[    2.235000] pci 0000:20:00.0:   bridge window [mem pref disabled]
[    2.236975] pci 0000:20:01.0: PCI bridge to [bus 24-24]
[    2.238965] pci 0000:20:01.0:   bridge window [io  disabled]
[    2.240756] pci 0000:20:01.0:   bridge window [mem disabled]
[    2.242533] pci 0000:20:01.0:   bridge window [mem pref disabled]
[    2.244535] pci 0000:20:01.1: PCI bridge to [bus 25-25]
[    2.246162] pci 0000:20:01.1:   bridge window [io  disabled]
[    2.248004] pci 0000:20:01.1:   bridge window [mem disabled]
[    2.251452] pci 0000:20:01.1:   bridge window [mem pref disabled]
[    2.253400] pci 0000:20:02.0: PCI bridge to [bus 26-26]
[    2.255048] pci 0000:20:02.0:   bridge window [io  disabled]
[    2.257418] pci 0000:20:02.0:   bridge window [mem disabled]
[    2.259406] pci 0000:20:02.0:   bridge window [mem pref disabled]
[    2.262053] pci 0000:20:02.1: PCI bridge to [bus 27-27]
[    2.263953] pci 0000:20:02.1:   bridge window [io  disabled]
[    2.265970] pci 0000:20:02.1:   bridge window [mem disabled]
[    2.267832] pci 0000:20:02.1:   bridge window [mem pref disabled]
[    2.269856] pci 0000:20:02.2: PCI bridge to [bus 28-28]
[    2.271650] pci 0000:20:02.2:   bridge window [io  disabled]
[    2.273642] pci 0000:20:02.2:   bridge window [mem disabled]
[    2.275440] pci 0000:20:02.2:   bridge window [mem pref disabled]
[    2.277441] pci 0000:20:02.3: PCI bridge to [bus 29-29]
[    2.279113] pci 0000:20:02.3:   bridge window [io  disabled]
[    2.280851] pci 0000:20:02.3:   bridge window [mem disabled]
[    2.282716] pci 0000:20:02.3:   bridge window [mem pref disabled]
[    2.284783] pci 0000:21:00.0: BAR 6: assigned [mem 0xf8f00000-0xf8f3ffff pref]
[    2.287057] pci 0000:21:00.1: BAR 6: assigned [mem 0xf8f40000-0xf8f7ffff pref]
[    2.289533] pci 0000:20:03.0: PCI bridge to [bus 21-21]
[    2.291239] pci 0000:20:03.0:   bridge window [io  disabled]
[    2.293146] pci 0000:20:03.0:   bridge window [mem 0xf8000000-0xf80fffff]
[    2.295262] pci 0000:20:03.0:   bridge window [mem 0xf8f00000-0xfb7fffff 64bit pref]
[    2.297802] pci 0000:20:03.1: PCI bridge to [bus 2a-2a]
[    2.299559] pci 0000:20:03.1:   bridge window [io  disabled]
[    2.301365] pci 0000:20:03.1:   bridge window [mem disabled]
[    2.303166] pci 0000:20:03.1:   bridge window [mem pref disabled]
[    2.305099] pci 0000:20:03.2: PCI bridge to [bus 2b-2b]
[    2.306830] pci 0000:20:03.2:   bridge window [io  disabled]
[    2.309979] pci 0000:20:03.2:   bridge window [mem disabled]
[    2.312245] pci 0000:20:03.2:   bridge window [mem pref disabled]
[    2.314141] pci 0000:20:03.3: PCI bridge to [bus 2c-2c]
[    2.315784] pci 0000:20:03.3:   bridge window [io  disabled]
[    2.317604] pci 0000:20:03.3:   bridge window [mem disabled]
[    2.319402] pci 0000:20:03.3:   bridge window [mem pref disabled]
[    2.321336] pci 0000:00:01.0: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.323407] pci 0000:00:01.0: setting latency timer to 64
[    2.323412] pci 0000:00:01.1: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.325574] pci 0000:00:01.1: setting latency timer to 64
[    2.325579] pci 0000:00:02.0: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.327750] pci 0000:00:02.0: setting latency timer to 64
[    2.327755] pci 0000:00:02.1: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.329813] pci 0000:00:02.1: setting latency timer to 64
[    2.329818] pci 0000:00:02.2: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.331880] pci 0000:00:02.2: setting latency timer to 64
[    2.331884] pci 0000:00:02.3: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.334160] pci 0000:00:02.3: setting latency timer to 64
[    2.334165] pci 0000:00:03.0: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.336812] pci 0000:00:03.0: setting latency timer to 64
[    2.336817] pci 0000:00:03.1: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.339005] pci 0000:00:03.1: setting latency timer to 64
[    2.339010] pci 0000:00:03.2: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.341352] pci 0000:00:03.2: setting latency timer to 64
[    2.341356] pci 0000:00:03.3: PCI INT A -> GSI 45 (level, low) -> IRQ 45
[    2.343433] pci 0000:00:03.3: setting latency timer to 64
[    2.343459] pci 0000:00:11.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.345556] pci 0000:00:11.0: setting latency timer to 64
[    2.345562] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.347670] pci 0000:00:1c.0: setting latency timer to 64
[    2.347688] pci 0000:00:1c.7: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[    2.349751] pci 0000:00:1c.7: setting latency timer to 64
[    2.349764] pci 0000:00:1e.0: setting latency timer to 64
[    2.349784] pci 0000:20:00.0: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.351857] pci 0000:20:00.0: setting latency timer to 64
[    2.351862] pci 0000:20:01.0: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.353916] pci 0000:20:01.0: setting latency timer to 64
[    2.353920] pci 0000:20:01.1: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.356133] pci 0000:20:01.1: setting latency timer to 64
[    2.356137] pci 0000:20:02.0: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.358394] pci 0000:20:02.0: setting latency timer to 64
[    2.358398] pci 0000:20:02.1: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.360813] pci 0000:20:02.1: setting latency timer to 64
[    2.360818] pci 0000:20:02.2: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.363062] pci 0000:20:02.2: setting latency timer to 64
[    2.363066] pci 0000:20:02.3: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.365181] pci 0000:20:02.3: setting latency timer to 64
[    2.365186] pci 0000:20:03.0: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.367318] pci 0000:20:03.0: setting latency timer to 64
[    2.367323] pci 0000:20:03.1: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.369504] pci 0000:20:03.1: setting latency timer to 64
[    2.369509] pci 0000:20:03.2: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.371606] pci 0000:20:03.2: setting latency timer to 64
[    2.371611] pci 0000:20:03.3: PCI INT A -> GSI 69 (level, low) -> IRQ 69
[    2.373891] pci 0000:20:03.3: setting latency timer to 64
[    2.373896] pci_bus 0000:00: resource 4 [mem 0xf0000000-0xf7ffffff]
[    2.373898] pci_bus 0000:00: resource 5 [io  0x1000-0x7fff]
[    2.373900] pci_bus 0000:00: resource 6 [io  0x0000-0x03af]
[    2.373902] pci_bus 0000:00: resource 7 [io  0x03e0-0x0cf7]
[    2.373903] pci_bus 0000:00: resource 8 [io  0x0d00-0x0fff]
[    2.373905] pci_bus 0000:00: resource 9 [mem 0xfed00000-0xfed03fff]
[    2.373906] pci_bus 0000:00: resource 10 [mem 0xfed40000-0xfed44fff]
[    2.373908] pci_bus 0000:00: resource 11 [io  0x03b0-0x03bb]
[    2.373910] pci_bus 0000:00: resource 12 [io  0x03c0-0x03df]
[    2.373911] pci_bus 0000:00: resource 13 [mem 0x000a0000-0x000bffff]
[    2.373913] pci_bus 0000:04: resource 1 [mem 0xf7d00000-0xf7ffffff]
[    2.373915] pci_bus 0000:04: resource 2 [mem 0xf0000000-0xf00fffff pref]
[    2.373917] pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
[    2.373919] pci_bus 0000:03: resource 1 [mem 0xf7b00000-0xf7cfffff]
[    2.373921] pci_bus 0000:03: resource 2 [mem 0xf0100000-0xf01fffff pref]
[    2.373923] pci_bus 0000:05: resource 1 [mem 0xf0200000-0xf02fffff]
[    2.373924] pci_bus 0000:05: resource 2 [mem 0xf3f00000-0xf67fffff 64bit pref]
[    2.373927] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    2.373928] pci_bus 0000:01: resource 1 [mem 0xf6d00000-0xf7afffff]
[    2.373930] pci_bus 0000:01: resource 2 [mem 0xf2000000-0xf2ffffff 64bit pref]
[    2.373932] pci_bus 0000:17: resource 4 [mem 0xf0000000-0xf7ffffff]
[    2.373934] pci_bus 0000:17: resource 5 [io  0x1000-0x7fff]
[    2.373935] pci_bus 0000:17: resource 6 [io  0x0000-0x03af]
[    2.373937] pci_bus 0000:17: resource 7 [io  0x03e0-0x0cf7]
[    2.373939] pci_bus 0000:17: resource 8 [io  0x0d00-0x0fff]
[    2.373940] pci_bus 0000:17: resource 9 [mem 0xfed00000-0xfed03fff]
[    2.373942] pci_bus 0000:17: resource 10 [mem 0xfed40000-0xfed44fff]
[    2.373944] pci_bus 0000:17: resource 11 [io  0x03b0-0x03bb]
[    2.373945] pci_bus 0000:17: resource 12 [io  0x03c0-0x03df]
[    2.373947] pci_bus 0000:17: resource 13 [mem 0x000a0000-0x000bffff]
[    2.373949] pci_bus 0000:20: resource 4 [mem 0xf8000000-0xfbffffff]
[    2.373951] pci_bus 0000:20: resource 5 [io  0x8000-0xffff]
[    2.373953] pci_bus 0000:21: resource 1 [mem 0xf8000000-0xf80fffff]
[    2.373955] pci_bus 0000:21: resource 2 [mem 0xf8f00000-0xfb7fffff 64bit pref]
[    2.373957] pci_bus 0000:1f: resource 0 [io  0x0000-0xffff]
[    2.373959] pci_bus 0000:1f: resource 1 [mem 0x00000000-0x3fffffffffff]
[    2.373962] pci_bus 0000:3f: resource 0 [io  0x0000-0xffff]
[    2.373963] pci_bus 0000:3f: resource 1 [mem 0x00000000-0x3fffffffffff]
[    2.374333] NET: Registered protocol family 2
[    2.376292] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    2.380461] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    2.384269] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    2.387697] TCP: Hash tables configured (established 524288 bind 65536)
[    2.390249] TCP reno registered
[    2.391467] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    2.394081] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    2.397289] NET: Registered protocol family 1
[    2.398841] pci 0000:00:1a.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.414048] pci 0000:00:1a.0: PCI INT A disabled
[    2.415935] pci 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    2.434000] pci 0000:00:1d.0: PCI INT A disabled
[    2.435627] pci 0000:01:00.1: Boot video device
[    2.435640] pci 0000:01:00.4: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    2.438006] pci 0000:01:00.4: PCI INT B disabled
[    2.439733] PCI: CLS 64 bytes, default 64
[    2.439798] Unpacking initramfs...
[    2.545853] Freeing initrd memory: 5348k freed
[    2.548209] DMAR: Device scope device [0000:02:00.00] not found
[    2.550133] DMAR: Device scope device [0000:00:00.00] not found
[    2.551988] DMAR: Device scope device [0000:00:1f.02] not found
[    2.553842] DMAR: Device scope device [0000:00:1f.02] not found
[    2.555689] DMAR: Device scope device [0000:00:1f.05] not found
[    2.557562] DMAR: Device scope device [0000:00:1f.05] not found
[    2.559752] DMAR: Device scope device [0000:02:00.00] not found
[    2.561587] DMAR: Device scope device [0000:00:00.00] not found
[    2.563421] DMAR: Device scope device [0000:00:1f.02] not found
[    2.565252] DMAR: Device scope device [0000:00:1f.02] not found
[    2.567303] DMAR: Device scope device [0000:00:1f.05] not found
[    2.569190] DMAR: Device scope device [0000:00:1f.05] not found
[    2.571166] DMAR: Device scope device [0000:02:00.00] not found
[    2.573089] DMAR: Device scope device [0000:00:00.00] not found
[    2.574968] DMAR: Device scope device [0000:00:1f.02] not found
[    2.576862] DMAR: Device scope device [0000:00:1f.02] not found
[    2.578725] DMAR: Device scope device [0000:00:1f.05] not found
[    2.580591] DMAR: Device scope device [0000:00:1f.05] not found
[    2.582403] DMAR: Device scope device [0000:02:00.00] not found
[    2.584271] DMAR: Device scope device [0000:00:00.00] not found
[    2.586158] DMAR: Device scope device [0000:00:1f.02] not found
[    2.588081] DMAR: Device scope device [0000:00:1f.02] not found
[    2.589934] DMAR: Device scope device [0000:00:1f.05] not found
[    2.591793] DMAR: Device scope device [0000:00:1f.05] not found
[    2.593642] DMAR: Device scope device [0000:02:00.00] not found
[    2.595464] DMAR: Device scope device [0000:00:00.00] not found
[    2.597382] DMAR: Device scope device [0000:00:1f.02] not found
[    2.599304] DMAR: Device scope device [0000:00:1f.02] not found
[    2.601239] DMAR: Device scope device [0000:00:1f.05] not found
[    2.603133] DMAR: Device scope device [0000:00:1f.05] not found
[    2.605052] DMAR: Device scope device [0000:02:00.00] not found
[    2.606997] DMAR: Device scope device [0000:00:00.00] not found
[    2.608979] DMAR: Device scope device [0000:00:1f.02] not found
[    2.610834] DMAR: Device scope device [0000:00:1f.02] not found
[    2.612686] DMAR: Device scope device [0000:00:1f.05] not found
[    2.614527] DMAR: Device scope device [0000:00:1f.05] not found
[    2.616717] IOMMU 0 0xf8efe000: using Queued invalidation
[    2.618579] IOMMU 1 0xf1ffe000: using Queued invalidation
[    2.621361] IOMMU: Setting RMRR:
[    2.622669] IOMMU: Setting identity map for device 0000:01:00.0 [0xbddde000 - 0xbdddefff]
[    2.625283] IOMMU: Setting identity map for device 0000:01:00.2 [0xbddde000 - 0xbdddefff]
[    2.627973] IOMMU: Setting identity map for device 0000:01:00.4 [0xbddde000 - 0xbdddefff]
[    2.630905] IOMMU: Setting identity map for device 0000:03:00.0 [0xe8000 - 0xe8fff]
[    2.633651] IOMMU: Setting identity map for device 0000:01:00.0 [0xe8000 - 0xe8fff]
[    2.636233] IOMMU: Setting identity map for device 0000:01:00.2 [0xe8000 - 0xe8fff]
[    2.639063] IOMMU: Setting identity map for device 0000:04:00.0 [0xe8000 - 0xe8fff]
[    2.641663] IOMMU: Setting identity map for device 0000:04:00.1 [0xe8000 - 0xe8fff]
[    2.644138] IOMMU: Setting identity map for device 0000:04:00.2 [0xe8000 - 0xe8fff]
[    2.646620] IOMMU: Setting identity map for device 0000:04:00.3 [0xe8000 - 0xe8fff]
[    2.649152] IOMMU: Setting identity map for device 0000:05:00.0 [0xe8000 - 0xe8fff]
[    2.651625] IOMMU: Setting identity map for device 0000:05:00.1 [0xe8000 - 0xe8fff]
[    2.654037] IOMMU: Setting identity map for device 0000:21:00.0 [0xe8000 - 0xe8fff]
[    2.656762] IOMMU: Setting identity map for device 0000:21:00.1 [0xe8000 - 0xe8fff]
[    2.659226] IOMMU: Setting identity map for device 0000:03:00.0 [0xf4000 - 0xf4fff]
[    2.661640] IOMMU: Setting identity map for device 0000:01:00.0 [0xf4000 - 0xf4fff]
[    2.664125] IOMMU: Setting identity map for device 0000:01:00.2 [0xf4000 - 0xf4fff]
[    2.666784] IOMMU: Setting identity map for device 0000:04:00.0 [0xf4000 - 0xf4fff]
[    2.669214] IOMMU: Setting identity map for device 0000:04:00.1 [0xf4000 - 0xf4fff]
[    2.671642] IOMMU: Setting identity map for device 0000:04:00.2 [0xf4000 - 0xf4fff]
[    2.674204] IOMMU: Setting identity map for device 0000:04:00.3 [0xf4000 - 0xf4fff]
[    2.676634] IOMMU: Setting identity map for device 0000:05:00.0 [0xf4000 - 0xf4fff]
[    2.679178] IOMMU: Setting identity map for device 0000:05:00.1 [0xf4000 - 0xf4fff]
[    2.681771] IOMMU: Setting identity map for device 0000:21:00.0 [0xf4000 - 0xf4fff]
[    2.684482] IOMMU: Setting identity map for device 0000:21:00.1 [0xf4000 - 0xf4fff]
[    2.686904] IOMMU: Setting identity map for device 0000:03:00.0 [0xbdf6e000 - 0xbdf6efff]
[    2.689477] IOMMU: Setting identity map for device 0000:01:00.0 [0xbdf6e000 - 0xbdf6efff]
[    2.692019] IOMMU: Setting identity map for device 0000:01:00.2 [0xbdf6e000 - 0xbdf6efff]
[    2.695951] IOMMU: Setting identity map for device 0000:04:00.0 [0xbdf6e000 - 0xbdf6efff]
[    2.698637] IOMMU: Setting identity map for device 0000:04:00.1 [0xbdf6e000 - 0xbdf6efff]
[    2.702551] IOMMU: Setting identity map for device 0000:04:00.2 [0xbdf6e000 - 0xbdf6efff]
[    2.705134] IOMMU: Setting identity map for device 0000:04:00.3 [0xbdf6e000 - 0xbdf6efff]
[    2.707785] IOMMU: Setting identity map for device 0000:05:00.0 [0xbdf6e000 - 0xbdf6efff]
[    2.710409] IOMMU: Setting identity map for device 0000:05:00.1 [0xbdf6e000 - 0xbdf6efff]
[    2.713150] IOMMU: Setting identity map for device 0000:21:00.0 [0xbdf6e000 - 0xbdf6efff]
[    2.715936] IOMMU: Setting identity map for device 0000:21:00.1 [0xbdf6e000 - 0xbdf6efff]
[    2.718809] IOMMU: Setting identity map for device 0000:03:00.0 [0xbdf6f000 - 0xbdf7efff]
[    2.721391] IOMMU: Setting identity map for device 0000:01:00.0 [0xbdf6f000 - 0xbdf7efff]
[    2.723923] IOMMU: Setting identity map for device 0000:01:00.2 [0xbdf6f000 - 0xbdf7efff]
[    2.726478] IOMMU: Setting identity map for device 0000:04:00.0 [0xbdf6f000 - 0xbdf7efff]
[    2.729037] IOMMU: Setting identity map for device 0000:04:00.1 [0xbdf6f000 - 0xbdf7efff]
[    2.731590] IOMMU: Setting identity map for device 0000:04:00.2 [0xbdf6f000 - 0xbdf7efff]
[    2.734215] IOMMU: Setting identity map for device 0000:04:00.3 [0xbdf6f000 - 0xbdf7efff]
[    2.736831] IOMMU: Setting identity map for device 0000:05:00.0 [0xbdf6f000 - 0xbdf7efff]
[    2.739389] IOMMU: Setting identity map for device 0000:05:00.1 [0xbdf6f000 - 0xbdf7efff]
[    2.741931] IOMMU: Setting identity map for device 0000:21:00.0 [0xbdf6f000 - 0xbdf7efff]
[    2.744462] IOMMU: Setting identity map for device 0000:21:00.1 [0xbdf6f000 - 0xbdf7efff]
[    2.747021] IOMMU: Setting identity map for device 0000:03:00.0 [0xbdf7f000 - 0xbdf82fff]
[    2.749583] IOMMU: Setting identity map for device 0000:01:00.0 [0xbdf7f000 - 0xbdf82fff]
[    2.752161] IOMMU: Setting identity map for device 0000:01:00.2 [0xbdf7f000 - 0xbdf82fff]
[    2.754733] IOMMU: Setting identity map for device 0000:04:00.0 [0xbdf7f000 - 0xbdf82fff]
[    2.757379] IOMMU: Setting identity map for device 0000:04:00.1 [0xbdf7f000 - 0xbdf82fff]
[    2.759936] IOMMU: Setting identity map for device 0000:04:00.2 [0xbdf7f000 - 0xbdf82fff]
[    2.762476] IOMMU: Setting identity map for device 0000:04:00.3 [0xbdf7f000 - 0xbdf82fff]
[    2.764998] IOMMU: Setting identity map for device 0000:05:00.0 [0xbdf7f000 - 0xbdf82fff]
[    2.767597] IOMMU: Setting identity map for device 0000:05:00.1 [0xbdf7f000 - 0xbdf82fff]
[    2.770617] IOMMU: Setting identity map for device 0000:21:00.0 [0xbdf7f000 - 0xbdf82fff]
[    2.773442] IOMMU: Setting identity map for device 0000:21:00.1 [0xbdf7f000 - 0xbdf82fff]
[    2.777817] IOMMU: Setting identity map for device 0000:03:00.0 [0xbdf83000 - 0xbdf84fff]
[    2.780406] IOMMU: Setting identity map for device 0000:01:00.0 [0xbdf83000 - 0xbdf84fff]
[    2.783233] IOMMU: Setting identity map for device 0000:01:00.2 [0xbdf83000 - 0xbdf84fff]
[    2.785818] IOMMU: Setting identity map for device 0000:04:00.0 [0xbdf83000 - 0xbdf84fff]
[    2.788587] IOMMU: Setting identity map for device 0000:04:00.1 [0xbdf83000 - 0xbdf84fff]
[    2.791233] IOMMU: Setting identity map for device 0000:04:00.2 [0xbdf83000 - 0xbdf84fff]
[    2.793805] IOMMU: Setting identity map for device 0000:04:00.3 [0xbdf83000 - 0xbdf84fff]
[    2.796722] IOMMU: Setting identity map for device 0000:05:00.0 [0xbdf83000 - 0xbdf84fff]
[    2.799371] IOMMU: Setting identity map for device 0000:05:00.1 [0xbdf83000 - 0xbdf84fff]
[    2.802100] IOMMU: Setting identity map for device 0000:21:00.0 [0xbdf83000 - 0xbdf84fff]
[    2.804721] IOMMU: Setting identity map for device 0000:21:00.1 [0xbdf83000 - 0xbdf84fff]
[    2.807717] IOMMU: Setting identity map for device 0000:01:00.0 [0xbdff6000 - 0xbdffcfff]
[    2.810427] IOMMU: Setting identity map for device 0000:01:00.2 [0xbdff6000 - 0xbdffcfff]
[    2.813140] IOMMU: Setting identity map for device 0000:01:00.4 [0xbdff6000 - 0xbdffcfff]
[    2.815824] IOMMU: Setting identity map for device 0000:00:1d.0 [0xbdffd000 - 0xbdffffff]
[    2.818713] IOMMU: Setting identity map for device 0000:00:1a.0 [0xbdffd000 - 0xbdffffff]
[    2.821377] IOMMU: Prepare 0-16MiB unity mapping for LPC
[    2.823142] IOMMU: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    2.825489] PCI-DMA: Intel(R) Virtualization Technology for Directed I/O
[    2.832383] Initialise module verification
[    2.833951] audit: initializing netlink socket (enabled)
[    2.835681] type=2000 audit(1405607308.200:1): initialized
[    2.859622] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    2.872854] VFS: Disk quotas dquot_6.5.2
[    2.874482] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.876740] msgmni has been set to 32768
[    2.878498] alg: No test for stdrng (krng)
[    2.879944] Asymmetric key parser 'x509' registered
[    2.881591] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.884037] io scheduler noop registered (default)
[    2.885570] io scheduler deadline registered
[    2.887147] io scheduler cfq registered
[    2.890451] intel_idle: MWAIT substates: 0x21120
[    2.890453] intel_idle: v0.4 model 0x2D
[    2.890454] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.890628] APEI: Can not request [mem 0x000e8024-0x000e804f] for APEI ERST registers
[    2.893609] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    2.896132] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    2.898335] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    2.913064] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    3.013010] 00:08: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    3.025039] Non-volatile memory driver v1.3
[    3.026554] Linux agpgart interface v0.103
[    3.028143] Fixed MDIO Bus: probed
[    3.029443] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12
[    3.033584] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.035229] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.037102] mousedev: PS/2 mouse device common for all mice
[    3.040421] cpuidle: using governor ladder
[    3.044187] cpuidle: using governor menu
[    3.045613] EFI Variables Facility v0.08 2004-May-17
[    3.047809] TCP cubic registered
[    3.049031] Registering the dns_resolver key type
[    3.050783] Loading module verification certificates
[    3.052701] MODSIGN: Loaded cert 'SUSE Linux Enterprise Secure Boot Signkey: 3fb077b6cebc6ff2522e1c148c57c777c788e3e7'
[    3.056633] MODSIGN: Loaded cert 'Euler:ServerDom0:V1R3C10:kvm OBS Project: 5663f86f130da2c623b35daabd63b68fbe3fc52d'
[    3.060376] PM: Hibernation image not present or could not be loaded.
[    3.060393] registered taskstats version 1
[    3.071605]   Magic number: 6:693:485
[    3.077833] Freeing unused kernel memory: 1364k freed
[    3.103832] Write protecting the kernel read-only data: 10240k
[    3.138706] Freeing unused kernel memory: 1600k freed
[    3.167236] Freeing unused kernel memory: 936k freed
[    3.291971] SCSI subsystem initialized
[    3.311298] rdac: device handler registered
[    3.346403] alua: device handler registered
[    3.374577] hp_sw: device handler registered
[    3.403625] emc: device handler registered
[    3.428435] udev: starting version 147
[    3.452886] ACPI: acpi_idle yielding to intel_idle
[    3.466123] thermal LNXTHERM:00: registered as thermal_zone0
[    3.492233] ACPI: Thermal Zone [THM0] (8 C)
[    3.511239] HP HPSA Driver (v 3.2.0)
[    3.527739] hpsa 0000:03:00.0: PCI INT A -> GSI 34 (level, low) -> IRQ 34
[    3.559036] hpsa 0000:03:00.0: setting latency timer to 64
[    3.559055] hpsa 0000:03:00.0: MSIX
[    3.575085] hpsa 0000:03:00.0: irq 90 for MSI/MSI-X
[    3.575104] hpsa 0000:03:00.0: irq 91 for MSI/MSI-X
[    3.575122] hpsa 0000:03:00.0: irq 92 for MSI/MSI-X
[    3.575137] hpsa 0000:03:00.0: irq 93 for MSI/MSI-X
[    3.575185] hpsa 0000:03:00.0: irq 94 for MSI/MSI-X
[    3.575203] hpsa 0000:03:00.0: irq 95 for MSI/MSI-X
[    3.575221] hpsa 0000:03:00.0: irq 96 for MSI/MSI-X
[    3.575237] hpsa 0000:03:00.0: irq 97 for MSI/MSI-X
[    3.575301] usbcore: registered new interface driver usbfs
[    3.595244] hpsa 0000:03:00.0: hpsa0: <0x323b> at IRQ 90 using DAC
[    3.615382] scsi0 : hpsa
[    3.640357] usbcore: registered new interface driver hub
[    3.643176] hpsa 0000:03:00.0: RAID              device c0b3t0l0 added.
[    3.643180] hpsa 0000:03:00.0: Direct-Access     device c0b0t0l0 added.
[    3.643420] scsi 0:3:0:0: RAID              HP       P220i            4.68 PQ: 0 ANSI: 5
[    3.643715] scsi 0:0:0:0: Direct-Access     HP       LOGICAL VOLUME   4.68 PQ: 0 ANSI: 5
[    3.799374] usbcore: registered new device driver usb
[    3.823846] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.850953] Refined TSC clocksource calibration: 2599.999 MHz.
[    3.850957] Switching to clocksource tsc
[    3.898279] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    3.930913] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.930917] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.955477] sd 0:0:0:0: [sda] 585871964 512-byte logical blocks: (299 GB/279 GiB)
[    3.955481] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.955536] ehci_hcd 0000:00:1a.0: debug port 2
[    3.959403] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.959421] ehci_hcd 0000:00:1a.0: irq 21, io mem 0xf6c60000
[    3.974337] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.974373] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.974376] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.974378] usb usb1: Product: EHCI Host Controller
[    3.974380] usb usb1: Manufacturer: Linux 3.0.93-0.8-default ehci_hcd
[    3.974382] usb usb1: SerialNumber: 0000:00:1a.0
[    3.974499] hub 1-0:1.0: USB hub found
[    3.974505] hub 1-0:1.0: 2 ports detected
[    3.974843] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    3.974884] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.974888] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.974898] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.974952] ehci_hcd 0000:00:1d.0: debug port 2
[    3.978832] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.978849] ehci_hcd 0000:00:1d.0: irq 20, io mem 0xf6c50000
[    3.994296] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.994329] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.994331] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.994334] usb usb2: Product: EHCI Host Controller
[    3.994336] usb usb2: Manufacturer: Linux 3.0.93-0.8-default ehci_hcd
[    3.994337] usb usb2: SerialNumber: 0000:00:1d.0
[    3.994476] hub 2-0:1.0: USB hub found
[    3.994484] hub 2-0:1.0: 2 ports detected
[    4.286416] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    4.307803] sd 0:0:0:0: [sda] Write Protect is off
[    4.307806] sd 0:0:0:0: [sda] Mode Sense: 73 00 00 08
[    4.307937] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    4.308455]  sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[    4.308951] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.672289] uhci_hcd: USB Universal Host Controller Interface driver
[    4.787184] uhci_hcd 0000:01:00.4: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    4.819806] uhci_hcd 0000:01:00.4: setting latency timer to 64
[    4.819810] uhci_hcd 0000:01:00.4: UHCI Host Controller
[    4.844745] uhci_hcd 0000:01:00.4: new USB bus registered, assigned bus number 3
[    4.878317] uhci_hcd 0000:01:00.4: port count misdetected? forcing to 2 ports
[    4.911677] uhci_hcd 0000:01:00.4: irq 16, io base 0x00003c00
[    4.938996] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    4.970489] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.004856] usb usb3: Product: UHCI Host Controller
[    5.027794] usb usb3: Manufacturer: Linux 3.0.93-0.8-default uhci_hcd
[    5.027816] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.027818] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.130508] usb usb3: SerialNumber: 0000:01:00.4
[    5.130550] hub 1-1:1.0: USB hub found
[    5.174129] hub 1-1:1.0: 6 ports detected
[    5.174173] hub 3-0:1.0: USB hub found
[    5.174176] hub 3-0:1.0: 2 ports detected
[    5.339432] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    5.468459] [drm] Initialized drm 1.1.0 20060810
[    5.493564] This driver is only used in secure boot mode as default
[    5.499407] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.499413] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.499722] hub 2-1:1.0: USB hub found
[    5.499781] hub 2-1:1.0: 8 ports detected
[    5.610812] usb 3-1: new full-speed USB device number 2 using uhci_hcd
[    5.756686] usb 3-1: New USB device found, idVendor=03f0, idProduct=7029
[    5.790214] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.823534] usb 3-1: Product: Virtual Keyboard 
[    5.846384] usb 3-1: Manufacturer: HP 
[    5.873956] input: HP  Virtual Keyboard  as /devices/pci0000:00/0000:00:1c.7/0000:01:00.4/usb3/3-1/3-1:1.0/input/input0
[    5.926341] generic-usb 0003:03F0:7029.0001: input,hidraw0: USB HID v1.01 Keyboard [HP  Virtual Keyboard ] on usb-0000:01:00.4-1/input0
[    5.984635] input: HP  Virtual Keyboard  as /devices/pci0000:00/0000:00:1c.7/0000:01:00.4/usb3/3-1/3-1:1.1/input/input1
[    6.037041] generic-usb 0003:03F0:7029.0002: input,hidraw1: USB HID v1.01 Mouse [HP  Virtual Keyboard ] on usb-0000:01:00.4-1/input1
[    6.093951] usbcore: registered new interface driver usbhid
[    6.119614] usbhid: USB HID core driver
[    6.119626] usb 2-1.3: new high-speed USB device number 3 using ehci_hcd
[    6.261823] usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
[    6.261826] usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.262135] hub 2-1.3:1.0: USB hub found
[    6.262264] hub 2-1.3:1.0: 2 ports detected
[    6.373352] kjournald starting.  Commit interval 15 seconds
[    6.373547] EXT3-fs (sda2): using internal journal
[    6.373555] EXT3-fs (sda2): mounted filesystem with ordered data mode
[    7.436236] udev: starting version 147
[    7.517753] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    7.554395] ACPI: Power Button [PWRF]
[    7.574991] Disabling lock debugging due to kernel taint
[    7.600552] be2net 0000:04:00.0: PCI INT A -> GSI 32 (level, low) -> IRQ 32
[    7.600565] iTCO_vendor_support: vendor-support=0
[    7.601008] power_meter ACPI000D:00: Found ACPI power meter.
[    7.601086] [Firmware Bug]: ACPI(VGA0) defines _DOD but not _DOS
[    7.601099] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[    7.601196] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:20/LNXVIDEO:00/input/input3
[    7.601280] ACPI: Video Device [VGA0] (multi-head: yes  rom: no  post: no)
[    7.601350] [Firmware Bug]: ACPI(VGA0) defines _DOD but not _DOS
[    7.601426] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:01/device:32/LNXVIDEO:01/input/input4
[    7.601483] ACPI: Video Device [VGA0] (multi-head: yes  rom: no  post: no)
[    7.936395] be2net 0000:04:00.0: setting latency timer to 64
[    7.936764] hpilo 0000:01:00.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[    7.968536] hpilo 0000:01:00.2: setting latency timer to 64
[    7.970061] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    8.002506] Loading iSCSI transport class v2.0-870.
[    8.025250] scsi 0:3:0:0: Attached scsi generic sg0 type 12
[    8.053407] sd 0:0:0:0: Attached scsi generic sg1 type 0
[    8.078344] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[    8.104287] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    8.144316] rtc_cmos 00:09: RTC can wake from S4
[    8.165781] rtc_cmos 00:09: rtc core: registered rtc_cmos as rtc0
[    8.197419] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs
[    8.226042] hpwdt 0000:01:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    8.259173] hpwdt: New timer passed in is 30 seconds.
[    8.259481] hpwdt 0000:01:00.0: HP Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 0/OFF), priority: LAST (default = 0/LAST).
[    8.325859] hpwdt 0000:01:00.0: HP Watchdog Timer Driver: 1.3.0, timer margin: 30 seconds (nowayout=0).
[    8.393173] bnx2x: Broadcom NetXtreme II 5771x/578xx 10/20-Gigabit Ethernet Driver bnx2x 1.78.00-0 (2012/09/27)
[    8.443145] iscsi: registered transport (be2iscsi)
[    8.466364] In beiscsi_module_init, tt=ffffffffa062b040
[    8.493643] bnx2x 0000:05:00.0: PCI INT A -> GSI 40 (level, low) -> IRQ 40
[    8.527646] bnx2x 0000:05:00.0: setting latency timer to 64
[    8.528865] bnx2x 0000:05:00.0: part number 0-0-0-0
[    8.553331] be2net 0000:04:00.0: irq 98 for MSI/MSI-X
[    8.553346] be2net 0000:04:00.0: enabled 1 MSI-x vector(s)
[    8.581554] NET: Registered protocol family 10
[    8.644459] loaded kvm module (kvm-kmod-3.6)
[    8.652255] be2net 0000:04:00.0: created 0 RSS queue(s) and 1 default RX queue
[    8.717071] tun: Universal TUN/TAP device driver, 1.6
[    8.740496] tun: (C) 1999-2004 Max Krasnyansky <maxk-zC7DfRvBq/JWk0Htik3J/w@public.gmane.org>
[    8.758833] be2net 0000:04:00.0: created 1 TX queue(s)
[    8.763821] be2net 0000:04:00.0: Emulex OneConnect(be3): 10Gbps NIC  "554FLB" PF FLEX 10 port 0
[    8.764016] be2net 0000:04:00.1: PCI INT B -> GSI 36 (level, low) -> IRQ 36
[    8.764026] be2net 0000:04:00.1: setting latency timer to 64
[    8.875947] be2net 0000:04:00.1: irq 99 for MSI/MSI-X
[    8.875973] be2net 0000:04:00.1: enabled 1 MSI-x vector(s)
[    8.955591] be2net 0000:04:00.1: created 0 RSS queue(s) and 1 default RX queue
[    8.990289] bnx2x 0000:05:00.0: irq 100 for MSI/MSI-X
[    8.990313] bnx2x 0000:05:00.0: irq 101 for MSI/MSI-X
[    8.990358] bnx2x 0000:05:00.0: irq 102 for MSI/MSI-X
[    8.990383] bnx2x 0000:05:00.0: irq 103 for MSI/MSI-X
[    8.990409] bnx2x 0000:05:00.0: irq 104 for MSI/MSI-X
[    8.990429] bnx2x 0000:05:00.0: irq 105 for MSI/MSI-X
[    8.990455] bnx2x 0000:05:00.0: irq 106 for MSI/MSI-X
[    8.990475] bnx2x 0000:05:00.0: irq 107 for MSI/MSI-X
[    8.990500] bnx2x 0000:05:00.0: irq 108 for MSI/MSI-X
[    8.990526] bnx2x 0000:05:00.0: irq 109 for MSI/MSI-X
[    8.991889] bnx2x 0000:05:00.1: PCI INT B -> GSI 44 (level, low) -> IRQ 44
[    9.025982] bnx2x 0000:05:00.1: setting latency timer to 64
[    9.028393] bnx2x 0000:05:00.1: part number 0-0-0-0
[    9.052679] Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev-eth1 instead
[    9.166507] be2net 0000:04:00.1: created 1 TX queue(s)
[    9.211862] udev: renamed network interface eth1 to eth2
[    9.213185] be2net 0000:04:00.1: Emulex OneConnect(be3): 10Gbps NIC  "554FLB" PF FLEX 10 port 1
[    9.280183] be2iscsi 0000:04:00.2: PCI INT C -> GSI 37 (level, low) -> IRQ 37
[    9.316106] be2iscsi 0000:04:00.2: setting latency timer to 64
[    9.316312] bnx2x 0000:05:00.1: irq 110 for MSI/MSI-X
[    9.316337] bnx2x 0000:05:00.1: irq 111 for MSI/MSI-X
[    9.316359] bnx2x 0000:05:00.1: irq 112 for MSI/MSI-X
[    9.316380] bnx2x 0000:05:00.1: irq 113 for MSI/MSI-X
[    9.316401] bnx2x 0000:05:00.1: irq 114 for MSI/MSI-X
[    9.316420] bnx2x 0000:05:00.1: irq 115 for MSI/MSI-X
[    9.316441] bnx2x 0000:05:00.1: irq 116 for MSI/MSI-X
[    9.316463] bnx2x 0000:05:00.1: irq 117 for MSI/MSI-X
[    9.316484] bnx2x 0000:05:00.1: irq 118 for MSI/MSI-X
[    9.316504] bnx2x 0000:05:00.1: irq 119 for MSI/MSI-X
[    9.317643] scsi1 : Emulex 10Gbe open-iscsi Initiator Driver
[    9.317800] bnx2x 0000:21:00.0: PCI INT A -> GSI 64 (level, low) -> IRQ 64
[    9.317817] bnx2x 0000:21:00.0: setting latency timer to 64
[    9.319962] bnx2x 0000:21:00.0: part number 0-0-0-0
[    9.666468] bnx2x 0000:21:00.0: irq 120 for MSI/MSI-X
[    9.666493] bnx2x 0000:21:00.0: irq 121 for MSI/MSI-X
[    9.666516] bnx2x 0000:21:00.0: irq 122 for MSI/MSI-X
[    9.666539] bnx2x 0000:21:00.0: irq 123 for MSI/MSI-X
[    9.666564] bnx2x 0000:21:00.0: irq 124 for MSI/MSI-X
[    9.666585] bnx2x 0000:21:00.0: irq 125 for MSI/MSI-X
[    9.666606] bnx2x 0000:21:00.0: irq 126 for MSI/MSI-X
[    9.666627] bnx2x 0000:21:00.0: irq 127 for MSI/MSI-X
[    9.666649] bnx2x 0000:21:00.0: irq 128 for MSI/MSI-X
[    9.666671] bnx2x 0000:21:00.0: irq 129 for MSI/MSI-X
[    9.668316] bnx2x 0000:21:00.1: PCI INT B -> GSI 68 (level, low) -> IRQ 68
[    9.699994] bnx2x 0000:21:00.1: setting latency timer to 64
[    9.702100] bnx2x 0000:21:00.1: part number 0-0-0-0
[    9.761579] scsi host1: BM_3651 : No boot session
[    9.837209] be2iscsi 0000:04:00.3: PCI INT D -> GSI 38 (level, low) -> IRQ 38
[    9.870475] be2iscsi 0000:04:00.3: setting latency timer to 64
[    9.870604] scsi2 : Emulex 10Gbe open-iscsi Initiator Driver
[   10.029667] bnx2x 0000:21:00.1: irq 130 for MSI/MSI-X
[   10.029696] bnx2x 0000:21:00.1: irq 131 for MSI/MSI-X
[   10.029717] bnx2x 0000:21:00.1: irq 132 for MSI/MSI-X
[   10.029740] bnx2x 0000:21:00.1: irq 133 for MSI/MSI-X
[   10.029761] bnx2x 0000:21:00.1: irq 134 for MSI/MSI-X
[   10.029782] bnx2x 0000:21:00.1: irq 135 for MSI/MSI-X
[   10.029804] bnx2x 0000:21:00.1: irq 136 for MSI/MSI-X
[   10.029826] bnx2x 0000:21:00.1: irq 137 for MSI/MSI-X
[   10.029853] bnx2x 0000:21:00.1: irq 138 for MSI/MSI-X
[   10.029876] bnx2x 0000:21:00.1: irq 139 for MSI/MSI-X
[   10.254483] scsi host2: BM_3651 : No boot session
[   10.831192] loop: module loaded
[   10.867766] kjournald starting.  Commit interval 15 seconds
[   10.867890] EXT3-fs (sda1): using internal journal
[   10.867897] EXT3-fs (sda1): mounted filesystem with ordered data mode
[   10.868925] kjournald starting.  Commit interval 15 seconds
[   10.869014] EXT3-fs (sda5): using internal journal
[   10.869019] EXT3-fs (sda5): mounted filesystem with ordered data mode
[   10.869759] kjournald starting.  Commit interval 15 seconds
[   10.869854] EXT3-fs (sda3): using internal journal
[   10.869859] EXT3-fs (sda3): mounted filesystem with ordered data mode
[   12.005373] Rounding down aligned max_sectors from 4294967295 to 4294967288
[   13.116201] console [kbox0] enabled
[   13.180547] kbox: kbox module init success
[   13.180957] SIGKILL_catch: Planted jprobe at ffffffff81074b90, handler addr ffffffffa044d7b0
[   17.160360] device-mapper: uevent: version 1.0.3
[   17.160670] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
[   30.772760] pcc-cpufreq: (v1.10.00) driver loaded with frequency limits: 1200 MHz, 2600 MHz
[   32.898948] NET: Registered protocol family 17
[   32.933874] be2net 0000:04:00.0: eth0: Link down
[   32.940528] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   61.228303] be2net 0000:04:00.1: eth1: Link up
[   63.103173] ipmi message handler version 39.2
[   63.132161] IPMI System Interface driver.
[   63.132236] ipmi_si: probing via ACPI
[   63.132307] ipmi_si 00:03: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[   63.132311] ipmi_si: Adding ACPI-specified kcs state machine
[   63.132341] ipmi_si: probing via SMBIOS
[   63.132347] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[   63.132351] ipmi_si: Adding SMBIOS-specified kcs state machine duplicate interface
[   63.132358] ipmi_si: probing via SPMI
[   63.132363] ipmi_si: SPMI: io 0xca2 regsize 2 spacing 2 irq 0
[   63.132367] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
[   63.132374] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[   63.290971] ipmi_si 00:03: Found new BMC (man_id: 0x00000b, prod_id: 0x2020, dev_id: 0x13)
[   63.290986] ipmi_si 00:03: IPMI kcs interface initialized
[   63.296326] ipmi device interface
[   64.117253] Dump module init successful
[   64.783455] Ebtables v2.0 registered
[   64.823599] ip_tables: (C) 2000-2006 Netfilter Core Team
[   64.828877] type=1325 audit(1405607370.331:2): table=filter family=2 entries=0
[   64.828958] type=1300 audit(1405607370.331:2): arch=c000003e syscall=175 success=yes exit=0 a0=7f28f8407000 a1=1ea6 a2=61e220 a3=7fff76af8d40 items=0 ppid=10071 pid=10072 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="modprobe" exe="/sbin/modprobe" key=(null)
[   64.845876] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   64.850795] type=1325 audit(1405607370.351:3): table=filter family=10 entries=0
[   64.850876] type=1300 audit(1405607370.351:3): arch=c000003e syscall=175 success=yes exit=0 a0=7fb49f81d000 a1=1e8e a2=61e220 a3=7fff5d5018c0 items=0 ppid=10077 pid=10078 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="modprobe" exe="/sbin/modprobe" key=(null)
[   65.149769] 2014-07-17 14:29:30: libvirtd[10036] try to send SIGKILL to qemu-kvm[10088]
[   65.294836] type=1325 audit(1405607370.795:4): table=filter family=2 entries=0
[   65.294950] type=1325 audit(1405607370.795:4): table=filter family=10 entries=0
[   65.295550] type=1300 audit(1405607370.795:4): arch=c000003e syscall=56 success=yes exit=10116 a0=6c020011 a1=7f463001fe80 a2=8 a3=0 items=0 ppid=1 pid=10036 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="libvirtd" exe="/usr/sbin/libvirtd" key=(null)
[   65.295605] type=1300 audit(1405607370.795:5): arch=c000003e syscall=56 success=yes exit=0 a0=6c020011 a1=7f463001fe80 a2=8 a3=0 items=0 ppid=10036 pid=10116 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="libvirtd" exe="/usr/sbin/libvirtd" key=(null)
[   65.295618] type=1317 audit(1405607370.795:5): fd0=0 fd1=0
[   69.276656] type=2404 audit(1405607374.787:6): user pid=10362 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=be:ad:b5:d8:34:7b:18:09:48:73:0a:d0:f7:09:1a:e0 [MD5] direction=? spid=10362 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   72.083643] eth1: no IPv6 routers present
[   74.387848] audit_printk_skb: 12 callbacks suppressed
[   74.411257] type=1100 audit(1405607379.911:11): user pid=10135 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=/dev/tty1 res=failed)'
[   74.411414] type=1112 audit(1405607379.935:12): user pid=10135 uid=0 auid=4294967295 ses=4294967295 msg='op=login acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=tty1 res=failed)'
[   85.149239] type=1100 audit(1405607390.695:13): user pid=10135 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=/dev/tty1 res=failed)'
[   85.149303] type=1112 audit(1405607390.695:14): user pid=10135 uid=0 auid=4294967295 ses=4294967295 msg='op=login acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=tty1 res=failed)'
[   90.089681] type=2404 audit(1405607395.647:15): user pid=10621 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=be:ad:b5:d8:34:7b:18:09:48:73:0a:d0:f7:09:1a:e0 [MD5] direction=? spid=10621 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   90.089808] type=2404 audit(1405607395.647:16): user pid=10621 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=35:88:b2:86:82:a2:e8:a9:ef:3b:83:96:63:a9:f6:d3 [MD5] direction=? spid=10621 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   90.090008] type=2404 audit(1405607395.647:17): user pid=10621 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=bb:ef:77:ed:c1:8b:8d:53:73:48:02:d2:e6:e3:00:60 [MD5] direction=? spid=10621 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   90.090494] type=2407 audit(1405607395.647:18): user pid=10620 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=10621 suid=71 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   90.090639] type=2407 audit(1405607395.647:19): user pid=10620 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=10621 suid=71 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[   96.263375] type=1101 audit(1405607401.831:20): user pid=10734 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263424] type=1101 audit(1405607401.831:21): user pid=10735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263445] type=1101 audit(1405607401.831:22): user pid=10733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263462] type=1103 audit(1405607401.831:23): user pid=10734 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263506] type=1103 audit(1405607401.831:24): user pid=10735 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263521] type=1103 audit(1405607401.831:25): user pid=10733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[   96.263556] type=1006 audit(1405607401.835:26): login pid=10734 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=1
[   96.263600] type=1006 audit(1405607401.835:27): login pid=10735 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=2
[   96.263617] type=1006 audit(1405607401.835:28): login pid=10733 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=3
[   96.272232] type=1105 audit(1405607401.843:29): user pid=10733 uid=0 auid=0 ses=3 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.253472] audit_printk_skb: 63 callbacks suppressed
[  156.278591] type=1101 audit(1405607461.951:51): user pid=11609 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.278618] type=1101 audit(1405607461.979:52): user pid=11610 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.278688] type=1103 audit(1405607461.979:53): user pid=11609 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.278708] type=1103 audit(1405607461.979:54): user pid=11610 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.278801] type=1006 audit(1405607461.979:55): login pid=11610 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=5
[  156.278817] type=1006 audit(1405607461.979:56): login pid=11609 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=6
[  156.279127] type=1105 audit(1405607461.979:57): user pid=11610 uid=0 auid=0 ses=5 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.279317] type=1105 audit(1405607461.979:58): user pid=11609 uid=0 auid=0 ses=6 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.282452] type=1104 audit(1405607461.983:59): user pid=11610 uid=0 auid=0 ses=5 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  156.282736] type=1106 audit(1405607461.983:60): user pid=11610 uid=0 auid=0 ses=5 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  173.475748] DRHD: handling fault status reg 2
[  173.495919] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[  173.495921] DMAR:[fault reason 02] Present bit in context entry is clear
[  173.562686] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[  173.562687] DMAR:[fault reason 02] Present bit in context entry is clear
[  173.630269] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[  173.630271] DMAR:[fault reason 02] Present bit in context entry is clear
[  173.697341] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[  173.697342] DMAR:[fault reason 02] Present bit in context entry is clear
[  215.349947] audit_printk_skb: 45 callbacks suppressed
[  215.373454] type=1101 audit(1405607521.175:76): user pid=12415 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  215.373548] type=1103 audit(1405607521.199:77): user pid=12415 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  215.373677] type=1006 audit(1405607521.199:78): login pid=12415 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=8
[  215.374107] type=1105 audit(1405607521.199:79): user pid=12415 uid=0 auid=0 ses=8 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  215.377416] type=1104 audit(1405607521.203:80): user pid=12415 uid=0 auid=0 ses=8 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  215.377611] type=1106 audit(1405607521.203:81): user pid=12415 uid=0 auid=0 ses=8 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  275.251799] type=1101 audit(1405607581.207:82): user pid=13151 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  275.251877] type=1103 audit(1405607581.207:83): user pid=13151 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  275.251968] type=1006 audit(1405607581.207:84): login pid=13151 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=9
[  275.252278] type=1105 audit(1405607581.207:85): user pid=13151 uid=0 auid=0 ses=9 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  275.255545] type=1104 audit(1405607581.211:86): user pid=13151 uid=0 auid=0 ses=9 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  275.255735] type=1106 audit(1405607581.211:87): user pid=13151 uid=0 auid=0 ses=9 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  283.239739] type=2404 audit(1405607589.211:88): user pid=13246 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=be:ad:b5:d8:34:7b:18:09:48:73:0a:d0:f7:09:1a:e0 [MD5] direction=? spid=13246 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  283.239870] type=2404 audit(1405607589.211:89): user pid=13246 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=35:88:b2:86:82:a2:e8:a9:ef:3b:83:96:63:a9:f6:d3 [MD5] direction=? spid=13246 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  283.240067] type=2404 audit(1405607589.211:90): user pid=13246 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=bb:ef:77:ed:c1:8b:8d:53:73:48:02:d2:e6:e3:00:60 [MD5] direction=? spid=13246 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  283.240550] type=2407 audit(1405607589.211:91): user pid=13245 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=13246 suid=71 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  283.240697] type=2407 audit(1405607589.211:92): user pid=13245 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=13246 suid=71 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  284.169211] type=1100 audit(1405607590.143:93): user pid=13254 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.176, addr=156.156.2.176, terminal=ssh res=success)'
[  284.169349] type=1101 audit(1405607590.143:94): user pid=13254 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.176, addr=156.156.2.176, terminal=ssh res=success)'
[  284.245192] type=2404 audit(1405607590.219:95): user pid=13245 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=session fp=? direction=both spid=13246 suid=71 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[  284.245790] type=1100 audit(1405607590.219:96): user pid=13245 uid=0 auid=4294967295 ses=4294967295 msg='op=success acct="root" exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=ssh res=success)'
[  284.246142] type=1103 audit(1405607590.219:97): user pid=13245 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.176, addr=156.156.2.176, terminal=ssh res=success)'
[  335.129914] audit_printk_skb: 24 callbacks suppressed
[  335.153341] type=1101 audit(1405607641.215:106): user pid=13940 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  335.153427] type=1103 audit(1405607641.239:107): user pid=13940 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  335.153519] type=1006 audit(1405607641.239:108): login pid=13940 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=11
[  335.153855] type=1105 audit(1405607641.239:109): user pid=13940 uid=0 auid=0 ses=11 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  335.157057] type=1104 audit(1405607641.239:110): user pid=13940 uid=0 auid=0 ses=11 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  335.157270] type=1106 audit(1405607641.243:111): user pid=13940 uid=0 auid=0 ses=11 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  354.237427] DRHD: handling fault status reg 402
[  354.258474] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[  354.258477] DMAR:[fault reason 02] Present bit in context entry is clear
[  354.327010] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[  354.327011] DMAR:[fault reason 02] Present bit in context entry is clear
[  354.401175] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[  354.401177] DMAR:[fault reason 02] Present bit in context entry is clear
[  354.472394] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[  354.472395] DMAR:[fault reason 02] Present bit in context entry is clear
[  395.031420] type=1101 audit(1405607701.243:112): user pid=14682 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  395.031496] type=1103 audit(1405607701.243:113): user pid=14682 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  395.031586] type=1006 audit(1405607701.243:114): login pid=14682 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=12
[  395.031894] type=1105 audit(1405607701.243:115): user pid=14682 uid=0 auid=0 ses=12 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  395.035111] type=1104 audit(1405607701.247:116): user pid=14682 uid=0 auid=0 ses=12 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  395.035319] type=1106 audit(1405607701.247:117): user pid=14682 uid=0 auid=0 ses=12 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  454.909457] type=1101 audit(1405607761.251:118): user pid=15409 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  454.909536] type=1103 audit(1405607761.251:119): user pid=15409 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  454.909624] type=1006 audit(1405607761.251:120): login pid=15409 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=13
[  454.909931] type=1105 audit(1405607761.251:121): user pid=15409 uid=0 auid=0 ses=13 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  454.913194] type=1104 audit(1405607761.255:122): user pid=15409 uid=0 auid=0 ses=13 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  454.913391] type=1106 audit(1405607761.255:123): user pid=15409 uid=0 auid=0 ses=13 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  514.787511] type=1101 audit(1405607821.259:124): user pid=16114 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  514.787586] type=1103 audit(1405607821.259:125): user pid=16114 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  514.787676] type=1006 audit(1405607821.259:126): login pid=16114 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=14
[  514.787984] type=1105 audit(1405607821.259:127): user pid=16114 uid=0 auid=0 ses=14 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  514.791267] type=1104 audit(1405607821.263:128): user pid=16114 uid=0 auid=0 ses=14 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  514.791467] type=1106 audit(1405607821.263:129): user pid=16114 uid=0 auid=0 ses=14 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  534.988908] DRHD: handling fault status reg 2
[  535.009152] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[  535.009155] DMAR:[fault reason 02] Present bit in context entry is clear
[  535.078104] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[  535.078113] DMAR:[fault reason 02] Present bit in context entry is clear
[  535.147867] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[  535.147869] DMAR:[fault reason 02] Present bit in context entry is clear
[  535.220080] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[  535.220082] DMAR:[fault reason 02] Present bit in context entry is clear
[  574.665573] type=1101 audit(1405607881.267:130): user pid=16843 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  574.665649] type=1103 audit(1405607881.267:131): user pid=16843 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  574.665737] type=1006 audit(1405607881.267:132): login pid=16843 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=15
[  574.666078] type=1105 audit(1405607881.267:133): user pid=16843 uid=0 auid=0 ses=15 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  574.669262] type=1104 audit(1405607881.267:134): user pid=16843 uid=0 auid=0 ses=15 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  574.669471] type=1106 audit(1405607881.271:135): user pid=16843 uid=0 auid=0 ses=15 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  634.543510] type=1101 audit(1405607941.271:136): user pid=17570 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  634.543584] type=1103 audit(1405607941.271:137): user pid=17570 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  634.543672] type=1006 audit(1405607941.271:138): login pid=17570 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=16
[  634.543981] type=1105 audit(1405607941.271:139): user pid=17570 uid=0 auid=0 ses=16 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  634.547228] type=1104 audit(1405607941.275:140): user pid=17570 uid=0 auid=0 ses=16 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  634.547418] type=1106 audit(1405607941.275:141): user pid=17570 uid=0 auid=0 ses=16 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  694.421479] type=1101 audit(1405608001.279:142): user pid=18274 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  694.421554] type=1103 audit(1405608001.279:143): user pid=18274 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  694.421643] type=1006 audit(1405608001.279:144): login pid=18274 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=17
[  694.421948] type=1105 audit(1405608001.279:145): user pid=18274 uid=0 auid=0 ses=17 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  694.425212] type=1104 audit(1405608001.283:146): user pid=18274 uid=0 auid=0 ses=17 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  694.425421] type=1106 audit(1405608001.283:147): user pid=18274 uid=0 auid=0 ses=17 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  715.451118] DRHD: handling fault status reg 402
[  715.472156] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[  715.472158] DMAR:[fault reason 02] Present bit in context entry is clear
[  715.534930] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[  715.534932] DMAR:[fault reason 02] Present bit in context entry is clear
[  715.597477] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[  715.597479] DMAR:[fault reason 02] Present bit in context entry is clear
[  715.660394] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[  715.660396] DMAR:[fault reason 02] Present bit in context entry is clear
[  754.299578] type=1101 audit(1405608061.287:148): user pid=19008 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  754.299653] type=1103 audit(1405608061.287:149): user pid=19008 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  754.299743] type=1006 audit(1405608061.287:150): login pid=19008 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=18
[  754.300051] type=1105 audit(1405608061.287:151): user pid=19008 uid=0 auid=0 ses=18 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  754.303354] type=1104 audit(1405608061.291:152): user pid=19008 uid=0 auid=0 ses=18 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  754.303550] type=1106 audit(1405608061.291:153): user pid=19008 uid=0 auid=0 ses=18 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  814.177631] type=1101 audit(1405608121.295:154): user pid=19728 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  814.177707] type=1103 audit(1405608121.295:155): user pid=19728 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  814.177798] type=1006 audit(1405608121.295:156): login pid=19728 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=19
[  814.178125] type=1105 audit(1405608121.295:157): user pid=19728 uid=0 auid=0 ses=19 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  814.181406] type=1104 audit(1405608121.295:158): user pid=19728 uid=0 auid=0 ses=19 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  814.181657] type=1106 audit(1405608121.299:159): user pid=19728 uid=0 auid=0 ses=19 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  874.055772] type=1101 audit(1405608181.299:160): user pid=20455 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  874.055846] type=1103 audit(1405608181.299:161): user pid=20455 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  874.055937] type=1006 audit(1405608181.299:162): login pid=20455 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=20
[  874.056244] type=1105 audit(1405608181.299:163): user pid=20455 uid=0 auid=0 ses=20 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  874.059487] type=1104 audit(1405608181.303:164): user pid=20455 uid=0 auid=0 ses=20 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  874.059679] type=1106 audit(1405608181.303:165): user pid=20455 uid=0 auid=0 ses=20 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  896.212497] DRHD: handling fault status reg 2
[  896.234503] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[  896.234505] DMAR:[fault reason 02] Present bit in context entry is clear
[  896.310159] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[  896.310161] DMAR:[fault reason 02] Present bit in context entry is clear
[  896.383462] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[  896.383464] DMAR:[fault reason 02] Present bit in context entry is clear
[  896.455233] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[  896.455235] DMAR:[fault reason 02] Present bit in context entry is clear
[  933.933807] type=1101 audit(1405608241.307:166): user pid=21167 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  933.933882] type=1103 audit(1405608241.307:167): user pid=21167 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  933.933972] type=1006 audit(1405608241.307:168): login pid=21167 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=21
[  933.934281] type=1105 audit(1405608241.307:169): user pid=21167 uid=0 auid=0 ses=21 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  933.937497] type=1104 audit(1405608241.311:170): user pid=21167 uid=0 auid=0 ses=21 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  933.937708] type=1106 audit(1405608241.311:171): user pid=21167 uid=0 auid=0 ses=21 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.811869] type=1101 audit(1405608301.315:172): user pid=21932 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.811922] type=1101 audit(1405608301.315:173): user pid=21933 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.811946] type=1103 audit(1405608301.315:174): user pid=21932 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.811996] type=1103 audit(1405608301.315:175): user pid=21933 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.812037] type=1006 audit(1405608301.315:176): login pid=21932 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=22
[  993.812083] type=1006 audit(1405608301.315:177): login pid=21933 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=23
[  993.812187] type=1101 audit(1405608301.315:178): user pid=21934 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.812262] type=1103 audit(1405608301.315:179): user pid=21934 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.812353] type=1105 audit(1405608301.315:180): user pid=21932 uid=0 auid=0 ses=22 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[  993.812361] type=1006 audit(1405608301.315:181): login pid=21934 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=24
[ 1053.727066] audit_printk_skb: 24 callbacks suppressed
[ 1053.750452] type=1101 audit(1405608361.359:190): user pid=22679 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.750477] type=1101 audit(1405608361.383:191): user pid=22680 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.750561] type=1103 audit(1405608361.383:192): user pid=22679 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.750579] type=1103 audit(1405608361.383:193): user pid=22680 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.750674] type=1006 audit(1405608361.383:194): login pid=22680 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=25
[ 1053.750688] type=1006 audit(1405608361.383:195): login pid=22679 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=26
[ 1053.750980] type=1105 audit(1405608361.383:196): user pid=22680 uid=0 auid=0 ses=25 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.751192] type=1105 audit(1405608361.383:197): user pid=22679 uid=0 auid=0 ses=26 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.754278] type=1104 audit(1405608361.387:198): user pid=22680 uid=0 auid=0 ses=25 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1053.754479] type=1106 audit(1405608361.387:199): user pid=22680 uid=0 auid=0 ses=25 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1076.964015] DRHD: handling fault status reg 402
[ 1076.984935] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1076.984937] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1077.053758] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1077.053760] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1077.122764] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1077.122766] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1077.192944] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1077.192946] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1113.681802] audit_printk_skb: 6 callbacks suppressed
[ 1113.704897] type=1101 audit(1405608421.443:202): user pid=23414 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1113.704995] type=1103 audit(1405608421.467:203): user pid=23414 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1113.705107] type=1006 audit(1405608421.467:204): login pid=23414 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=27
[ 1113.705448] type=1105 audit(1405608421.467:205): user pid=23414 uid=0 auid=0 ses=27 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1113.708681] type=1104 audit(1405608421.471:206): user pid=23414 uid=0 auid=0 ses=27 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1113.708890] type=1106 audit(1405608421.471:207): user pid=23414 uid=0 auid=0 ses=27 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1173.582991] type=1101 audit(1405608481.471:208): user pid=24142 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1173.583065] type=1103 audit(1405608481.471:209): user pid=24142 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1173.583155] type=1006 audit(1405608481.471:210): login pid=24142 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=28
[ 1173.583471] type=1105 audit(1405608481.471:211): user pid=24142 uid=0 auid=0 ses=28 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1173.586708] type=1104 audit(1405608481.475:212): user pid=24142 uid=0 auid=0 ses=28 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1173.586901] type=1106 audit(1405608481.475:213): user pid=24142 uid=0 auid=0 ses=28 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1233.461012] type=1101 audit(1405608541.479:214): user pid=24869 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1233.461090] type=1103 audit(1405608541.479:215): user pid=24869 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1233.461180] type=1006 audit(1405608541.479:216): login pid=24869 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=29
[ 1233.461487] type=1105 audit(1405608541.479:217): user pid=24869 uid=0 auid=0 ses=29 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1233.464732] type=1104 audit(1405608541.483:218): user pid=24869 uid=0 auid=0 ses=29 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1233.464928] type=1106 audit(1405608541.483:219): user pid=24869 uid=0 auid=0 ses=29 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1257.726004] DRHD: handling fault status reg 2
[ 1257.745905] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1257.745907] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1257.814858] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1257.814860] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1257.886046] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1257.886048] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1257.957446] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1257.957448] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1293.339087] type=1101 audit(1405608601.487:220): user pid=25589 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1293.339161] type=1103 audit(1405608601.487:221): user pid=25589 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1293.339252] type=1006 audit(1405608601.487:222): login pid=25589 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=30
[ 1293.339558] type=1105 audit(1405608601.487:223): user pid=25589 uid=0 auid=0 ses=30 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1293.342892] type=1104 audit(1405608601.491:224): user pid=25589 uid=0 auid=0 ses=30 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1293.343088] type=1106 audit(1405608601.491:225): user pid=25589 uid=0 auid=0 ses=30 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1353.217184] type=1101 audit(1405608661.495:226): user pid=26301 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1353.217257] type=1103 audit(1405608661.495:227): user pid=26301 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1353.217369] type=1006 audit(1405608661.495:228): login pid=26301 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=31
[ 1353.217675] type=1105 audit(1405608661.495:229): user pid=26301 uid=0 auid=0 ses=31 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1353.220885] type=1104 audit(1405608661.499:230): user pid=26301 uid=0 auid=0 ses=31 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1353.221075] type=1106 audit(1405608661.499:231): user pid=26301 uid=0 auid=0 ses=31 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1413.095152] type=1101 audit(1405608721.499:232): user pid=27053 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1413.095227] type=1103 audit(1405608721.499:233): user pid=27053 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1413.095315] type=1006 audit(1405608721.499:234): login pid=27053 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=32
[ 1413.095623] type=1105 audit(1405608721.499:235): user pid=27053 uid=0 auid=0 ses=32 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1413.098897] type=1104 audit(1405608721.503:236): user pid=27053 uid=0 auid=0 ses=32 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1413.099088] type=1106 audit(1405608721.503:237): user pid=27053 uid=0 auid=0 ses=32 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1438.477262] DRHD: handling fault status reg 402
[ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1472.973244] type=1101 audit(1405608781.507:238): user pid=27846 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1472.973319] type=1103 audit(1405608781.507:239): user pid=27846 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1472.973412] type=1006 audit(1405608781.507:240): login pid=27846 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=33
[ 1472.973727] type=1105 audit(1405608781.507:241): user pid=27846 uid=0 auid=0 ses=33 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1472.976970] type=1104 audit(1405608781.511:242): user pid=27846 uid=0 auid=0 ses=33 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1472.977166] type=1106 audit(1405608781.511:243): user pid=27846 uid=0 auid=0 ses=33 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1532.851264] type=1101 audit(1405608841.515:244): user pid=28550 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1532.851337] type=1103 audit(1405608841.515:245): user pid=28550 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1532.851427] type=1006 audit(1405608841.515:246): login pid=28550 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=34
[ 1532.851734] type=1105 audit(1405608841.515:247): user pid=28550 uid=0 auid=0 ses=34 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1532.855001] type=1104 audit(1405608841.519:248): user pid=28550 uid=0 auid=0 ses=34 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1532.855217] type=1106 audit(1405608841.519:249): user pid=28550 uid=0 auid=0 ses=34 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1592.729344] type=1101 audit(1405608901.523:250): user pid=29277 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1592.729419] type=1103 audit(1405608901.523:251): user pid=29277 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1592.729528] type=1006 audit(1405608901.523:252): login pid=29277 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=35
[ 1592.729841] type=1105 audit(1405608901.523:253): user pid=29277 uid=0 auid=0 ses=35 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1592.733073] type=1104 audit(1405608901.527:254): user pid=29277 uid=0 auid=0 ses=35 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1592.733264] type=1106 audit(1405608901.527:255): user pid=29277 uid=0 auid=0 ses=35 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1619.238616] DRHD: handling fault status reg 2
[ 1619.258942] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1619.258945] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1619.331099] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1619.331101] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1619.403716] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1619.403718] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1619.475130] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1619.475132] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1652.607393] type=1101 audit(1405608961.527:256): user pid=30017 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1652.607472] type=1103 audit(1405608961.527:257): user pid=30017 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1652.607562] type=1006 audit(1405608961.527:258): login pid=30017 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=36
[ 1652.607873] type=1105 audit(1405608961.527:259): user pid=30017 uid=0 auid=0 ses=36 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1652.611159] type=1104 audit(1405608961.531:260): user pid=30017 uid=0 auid=0 ses=36 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1652.611353] type=1106 audit(1405608961.531:261): user pid=30017 uid=0 auid=0 ses=36 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1712.485434] type=1101 audit(1405609021.535:262): user pid=30723 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1712.485509] type=1103 audit(1405609021.535:263): user pid=30723 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1712.485597] type=1006 audit(1405609021.535:264): login pid=30723 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=37
[ 1712.485905] type=1105 audit(1405609021.535:265): user pid=30723 uid=0 auid=0 ses=37 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1712.489170] type=1104 audit(1405609021.539:266): user pid=30723 uid=0 auid=0 ses=37 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1712.489360] type=1106 audit(1405609021.539:267): user pid=30723 uid=0 auid=0 ses=37 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1772.363517] type=1101 audit(1405609081.543:268): user pid=31488 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1772.363591] type=1103 audit(1405609081.543:269): user pid=31488 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1772.363680] type=1006 audit(1405609081.543:270): login pid=31488 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=38
[ 1772.363993] type=1105 audit(1405609081.543:271): user pid=31488 uid=0 auid=0 ses=38 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1772.367250] type=1104 audit(1405609081.547:272): user pid=31488 uid=0 auid=0 ses=38 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1772.367444] type=1106 audit(1405609081.547:273): user pid=31488 uid=0 auid=0 ses=38 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1800.000489] DRHD: handling fault status reg 402
[ 1800.021541] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1800.021543] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1800.091690] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1800.091692] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1800.163050] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1800.163052] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1800.234259] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1800.234261] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1832.241594] type=1101 audit(1405609141.551:274): user pid=32270 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1832.241669] type=1103 audit(1405609141.551:275): user pid=32270 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1832.241783] type=1006 audit(1405609141.551:276): login pid=32270 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=39
[ 1832.242093] type=1105 audit(1405609141.551:277): user pid=32270 uid=0 auid=0 ses=39 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1832.245347] type=1104 audit(1405609141.555:278): user pid=32270 uid=0 auid=0 ses=39 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1832.245541] type=1106 audit(1405609141.555:279): user pid=32270 uid=0 auid=0 ses=39 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.119680] type=1101 audit(1405609201.555:280): user pid=33036 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.119735] type=1101 audit(1405609201.555:281): user pid=33037 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.119755] type=1103 audit(1405609201.555:282): user pid=33036 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.119809] type=1103 audit(1405609201.555:283): user pid=33037 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.119844] type=1006 audit(1405609201.555:284): login pid=33036 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=40
[ 1892.119898] type=1006 audit(1405609201.555:285): login pid=33037 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=41
[ 1892.119983] type=1101 audit(1405609201.555:286): user pid=33038 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.120060] type=1103 audit(1405609201.555:287): user pid=33038 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1892.120151] type=1006 audit(1405609201.555:288): login pid=33038 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=42
[ 1892.120159] type=1105 audit(1405609201.555:289): user pid=33036 uid=0 auid=0 ses=40 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.034809] audit_printk_skb: 24 callbacks suppressed
[ 1952.058277] type=1101 audit(1405609261.599:298): user pid=33768 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.058306] type=1101 audit(1405609261.623:299): user pid=33769 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.058393] type=1103 audit(1405609261.623:300): user pid=33769 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.058409] type=1103 audit(1405609261.623:301): user pid=33768 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.058486] type=1006 audit(1405609261.623:302): login pid=33769 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=43
[ 1952.058503] type=1006 audit(1405609261.623:303): login pid=33768 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=44
[ 1952.058796] type=1105 audit(1405609261.623:304): user pid=33769 uid=0 auid=0 ses=43 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.058812] type=1105 audit(1405609261.623:305): user pid=33768 uid=0 auid=0 ses=44 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.062193] type=1104 audit(1405609261.627:306): user pid=33769 uid=0 auid=0 ses=43 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1952.062384] type=1106 audit(1405609261.627:307): user pid=33769 uid=0 auid=0 ses=43 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 1980.751842] DRHD: handling fault status reg 2
[ 1980.772115] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 1980.772117] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1980.841550] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 1980.841552] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1980.913924] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 1980.913926] DMAR:[fault reason 02] Present bit in context entry is clear
[ 1980.985694] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 1980.985696] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2011.988914] audit_printk_skb: 6 callbacks suppressed
[ 2012.012315] type=1101 audit(1405609321.683:310): user pid=34518 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2012.012460] type=1103 audit(1405609321.707:311): user pid=34518 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2012.012599] type=1006 audit(1405609321.707:312): login pid=34518 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=45
[ 2012.012913] type=1105 audit(1405609321.707:313): user pid=34518 uid=0 auid=0 ses=45 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2012.016187] type=1104 audit(1405609321.711:314): user pid=34518 uid=0 auid=0 ses=45 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2012.016381] type=1106 audit(1405609321.711:315): user pid=34518 uid=0 auid=0 ses=45 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2071.890589] type=1101 audit(1405609381.715:316): user pid=35328 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2071.890675] type=1103 audit(1405609381.715:317): user pid=35328 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2071.890765] type=1006 audit(1405609381.715:318): login pid=35328 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=46
[ 2071.891080] type=1105 audit(1405609381.715:319): user pid=35328 uid=0 auid=0 ses=46 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2071.894339] type=1104 audit(1405609381.719:320): user pid=35328 uid=0 auid=0 ses=46 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2071.894532] type=1106 audit(1405609381.719:321): user pid=35328 uid=0 auid=0 ses=46 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2131.768632] type=1101 audit(1405609441.723:322): user pid=36033 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2131.768728] type=1103 audit(1405609441.723:323): user pid=36033 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2131.768821] type=1006 audit(1405609441.723:324): login pid=36033 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=47
[ 2131.769128] type=1105 audit(1405609441.723:325): user pid=36033 uid=0 auid=0 ses=47 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2131.772400] type=1104 audit(1405609441.727:326): user pid=36033 uid=0 auid=0 ses=47 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2131.772591] type=1106 audit(1405609441.727:327): user pid=36033 uid=0 auid=0 ses=47 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2161.513224] DRHD: handling fault status reg 402
[ 2161.534349] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 2161.534352] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2161.603361] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 2161.603363] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2161.675464] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 2161.675466] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2161.747014] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 2161.747016] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2191.646679] type=1101 audit(1405609501.727:328): user pid=36838 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2191.646756] type=1103 audit(1405609501.727:329): user pid=36838 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2191.646846] type=1006 audit(1405609501.727:330): login pid=36838 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=48
[ 2191.647157] type=1105 audit(1405609501.727:331): user pid=36838 uid=0 auid=0 ses=48 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2191.650451] type=1104 audit(1405609501.731:332): user pid=36838 uid=0 auid=0 ses=48 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2191.650659] type=1106 audit(1405609501.731:333): user pid=36838 uid=0 auid=0 ses=48 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2251.524020] type=1101 audit(1405609561.735:334): user pid=45856 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2251.524074] type=1103 audit(1405609561.735:335): user pid=45856 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2251.524127] type=1006 audit(1405609561.735:336): login pid=45856 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=49
[ 2251.524311] type=1105 audit(1405609561.735:337): user pid=45856 uid=0 auid=0 ses=49 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2251.547734] type=1104 audit(1405609561.759:338): user pid=45856 uid=0 auid=0 ses=49 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2251.547852] type=1106 audit(1405609561.759:339): user pid=45856 uid=0 auid=0 ses=49 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2292.147935] type=1100 audit(1405609602.447:340): user pid=11250 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=/dev/tty1 res=failed)'
[ 2292.148500] type=1112 audit(1405609602.447:341): user pid=11250 uid=0 auid=4294967295 ses=4294967295 msg='op=login acct="root" exe="/bin/login" (hostname=?, addr=?, terminal=tty1 res=failed)'
[ 2299.085868] type=2404 audit(1405609609.399:342): user pid=8041 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=be:ad:b5:d8:34:7b:18:09:48:73:0a:d0:f7:09:1a:e0 [MD5] direction=? spid=8041 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2299.085957] type=2404 audit(1405609609.399:343): user pid=8041 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=35:88:b2:86:82:a2:e8:a9:ef:3b:83:96:63:a9:f6:d3 [MD5] direction=? spid=8041 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2299.086095] type=2404 audit(1405609609.399:344): user pid=8041 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=server fp=bb:ef:77:ed:c1:8b:8d:53:73:48:02:d2:e6:e3:00:60 [MD5] direction=? spid=8041 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2299.086719] type=2407 audit(1405609609.399:345): user pid=7988 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=8041 suid=71 rport=60977 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2299.086807] type=2407 audit(1405609609.399:346): user pid=7988 uid=0 auid=4294967295 ses=4294967295 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=8041 suid=71 rport=60977 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2305.812769] type=1100 audit(1405609616.139:347): user pid=9028 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=ssh res=success)'
[ 2305.812991] type=1101 audit(1405609616.139:348): user pid=9028 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=ssh res=success)'
[ 2305.883013] type=2404 audit(1405609616.211:349): user pid=7988 uid=0 auid=4294967295 ses=4294967295 msg='op=destroy kind=session fp=? direction=both spid=8041 suid=71 rport=60977 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 2305.884127] type=1100 audit(1405609616.211:350): user pid=7988 uid=0 auid=4294967295 ses=4294967295 msg='op=success acct="root" exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=ssh res=success)'
[ 2305.884566] type=1103 audit(1405609616.211:351): user pid=7988 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=ssh res=success)'
[ 2305.884660] type=1006 audit(1405609616.211:352): login pid=7988 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=50
[ 2305.885019] type=1105 audit(1405609616.211:353): user pid=7988 uid=0 auid=0 ses=50 msg='op=PAM:session_open acct="root" exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=ssh res=success)'
[ 2306.025761] type=1112 audit(1405609616.355:354): user pid=10889 uid=0 auid=0 ses=50 msg='op=login id=0 exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=/dev/pts/2 res=success)'
[ 2306.025851] type=1105 audit(1405609616.355:355): user pid=10889 uid=0 auid=0 ses=50 msg='op=login id=0 exe="/usr/sbin/sshd" (hostname=156.156.2.180, addr=156.156.2.180, terminal=/dev/pts/2 res=success)'
[ 2306.026133] type=2404 audit(1405609616.355:356): user pid=10889 uid=0 auid=0 ses=50 msg='op=destroy kind=server fp=be:ad:b5:d8:34:7b:18:09:48:73:0a:d0:f7:09:1a:e0 [MD5] direction=? spid=10889 suid=0 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=pts/2 res=success)'
[ 2311.422087] audit_printk_skb: 9 callbacks suppressed
[ 2311.445105] type=1101 audit(1405609621.763:360): user pid=11010 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2311.445203] type=1103 audit(1405609621.783:361): user pid=11010 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2311.445308] type=1006 audit(1405609621.787:362): login pid=11010 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=51
[ 2311.445622] type=1105 audit(1405609621.787:363): user pid=11010 uid=0 auid=0 ses=51 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2311.449000] type=1104 audit(1405609621.787:364): user pid=11010 uid=0 auid=0 ses=51 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2311.449190] type=1106 audit(1405609621.787:365): user pid=11010 uid=0 auid=0 ses=51 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2342.263898] DRHD: handling fault status reg 2
[ 2342.284314] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 2342.284316] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2342.353664] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 2342.353666] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2342.423658] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 2342.423660] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2342.494997] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 2342.494999] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2371.323430] type=1101 audit(1405609681.791:366): user pid=14247 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2371.323508] type=1103 audit(1405609681.791:367): user pid=14247 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2371.323600] type=1006 audit(1405609681.791:368): login pid=14247 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=52
[ 2371.323912] type=1105 audit(1405609681.791:369): user pid=14247 uid=0 auid=0 ses=52 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2371.327239] type=1104 audit(1405609681.795:370): user pid=14247 uid=0 auid=0 ses=52 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2371.327431] type=1106 audit(1405609681.795:371): user pid=14247 uid=0 auid=0 ses=52 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2431.201668] type=1101 audit(1405609741.799:372): user pid=15028 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2431.201745] type=1103 audit(1405609741.799:373): user pid=15028 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2431.201837] type=1006 audit(1405609741.799:374): login pid=15028 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=53
[ 2431.202152] type=1105 audit(1405609741.799:375): user pid=15028 uid=0 auid=0 ses=53 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2431.205423] type=1104 audit(1405609741.803:376): user pid=15028 uid=0 auid=0 ses=53 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2431.205611] type=1106 audit(1405609741.803:377): user pid=15028 uid=0 auid=0 ses=53 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2491.079875] type=1101 audit(1405609801.807:378): user pid=21481 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2491.079953] type=1103 audit(1405609801.807:379): user pid=21481 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2491.080044] type=1006 audit(1405609801.807:380): login pid=21481 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=54
[ 2491.080354] type=1105 audit(1405609801.807:381): user pid=21481 uid=0 auid=0 ses=54 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2491.083695] type=1104 audit(1405609801.811:382): user pid=21481 uid=0 auid=0 ses=54 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2491.083911] type=1106 audit(1405609801.811:383): user pid=21481 uid=0 auid=0 ses=54 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2522.723761] DRHD: handling fault status reg 402
[ 2522.744868] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 2522.744870] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2522.815472] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 2522.815474] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2522.887219] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 2522.887221] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2522.958521] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 2522.958523] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2545.772480] kjournald starting.  Commit interval 15 seconds
[ 2545.772704] EXT3-fs (sda6): using internal journal
[ 2545.772710] EXT3-fs (sda6): recovery complete
[ 2545.772755] EXT3-fs (sda6): mounted filesystem with ordered data mode
[ 2550.958112] type=1101 audit(1405609861.815:384): user pid=22285 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2550.958187] type=1103 audit(1405609861.815:385): user pid=22285 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2550.958276] type=1006 audit(1405609861.815:386): login pid=22285 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=55
[ 2550.958596] type=1105 audit(1405609861.815:387): user pid=22285 uid=0 auid=0 ses=55 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2550.961825] type=1104 audit(1405609861.819:388): user pid=22285 uid=0 auid=0 ses=55 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2550.962032] type=1106 audit(1405609861.819:389): user pid=22285 uid=0 auid=0 ses=55 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.836290] type=1101 audit(1405609921.819:390): user pid=23065 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.836368] type=1103 audit(1405609921.819:391): user pid=23065 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.836458] type=1006 audit(1405609921.819:392): login pid=23065 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=56
[ 2610.836780] type=1105 audit(1405609921.823:393): user pid=23065 uid=0 auid=0 ses=56 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.840220] type=1104 audit(1405609921.823:394): user pid=23065 uid=0 auid=0 ses=56 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.840417] type=1106 audit(1405609921.823:395): user pid=23065 uid=0 auid=0 ses=56 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2610.849300] 01m (23067): dropped kernel caches: 3
[ 2670.823463] type=1101 audit(1405609981.939:396): user pid=23733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2670.823566] type=1103 audit(1405609981.939:397): user pid=23733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2670.823663] type=1006 audit(1405609981.939:398): login pid=23733 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=57
[ 2670.839974] type=1105 audit(1405609981.955:399): user pid=23733 uid=0 auid=0 ses=57 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2670.847203] type=1104 audit(1405609981.959:400): user pid=23733 uid=0 auid=0 ses=57 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2670.847421] type=1106 audit(1405609981.963:401): user pid=23733 uid=0 auid=0 ses=57 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2670.878900] 01m (23750): dropped kernel caches: 3
[ 2703.485272] DRHD: handling fault status reg 2
[ 2703.505090] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 2703.505092] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2703.575208] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 2703.575210] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2703.648140] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 2703.648142] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2703.719141] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 2703.719143] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2730.824473] type=1101 audit(1405610042.067:402): user pid=24465 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2730.824553] type=1103 audit(1405610042.067:403): user pid=24465 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2730.824646] type=1006 audit(1405610042.067:404): login pid=24465 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=58
[ 2730.829056] type=1105 audit(1405610042.071:405): user pid=24465 uid=0 auid=0 ses=58 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2730.839166] type=1104 audit(1405610042.083:406): user pid=24465 uid=0 auid=0 ses=58 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2730.839358] type=1106 audit(1405610042.083:407): user pid=24465 uid=0 auid=0 ses=58 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.721588] type=1101 audit(1405610101.091:408): user pid=50224 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.721640] type=1103 audit(1405610101.091:409): user pid=50224 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.721697] type=1006 audit(1405610101.091:410): login pid=50224 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=59
[ 2789.721895] type=1105 audit(1405610101.091:411): user pid=50224 uid=0 auid=0 ses=59 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.723482] type=1101 audit(1405610101.095:412): user pid=50223 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.723528] type=1103 audit(1405610101.095:413): user pid=50223 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.723580] type=1006 audit(1405610101.095:414): login pid=50223 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=60
[ 2789.723983] type=1105 audit(1405610101.095:415): user pid=50223 uid=0 auid=0 ses=60 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.725526] type=1101 audit(1405610101.095:416): user pid=50225 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2789.725571] type=1103 audit(1405610101.095:417): user pid=50225 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.908188] audit_printk_skb: 24 callbacks suppressed
[ 2849.931452] type=1101 audit(1405610161.407:426): user pid=18001 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.931482] type=1101 audit(1405610161.431:427): user pid=18000 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.931572] type=1103 audit(1405610161.431:428): user pid=18000 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.931636] type=1006 audit(1405610161.431:429): login pid=18000 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=62
[ 2849.931849] type=1105 audit(1405610161.431:430): user pid=18000 uid=0 auid=0 ses=62 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.931875] type=1103 audit(1405610161.431:431): user pid=18001 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.931956] type=1006 audit(1405610161.431:432): login pid=18001 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=63
[ 2849.932264] type=1105 audit(1405610161.431:433): user pid=18001 uid=0 auid=0 ses=63 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.940453] type=1104 audit(1405610161.439:434): user pid=18001 uid=0 auid=0 ses=63 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.940596] type=1106 audit(1405610161.439:435): user pid=18001 uid=0 auid=0 ses=63 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2849.948720] 01m (18017): dropped kernel caches: 3
[ 2884.235088] DRHD: handling fault status reg 402
[ 2884.256117] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 2884.256119] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2884.323853] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 2884.323855] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2884.393390] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 2884.393392] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2884.462803] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 2884.462805] DMAR:[fault reason 02] Present bit in context entry is clear
[ 2910.358210] audit_printk_skb: 6 callbacks suppressed
[ 2910.380882] type=1101 audit(1405610221.987:438): user pid=44415 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2910.380979] type=1103 audit(1405610222.011:439): user pid=44415 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2910.381080] type=1006 audit(1405610222.011:440): login pid=44415 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=64
[ 2910.397389] type=1105 audit(1405610222.027:441): user pid=44415 uid=0 auid=0 ses=64 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2910.405951] type=1104 audit(1405610222.035:442): user pid=44415 uid=0 auid=0 ses=64 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2910.406147] type=1106 audit(1405610222.035:443): user pid=44415 uid=0 auid=0 ses=64 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2969.282566] type=1101 audit(1405610281.039:444): user pid=45119 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2969.282643] type=1103 audit(1405610281.039:445): user pid=45119 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2969.282735] type=1006 audit(1405610281.039:446): login pid=45119 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=65
[ 2969.283050] type=1105 audit(1405610281.039:447): user pid=45119 uid=0 auid=0 ses=65 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2969.286382] type=1104 audit(1405610281.043:448): user pid=45119 uid=0 auid=0 ses=65 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 2969.286574] type=1106 audit(1405610281.043:449): user pid=45119 uid=0 auid=0 ses=65 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3029.160752] type=1101 audit(1405610341.047:450): user pid=45859 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3029.160827] type=1103 audit(1405610341.047:451): user pid=45859 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3029.160916] type=1006 audit(1405610341.047:452): login pid=45859 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=66
[ 3029.161222] type=1105 audit(1405610341.047:453): user pid=45859 uid=0 auid=0 ses=66 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3029.164567] type=1104 audit(1405610341.051:454): user pid=45859 uid=0 auid=0 ses=66 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3029.164760] type=1106 audit(1405610341.051:455): user pid=45859 uid=0 auid=0 ses=66 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3064.993189] DRHD: handling fault status reg 2
[ 3065.013527] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3065.013529] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3065.076118] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3065.076120] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3065.140089] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3065.140091] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3065.205147] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3065.205149] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3089.038900] type=1101 audit(1405610401.055:456): user pid=46577 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3089.038975] type=1103 audit(1405610401.055:457): user pid=46577 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3089.039065] type=1006 audit(1405610401.055:458): login pid=46577 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=67
[ 3089.039399] type=1105 audit(1405610401.055:459): user pid=46577 uid=0 auid=0 ses=67 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3089.042631] type=1104 audit(1405610401.055:460): user pid=46577 uid=0 auid=0 ses=67 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3089.042842] type=1106 audit(1405610401.059:461): user pid=46577 uid=0 auid=0 ses=67 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3148.916950] type=1101 audit(1405610461.059:462): user pid=47422 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3148.917027] type=1103 audit(1405610461.059:463): user pid=47422 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3148.917117] type=1006 audit(1405610461.059:464): login pid=47422 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=68
[ 3148.917426] type=1105 audit(1405610461.059:465): user pid=47422 uid=0 auid=0 ses=68 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3148.920724] type=1104 audit(1405610461.063:466): user pid=47422 uid=0 auid=0 ses=68 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3148.920933] type=1106 audit(1405610461.063:467): user pid=47422 uid=0 auid=0 ses=68 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.795188] type=1101 audit(1405610521.067:468): user pid=48244 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.795266] type=1103 audit(1405610521.067:469): user pid=48244 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.795357] type=1006 audit(1405610521.067:470): login pid=48244 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=69
[ 3208.795674] type=1105 audit(1405610521.067:471): user pid=48244 uid=0 auid=0 ses=69 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.798999] type=1104 audit(1405610521.071:472): user pid=48244 uid=0 auid=0 ses=69 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.799213] type=1106 audit(1405610521.071:473): user pid=48244 uid=0 auid=0 ses=69 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3208.807962] 01m (48246): dropped kernel caches: 3
[ 3245.743936] DRHD: handling fault status reg 402
[ 3245.765005] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3245.765007] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3245.827726] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3245.827728] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3245.890464] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3245.890466] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3245.953433] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3245.953435] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3268.770061] type=1101 audit(1405610581.171:474): user pid=49059 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3268.770137] type=1103 audit(1405610581.171:475): user pid=49059 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3268.770232] type=1006 audit(1405610581.171:476): login pid=49059 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=70
[ 3268.780550] type=1105 audit(1405610581.183:477): user pid=49059 uid=0 auid=0 ses=70 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3268.787808] type=1104 audit(1405610581.191:478): user pid=49059 uid=0 auid=0 ses=70 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3268.788021] type=1106 audit(1405610581.191:479): user pid=49059 uid=0 auid=0 ses=70 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3328.662181] type=1101 audit(1405610641.191:480): user pid=49798 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3328.662256] type=1103 audit(1405610641.191:481): user pid=49798 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3328.662345] type=1006 audit(1405610641.191:482): login pid=49798 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=71
[ 3328.662651] type=1105 audit(1405610641.191:483): user pid=49798 uid=0 auid=0 ses=71 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3328.665950] type=1104 audit(1405610641.195:484): user pid=49798 uid=0 auid=0 ses=71 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3328.666141] type=1106 audit(1405610641.195:485): user pid=49798 uid=0 auid=0 ses=71 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3388.540298] type=1101 audit(1405610701.199:486): user pid=50528 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3388.540372] type=1103 audit(1405610701.199:487): user pid=50528 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3388.540463] type=1006 audit(1405610701.199:488): login pid=50528 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=72
[ 3388.540772] type=1105 audit(1405610701.199:489): user pid=50528 uid=0 auid=0 ses=72 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3388.544070] type=1104 audit(1405610701.203:490): user pid=50528 uid=0 auid=0 ses=72 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3388.544263] type=1106 audit(1405610701.203:491): user pid=50528 uid=0 auid=0 ses=72 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3426.505661] DRHD: handling fault status reg 2
[ 3426.526695] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3426.526698] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3426.589398] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3426.589400] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3426.651968] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3426.651970] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3426.714528] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3426.714530] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3448.418444] type=1101 audit(1405610761.207:492): user pid=51233 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3448.418519] type=1103 audit(1405610761.207:493): user pid=51233 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3448.418608] type=1006 audit(1405610761.207:494): login pid=51233 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=73
[ 3448.418915] type=1105 audit(1405610761.207:495): user pid=51233 uid=0 auid=0 ses=73 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3448.422204] type=1104 audit(1405610761.211:496): user pid=51233 uid=0 auid=0 ses=73 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3448.422395] type=1106 audit(1405610761.211:497): user pid=51233 uid=0 auid=0 ses=73 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3508.296905] type=1101 audit(1405610821.215:498): user pid=51987 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3508.296993] type=1103 audit(1405610821.215:499): user pid=51987 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3508.297094] type=1006 audit(1405610821.215:500): login pid=51987 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=74
[ 3508.297440] type=1105 audit(1405610821.215:501): user pid=51987 uid=0 auid=0 ses=74 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3508.301165] type=1104 audit(1405610821.219:502): user pid=51987 uid=0 auid=0 ses=74 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3508.301361] type=1106 audit(1405610821.219:503): user pid=51987 uid=0 auid=0 ses=74 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.175601] type=1101 audit(1405610881.223:504): user pid=52722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.175708] type=1103 audit(1405610881.223:505): user pid=52722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.175822] type=1006 audit(1405610881.223:506): login pid=52722 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=75
[ 3568.176182] type=1105 audit(1405610881.223:507): user pid=52722 uid=0 auid=0 ses=75 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.179510] type=1104 audit(1405610881.227:508): user pid=52722 uid=0 auid=0 ses=75 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.179706] type=1106 audit(1405610881.227:509): user pid=52722 uid=0 auid=0 ses=75 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3568.188667] 01m (52724): dropped kernel caches: 3
[ 3607.266845] DRHD: handling fault status reg 402
[ 3607.287928] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3607.287930] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3607.351368] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3607.351370] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3607.416346] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3607.416348] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3607.479197] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3607.479199] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3628.311790] type=1101 audit(1405610941.487:510): user pid=53449 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3628.311866] type=1103 audit(1405610941.487:511): user pid=53449 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3628.311963] type=1006 audit(1405610941.487:512): login pid=53449 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=76
[ 3628.329652] type=1105 audit(1405610941.507:513): user pid=53449 uid=0 auid=0 ses=76 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3628.337758] type=1104 audit(1405610941.515:514): user pid=53449 uid=0 auid=0 ses=76 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3628.337960] type=1106 audit(1405610941.515:515): user pid=53449 uid=0 auid=0 ses=76 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212132] type=1101 audit(1405611001.515:516): user pid=54215 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212187] type=1101 audit(1405611001.515:517): user pid=54216 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212210] type=1103 audit(1405611001.515:518): user pid=54215 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212263] type=1103 audit(1405611001.515:519): user pid=54216 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212301] type=1006 audit(1405611001.515:520): login pid=54215 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=77
[ 3688.212351] type=1006 audit(1405611001.515:521): login pid=54216 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=78
[ 3688.212424] type=1101 audit(1405611001.519:522): user pid=54217 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212505] type=1103 audit(1405611001.519:523): user pid=54217 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3688.212597] type=1006 audit(1405611001.519:524): login pid=54217 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=79
[ 3688.212630] type=1105 audit(1405611001.519:525): user pid=54215 uid=0 auid=0 ses=77 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3716.494725] audit_printk_skb: 24 callbacks suppressed
[ 3716.518114] type=2407 audit(1405611029.859:534): user pid=10361 uid=0 auid=0 ses=7 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=10361 suid=0 rport=59148 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3716.518204] type=2407 audit(1405611029.883:535): user pid=10361 uid=0 auid=0 ses=7 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=10361 suid=0 rport=59148 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3717.486334] type=2404 audit(1405611030.855:536): user pid=10361 uid=0 auid=0 ses=7 msg='op=destroy kind=session fp=? direction=from-client spid=10361 suid=0 rport=59148 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3718.019962] type=2404 audit(1405611031.387:537): user pid=10361 uid=0 auid=0 ses=7 msg='op=destroy kind=session fp=? direction=from-server spid=10361 suid=0 rport=59148 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3736.919988] type=2407 audit(1405611050.331:538): user pid=10620 uid=0 auid=0 ses=4 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=10620 suid=0 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3736.920069] type=2407 audit(1405611050.331:539): user pid=10620 uid=0 auid=0 ses=4 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=10620 suid=0 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3737.230763] type=2404 audit(1405611050.639:540): user pid=10620 uid=0 auid=0 ses=4 msg='op=destroy kind=session fp=? direction=from-client spid=10620 suid=0 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3737.469659] type=2404 audit(1405611050.879:541): user pid=10620 uid=0 auid=0 ses=4 msg='op=destroy kind=session fp=? direction=from-server spid=10620 suid=0 rport=59176 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.180, terminal=? res=success)'
[ 3748.282920] type=1101 audit(1405611061.715:542): user pid=54996 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.283001] type=1103 audit(1405611061.715:543): user pid=54996 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.283022] type=1101 audit(1405611061.715:544): user pid=54997 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.283097] type=1103 audit(1405611061.719:545): user pid=54997 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.283104] type=1006 audit(1405611061.719:546): login pid=54996 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=80
[ 3748.283200] type=1006 audit(1405611061.719:547): login pid=54997 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=81
[ 3748.283416] type=1105 audit(1405611061.719:548): user pid=54996 uid=0 auid=0 ses=80 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.283508] type=1105 audit(1405611061.719:549): user pid=54997 uid=0 auid=0 ses=81 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.286843] type=1104 audit(1405611061.719:550): user pid=54997 uid=0 auid=0 ses=81 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3748.287048] type=1106 audit(1405611061.723:551): user pid=54997 uid=0 auid=0 ses=81 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3788.018220] DRHD: handling fault status reg 2
[ 3788.043079] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3788.043081] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3788.105818] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3788.105820] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3788.168802] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3788.168804] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3788.231521] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3788.231523] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3808.306224] audit_printk_skb: 6 callbacks suppressed
[ 3808.329427] type=1101 audit(1405611121.871:554): user pid=55746 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3808.329513] type=1103 audit(1405611121.891:555): user pid=55746 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3808.329603] type=1006 audit(1405611121.891:556): login pid=55746 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=82
[ 3808.329924] type=1105 audit(1405611121.895:557): user pid=55746 uid=0 auid=0 ses=82 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3808.333292] type=1104 audit(1405611121.895:558): user pid=55746 uid=0 auid=0 ses=82 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3808.333481] type=1106 audit(1405611121.895:559): user pid=55746 uid=0 auid=0 ses=82 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3868.207626] type=1101 audit(1405611181.899:560): user pid=56458 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3868.207705] type=1103 audit(1405611181.899:561): user pid=56458 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3868.207794] type=1006 audit(1405611181.899:562): login pid=56458 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=83
[ 3868.208104] type=1105 audit(1405611181.899:563): user pid=56458 uid=0 auid=0 ses=83 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3868.211374] type=1104 audit(1405611181.903:564): user pid=56458 uid=0 auid=0 ses=83 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3868.211588] type=1106 audit(1405611181.903:565): user pid=56458 uid=0 auid=0 ses=83 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3878.239615] type=2407 audit(1405611191.955:566): user pid=13245 uid=0 auid=0 ses=10 msg='op=start direction=from-client cipher=aes256-ctr ksize=256 spid=13245 suid=0 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[ 3878.239699] type=2407 audit(1405611191.955:567): user pid=13245 uid=0 auid=0 ses=10 msg='op=start direction=from-server cipher=aes256-ctr ksize=256 spid=13245 suid=0 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[ 3878.590984] type=2404 audit(1405611192.307:568): user pid=13245 uid=0 auid=0 ses=10 msg='op=destroy kind=session fp=? direction=from-client spid=13245 suid=0 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[ 3878.838300] type=2404 audit(1405611192.555:569): user pid=13245 uid=0 auid=0 ses=10 msg='op=destroy kind=session fp=? direction=from-server spid=13245 suid=0 rport=61280 laddr=156.4.110.210 lport=22 : exe="/usr/sbin/sshd" (hostname=?, addr=156.156.2.176, terminal=? res=success)'
[ 3928.085838] type=1101 audit(1405611241.907:570): user pid=57199 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3928.085914] type=1103 audit(1405611241.907:571): user pid=57199 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3928.086007] type=1006 audit(1405611241.907:572): login pid=57199 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=84
[ 3928.086321] type=1105 audit(1405611241.907:573): user pid=57199 uid=0 auid=0 ses=84 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3928.089577] type=1104 audit(1405611241.911:574): user pid=57199 uid=0 auid=0 ses=84 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3928.089773] type=1106 audit(1405611241.911:575): user pid=57199 uid=0 auid=0 ses=84 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3968.480330] DRHD: handling fault status reg 402
[ 3968.501346] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 3968.501348] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3968.564080] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 3968.564082] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3968.626674] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 3968.626676] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3968.689254] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 3968.689255] DMAR:[fault reason 02] Present bit in context entry is clear
[ 3987.964020] type=1101 audit(1405611301.915:576): user pid=57946 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3987.964100] type=1103 audit(1405611301.915:577): user pid=57946 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3987.964191] type=1006 audit(1405611301.915:578): login pid=57946 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=85
[ 3987.964504] type=1105 audit(1405611301.915:579): user pid=57946 uid=0 auid=0 ses=85 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3987.967783] type=1104 audit(1405611301.919:580): user pid=57946 uid=0 auid=0 ses=85 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3987.967974] type=1106 audit(1405611301.919:581): user pid=57946 uid=0 auid=0 ses=85 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 3987.976792] 01m (57948): dropped kernel caches: 3
[ 4047.973055] type=1101 audit(1405611362.051:582): user pid=58668 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4047.973132] type=1103 audit(1405611362.051:583): user pid=58668 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4047.973231] type=1006 audit(1405611362.051:584): login pid=58668 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=86
[ 4047.988130] type=1105 audit(1405611362.067:585): user pid=58668 uid=0 auid=0 ses=86 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4047.993888] type=1104 audit(1405611362.075:586): user pid=58668 uid=0 auid=0 ses=86 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4047.994096] type=1106 audit(1405611362.075:587): user pid=58668 uid=0 auid=0 ses=86 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4084.978061] usb 3-1: USB disconnect, device number 2
[ 4106.870412] type=1101 audit(1405611421.075:588): user pid=59398 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4106.870487] type=1103 audit(1405611421.075:589): user pid=59398 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4106.870577] type=1006 audit(1405611421.075:590): login pid=59398 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=87
[ 4106.870895] type=1105 audit(1405611421.079:591): user pid=59398 uid=0 auid=0 ses=87 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4106.874199] type=1104 audit(1405611421.079:592): user pid=59398 uid=0 auid=0 ses=87 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4106.874391] type=1106 audit(1405611421.079:593): user pid=59398 uid=0 auid=0 ses=87 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4106.883664] 01m (59400): dropped kernel caches: 3
[ 4149.231789] DRHD: handling fault status reg 2
[ 4149.251713] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 4149.251715] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4149.315770] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 4149.315772] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4149.378515] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 4149.378517] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4149.444227] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 4149.444229] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4166.815168] type=1101 audit(1405611481.151:594): user pid=60125 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4166.815247] type=1103 audit(1405611481.151:595): user pid=60125 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4166.815341] type=1006 audit(1405611481.151:596): login pid=60125 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=88
[ 4166.820758] type=1105 audit(1405611481.155:597): user pid=60125 uid=0 auid=0 ses=88 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4166.828070] type=1104 audit(1405611481.163:598): user pid=60125 uid=0 auid=0 ses=88 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4166.828265] type=1106 audit(1405611481.163:599): user pid=60125 uid=0 auid=0 ses=88 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4226.702433] type=1101 audit(1405611541.167:600): user pid=60837 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4226.702507] type=1103 audit(1405611541.167:601): user pid=60837 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4226.702596] type=1006 audit(1405611541.167:602): login pid=60837 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=89
[ 4226.702901] type=1105 audit(1405611541.167:603): user pid=60837 uid=0 auid=0 ses=89 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4226.706227] type=1104 audit(1405611541.171:604): user pid=60837 uid=0 auid=0 ses=89 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4226.706420] type=1106 audit(1405611541.171:605): user pid=60837 uid=0 auid=0 ses=89 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4286.580590] type=1101 audit(1405611601.175:606): user pid=61559 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4286.580667] type=1103 audit(1405611601.175:607): user pid=61559 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4286.580758] type=1006 audit(1405611601.175:608): login pid=61559 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=90
[ 4286.581063] type=1105 audit(1405611601.175:609): user pid=61559 uid=0 auid=0 ses=90 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4286.584346] type=1104 audit(1405611601.179:610): user pid=61559 uid=0 auid=0 ses=90 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4286.584539] type=1106 audit(1405611601.179:611): user pid=61559 uid=0 auid=0 ses=90 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4329.993660] DRHD: handling fault status reg 402
[ 4330.014352] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 4330.014354] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4330.076958] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 4330.076960] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4330.140558] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 4330.140560] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4330.203332] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 4330.203334] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4346.458645] type=1101 audit(1405611661.179:612): user pid=62286 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4346.458719] type=1103 audit(1405611661.179:613): user pid=62286 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4346.458808] type=1006 audit(1405611661.179:614): login pid=62286 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=91
[ 4346.459129] type=1105 audit(1405611661.183:615): user pid=62286 uid=0 auid=0 ses=91 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4346.462515] type=1104 audit(1405611661.183:616): user pid=62286 uid=0 auid=0 ses=91 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4346.462709] type=1106 audit(1405611661.183:617): user pid=62286 uid=0 auid=0 ses=91 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4406.336858] type=1101 audit(1405611721.187:618): user pid=63000 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4406.336937] type=1103 audit(1405611721.187:619): user pid=63000 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4406.337028] type=1006 audit(1405611721.187:620): login pid=63000 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=92
[ 4406.337336] type=1105 audit(1405611721.187:621): user pid=63000 uid=0 auid=0 ses=92 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4406.340585] type=1104 audit(1405611721.191:622): user pid=63000 uid=0 auid=0 ses=92 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4406.340779] type=1106 audit(1405611721.191:623): user pid=63000 uid=0 auid=0 ses=92 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4466.214915] type=1101 audit(1405611781.195:624): user pid=63739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4466.214991] type=1103 audit(1405611781.195:625): user pid=63739 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4466.215083] type=1006 audit(1405611781.195:626): login pid=63739 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=93
[ 4466.215394] type=1105 audit(1405611781.195:627): user pid=63739 uid=0 auid=0 ses=93 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4466.218749] type=1104 audit(1405611781.199:628): user pid=63739 uid=0 auid=0 ses=93 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4466.218946] type=1106 audit(1405611781.199:629): user pid=63739 uid=0 auid=0 ses=93 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4510.754841] DRHD: handling fault status reg 2
[ 4510.774717] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 4510.774719] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4510.837185] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 4510.837187] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4510.899475] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 4510.899477] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4510.964850] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 4510.964852] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4526.093100] type=1101 audit(1405611841.203:630): user pid=64458 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4526.093176] type=1103 audit(1405611841.203:631): user pid=64458 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4526.093264] type=1006 audit(1405611841.203:632): login pid=64458 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=94
[ 4526.093571] type=1105 audit(1405611841.203:633): user pid=64458 uid=0 auid=0 ses=94 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4526.096871] type=1104 audit(1405611841.207:634): user pid=64458 uid=0 auid=0 ses=94 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4526.097060] type=1106 audit(1405611841.207:635): user pid=64458 uid=0 auid=0 ses=94 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971178] type=1101 audit(1405611901.211:636): user pid=65208 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971260] type=1103 audit(1405611901.211:637): user pid=65208 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971296] type=1101 audit(1405611901.211:638): user pid=65209 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971352] type=1006 audit(1405611901.211:639): login pid=65208 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=95
[ 4585.971370] type=1103 audit(1405611901.211:640): user pid=65209 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971459] type=1006 audit(1405611901.211:641): login pid=65209 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=96
[ 4585.971531] type=1101 audit(1405611901.211:642): user pid=65210 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971611] type=1103 audit(1405611901.211:643): user pid=65210 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971700] type=1105 audit(1405611901.211:644): user pid=65208 uid=0 auid=0 ses=95 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4585.971708] type=1006 audit(1405611901.211:645): login pid=65210 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=97
[ 4646.061438] audit_printk_skb: 24 callbacks suppressed
[ 4646.084400] type=1101 audit(1405611961.427:654): user pid=732 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.084425] type=1101 audit(1405611961.451:655): user pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.084513] type=1103 audit(1405611961.451:656): user pid=733 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.084532] type=1103 audit(1405611961.451:657): user pid=732 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.084605] type=1006 audit(1405611961.451:658): login pid=733 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=98
[ 4646.084664] type=1006 audit(1405611961.451:659): login pid=732 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=99
[ 4646.084919] type=1105 audit(1405611961.451:660): user pid=733 uid=0 auid=0 ses=98 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.085155] type=1105 audit(1405611961.451:661): user pid=732 uid=0 auid=0 ses=99 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.088191] type=1104 audit(1405611961.455:662): user pid=733 uid=0 auid=0 ses=98 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4646.088388] type=1106 audit(1405611961.455:663): user pid=733 uid=0 auid=0 ses=98 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4691.506170] DRHD: handling fault status reg 402
[ 4691.526814] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 4691.526816] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4691.587884] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 4691.587886] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4691.649203] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 4691.649205] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4691.710542] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 4691.710544] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4706.129031] audit_printk_skb: 6 callbacks suppressed
[ 4706.151499] type=1101 audit(1405612021.627:666): user pid=1501 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4706.151586] type=1103 audit(1405612021.647:667): user pid=1501 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4706.151680] type=1006 audit(1405612021.647:668): login pid=1501 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=100
[ 4706.151988] type=1105 audit(1405612021.647:669): user pid=1501 uid=0 auid=0 ses=100 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4706.155353] type=1104 audit(1405612021.651:670): user pid=1501 uid=0 auid=0 ses=100 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4706.155551] type=1106 audit(1405612021.651:671): user pid=1501 uid=0 auid=0 ses=100 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4766.029744] type=1101 audit(1405612081.655:672): user pid=2227 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4766.029822] type=1103 audit(1405612081.655:673): user pid=2227 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4766.029913] type=1006 audit(1405612081.655:674): login pid=2227 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=101
[ 4766.030220] type=1105 audit(1405612081.655:675): user pid=2227 uid=0 auid=0 ses=101 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4766.033454] type=1104 audit(1405612081.659:676): user pid=2227 uid=0 auid=0 ses=101 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4766.033643] type=1106 audit(1405612081.659:677): user pid=2227 uid=0 auid=0 ses=101 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4825.907818] type=1101 audit(1405612141.663:678): user pid=2939 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4825.907895] type=1103 audit(1405612141.663:679): user pid=2939 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4825.907986] type=1006 audit(1405612141.663:680): login pid=2939 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=102
[ 4825.908296] type=1105 audit(1405612141.663:681): user pid=2939 uid=0 auid=0 ses=102 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4825.911548] type=1104 audit(1405612141.667:682): user pid=2939 uid=0 auid=0 ses=102 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4825.911740] type=1106 audit(1405612141.667:683): user pid=2939 uid=0 auid=0 ses=102 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4872.267827] DRHD: handling fault status reg 2
[ 4872.287695] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 4872.287698] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4872.349052] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 4872.349054] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4872.410484] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 4872.410486] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4872.472119] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 4872.472121] DMAR:[fault reason 02] Present bit in context entry is clear
[ 4885.785952] type=1101 audit(1405612201.671:684): user pid=3666 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4885.786048] type=1103 audit(1405612201.671:685): user pid=3666 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4885.786142] type=1006 audit(1405612201.671:686): login pid=3666 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=103
[ 4885.786457] type=1105 audit(1405612201.671:687): user pid=3666 uid=0 auid=0 ses=103 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4885.789707] type=1104 audit(1405612201.675:688): user pid=3666 uid=0 auid=0 ses=103 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4885.789900] type=1106 audit(1405612201.675:689): user pid=3666 uid=0 auid=0 ses=103 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4945.664062] type=1101 audit(1405612261.675:690): user pid=4385 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4945.664136] type=1103 audit(1405612261.675:691): user pid=4385 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4945.664225] type=1006 audit(1405612261.675:692): login pid=4385 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=104
[ 4945.664534] type=1105 audit(1405612261.679:693): user pid=4385 uid=0 auid=0 ses=104 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4945.667767] type=1104 audit(1405612261.679:694): user pid=4385 uid=0 auid=0 ses=104 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 4945.667956] type=1106 audit(1405612261.679:695): user pid=4385 uid=0 auid=0 ses=104 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5005.542164] type=1101 audit(1405612321.683:696): user pid=5198 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5005.542239] type=1103 audit(1405612321.683:697): user pid=5198 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5005.542332] type=1006 audit(1405612321.683:698): login pid=5198 uid=0 old auid=4294967295 new auid=0 old ses=4294967295 new ses=105
[ 5005.542646] type=1105 audit(1405612321.683:699): user pid=5198 uid=0 auid=0 ses=105 msg='op=PAM:session_open acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5005.545944] type=1104 audit(1405612321.687:700): user pid=5198 uid=0 auid=0 ses=105 msg='op=PAM:setcred acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5005.546155] type=1106 audit(1405612321.687:701): user pid=5198 uid=0 auid=0 ses=105 msg='op=PAM:session_close acct="root" exe="/usr/sbin/cron" (hostname=?, addr=?, terminal=cron res=success)'
[ 5052.729728] DRHD: handling fault status reg 402
[ 5052.750403] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
[ 5052.750405] DMAR:[fault reason 02] Present bit in context entry is clear
[ 5052.812530] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
[ 5052.812532] DMAR:[fault reason 02] Present bit in context entry is clear
[ 5052.886214] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
[ 5052.886217] DMAR:[fault reason 02] Present bit in context entry is clear
[ 5052.952299] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
[ 5052.952300] DMAR:[fault reason 02] Present bit in context entry is clear

[-- Attachment #4: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]             ` <53E96FE0.7080600-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
@ 2014-08-12  2:34               ` Jiang Liu
  2014-08-12  3:18               ` Jiang Liu
  2014-08-14 16:07               ` Linda Knippers
  2 siblings, 0 replies; 17+ messages in thread
From: Jiang Liu @ 2014-08-12  2:34 UTC (permalink / raw)
  To: Yijing Wang, Linda Knippers, Alex Williamson
  Cc: huaxiuxiu-hv44wF8Li93QT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse



On 2014/8/12 9:37, Yijing Wang wrote:
> On 2014/8/11 22:59, Linda Knippers wrote:
>> On 8/11/2014 12:43 AM, Alex Williamson wrote:
>>> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>>> management. Because iommu will not create the DMA mapping for these devices,
>>>> the DMA read/write will be blocked by iommu hardware.
>>>>
>>>> Eg.
>>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>>              +-01.0-[11]--
>>>> 			 +-01.1-[02]--
>>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         +-02.1-[12]--
>>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>>
>>>> [ 1438.477262] DRHD: handling fault status reg 402
>>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>
>>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>>> ---
>>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>>
>>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>>> index 345c99c..5e3a2d8 100644
>>>> --- a/arch/x86/include/asm/iommu.h
>>>> +++ b/arch/x86/include/asm/iommu.h
>>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>>  extern int force_iommu, no_iommu;
>>>>  extern int iommu_detected;
>>>>  extern int iommu_pass_through;
>>>> +extern int iommu_pt_force_bus;
>>>> +extern int iommu_pt_force_domain;
>>>>  
>>>>  /* 10 seconds */
>>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>>> index a25e202..bf21d97 100644
>>>> --- a/arch/x86/kernel/pci-dma.c
>>>> +++ b/arch/x86/kernel/pci-dma.c
>>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>>   * guests and not for driver dma translation.
>>>>   */
>>>>  int iommu_pass_through __read_mostly;
>>>> +int iommu_pt_force_bus = -1;
>>>> +int iommu_pt_force_domain = -1;
>>>>  
>>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>>  
>>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>>   */
>>>>  static __init int iommu_setup(char *p)
>>>>  {
>>>> +	char *end;
>>>>  	iommu_merge = 1;
>>>>  
>>>>  	if (!p)
>>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>>  #endif
>>>>  		if (!strncmp(p, "pt", 2))
>>>>  			iommu_pass_through = 1;
>>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>>> +			iommu_pass_through = 1;
>>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>>
>>> Documentation/kernel-parameters.txt?
>>>
>>>> +		}
>>>>  
>>>>  		gart_parse_options(p);
>>>>  
>>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>>> index d1f5caa..49757f1 100644
>>>> --- a/drivers/iommu/intel-iommu.c
>>>> +++ b/drivers/iommu/intel-iommu.c
>>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>>  				return ret;
>>>>  		}
>>>>  
>>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>>> +	 * driver management, so we should create the pt mapping for these
>>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>>> +	 * force to do pt context mapping in the bus number.
>>>> +	 */
>>>
>>> So best case with this patch is that the user needs to discover that
>>> this option exists, figure out the undocumented parameters, be running
>>> on VT-d, permanently add a kernel commandline option, and never have any
>>> intention of assigning the device to userspace or a VM...
>>>
>>> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
>>> can the vendor fix this with a firmware update?  This device behavior is
>>> really quite broken for this kind of server class product.  
>>
>> Yeah, something doesn't sound right here.
>>
>> I would like to hear more about this configuration, off list if you prefer.
>> What servers?  What firmware revisions?
> 
> Hi Linda, we found this issue in HP C7000 server. I attached the dmesg and lspci info,
> because the machine is in product department, so I don't know the firmware revision.
> 
> Thanks!
> Yijing.
Hi Yijing,
	I still suspect something is wrong with ARI support
instead of Phantom Function.
	According to lspci output:
1) Root port 00:02.0 has ARIFwd enabled in DevCtl2
2) Function 04:00.[0-3] all have Alternative Routing-ID Interpretation
   capability.
So could you please try to clear ARIFwd bit in devctl2 when enumerating
root port 00:02.0?

BTW, do function 04:00.[0-3] encounter any other issues except the
IOMMU warnings?

Thanks!
Gerry

> 
> 
>>>
>>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>>> +		int found = 0;
>>>> +
>>>> +		iommu = NULL;
>>>> +		for_each_active_iommu(iommu, drhd) {
>>>> +			if (iommu_pt_force_domain != drhd->segment)
>>>> +				continue;
>>>> +
>>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>>> +				if (!dev_is_pci(dev))
>>>> +					continue;
>>>> +
>>>> +				pdev = to_pci_dev(dev);
>>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>>> +						(pdev->subordinate
>>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>>> +					found = 1;
>>>> +					break;
>>>> +				}
>>>> +			}
>>>> +
>>>> +			if (drhd->include_all) {
>>>> +				found = 1;
>>>> +				break;
>>>> +			}
>>>> +		}
>>>> +
>>>> +		if (found && iommu)
>>>> +			for (i = 0; i < 256; i++)
>>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>>> +						CONTEXT_TT_MULTI_LEVEL);
>>>> +	}
>>>> +
>>>>  	return 0;
>>>>  }
>>>>  
>>>
>>>
>>>
>>> _______________________________________________
>>> iommu mailing list
>>> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>>> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>>>
>>
>>
>> .
>>
> 
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]             ` <53E96FE0.7080600-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  2014-08-12  2:34               ` Jiang Liu
@ 2014-08-12  3:18               ` Jiang Liu
       [not found]                 ` <53E9876F.9040300-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
  2014-08-14 16:07               ` Linda Knippers
  2 siblings, 1 reply; 17+ messages in thread
From: Jiang Liu @ 2014-08-12  3:18 UTC (permalink / raw)
  To: Yijing Wang, Linda Knippers, Alex Williamson
  Cc: huaxiuxiu-hv44wF8Li93QT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse

On 2014/8/12 9:37, Yijing Wang wrote:
> On 2014/8/11 22:59, Linda Knippers wrote:
>> On 8/11/2014 12:43 AM, Alex Williamson wrote:
>>> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>>> management. Because iommu will not create the DMA mapping for these devices,
>>>> the DMA read/write will be blocked by iommu hardware.
>>>>
>>>> Eg.
>>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>>              +-01.0-[11]--
>>>> 			 +-01.1-[02]--
>>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         +-02.1-[12]--
>>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>>
>>>> [ 1438.477262] DRHD: handling fault status reg 402
>>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>
>>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>>> ---
>>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>>
>>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>>> index 345c99c..5e3a2d8 100644
>>>> --- a/arch/x86/include/asm/iommu.h
>>>> +++ b/arch/x86/include/asm/iommu.h
>>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>>  extern int force_iommu, no_iommu;
>>>>  extern int iommu_detected;
>>>>  extern int iommu_pass_through;
>>>> +extern int iommu_pt_force_bus;
>>>> +extern int iommu_pt_force_domain;
>>>>  
>>>>  /* 10 seconds */
>>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>>> index a25e202..bf21d97 100644
>>>> --- a/arch/x86/kernel/pci-dma.c
>>>> +++ b/arch/x86/kernel/pci-dma.c
>>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>>   * guests and not for driver dma translation.
>>>>   */
>>>>  int iommu_pass_through __read_mostly;
>>>> +int iommu_pt_force_bus = -1;
>>>> +int iommu_pt_force_domain = -1;
>>>>  
>>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>>  
>>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>>   */
>>>>  static __init int iommu_setup(char *p)
>>>>  {
>>>> +	char *end;
>>>>  	iommu_merge = 1;
>>>>  
>>>>  	if (!p)
>>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>>  #endif
>>>>  		if (!strncmp(p, "pt", 2))
>>>>  			iommu_pass_through = 1;
>>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>>> +			iommu_pass_through = 1;
>>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>>
>>> Documentation/kernel-parameters.txt?
>>>
>>>> +		}
>>>>  
>>>>  		gart_parse_options(p);
>>>>  
>>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>>> index d1f5caa..49757f1 100644
>>>> --- a/drivers/iommu/intel-iommu.c
>>>> +++ b/drivers/iommu/intel-iommu.c
>>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>>  				return ret;
>>>>  		}
>>>>  
>>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>>> +	 * driver management, so we should create the pt mapping for these
>>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>>> +	 * force to do pt context mapping in the bus number.
>>>> +	 */
>>>
>>> So best case with this patch is that the user needs to discover that
>>> this option exists, figure out the undocumented parameters, be running
>>> on VT-d, permanently add a kernel commandline option, and never have any
>>> intention of assigning the device to userspace or a VM...
>>>
>>> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
>>> can the vendor fix this with a firmware update?  This device behavior is
>>> really quite broken for this kind of server class product.  
>>
>> Yeah, something doesn't sound right here.
>>
>> I would like to hear more about this configuration, off list if you prefer.
>> What servers?  What firmware revisions?
> 
> Hi Linda, we found this issue in HP C7000 server. I attached the dmesg and lspci info,
> because the machine is in product department, so I don't know the firmware revision.
> 
> Thanks!
> Yijing.
Hi Yijing,
	I still suspect something is wrong with ARI support
instead of Phantom Function.
	According to lspci output:
1) Root port 00:02.0 has ARIFwd enabled in DevCtl2
2) Function 04:00.[0-3] all have Alternative Routing-ID Interpretation
   capability.
So could you please try to clear ARIFwd bit in devctl2 when enumerating
root port 00:02.0?

BTW, do function 04:00.[0-3] encounter any other issues except the
IOMMU warnings?

Thanks!


> 
> 
>>>
>>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>>> +		int found = 0;
>>>> +
>>>> +		iommu = NULL;
>>>> +		for_each_active_iommu(iommu, drhd) {
>>>> +			if (iommu_pt_force_domain != drhd->segment)
>>>> +				continue;
>>>> +
>>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>>> +				if (!dev_is_pci(dev))
>>>> +					continue;
>>>> +
>>>> +				pdev = to_pci_dev(dev);
>>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>>> +						(pdev->subordinate
>>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>>> +					found = 1;
>>>> +					break;
>>>> +				}
>>>> +			}
>>>> +
>>>> +			if (drhd->include_all) {
>>>> +				found = 1;
>>>> +				break;
>>>> +			}
>>>> +		}
>>>> +
>>>> +		if (found && iommu)
>>>> +			for (i = 0; i < 256; i++)
>>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>>> +						CONTEXT_TT_MULTI_LEVEL);
>>>> +	}
>>>> +
>>>>  	return 0;
>>>>  }
>>>>  
>>>
>>>
>>>
>>> _______________________________________________
>>> iommu mailing list
>>> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>>> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>>>
>>
>>
>> .
>>
> 
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]                 ` <53E9876F.9040300-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
@ 2014-08-12  3:48                   ` Yijing Wang
  0 siblings, 0 replies; 17+ messages in thread
From: Yijing Wang @ 2014-08-12  3:48 UTC (permalink / raw)
  To: Jiang Liu, Linda Knippers, Alex Williamson
  Cc: huaxiuxiu-hv44wF8Li93QT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse

On 2014/8/12 11:18, Jiang Liu wrote:
> On 2014/8/12 9:37, Yijing Wang wrote:
>> On 2014/8/11 22:59, Linda Knippers wrote:
>>> On 8/11/2014 12:43 AM, Alex Williamson wrote:
>>>> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>>>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>>>> management. Because iommu will not create the DMA mapping for these devices,
>>>>> the DMA read/write will be blocked by iommu hardware.
>>>>>
>>>>> Eg.
>>>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>>>              +-01.0-[11]--
>>>>> 			 +-01.1-[02]--
>>>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>>> 	         +-02.1-[12]--
>>>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>>>
>>>>> [ 1438.477262] DRHD: handling fault status reg 402
>>>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>>
>>>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>>>> ---
>>>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>>>
>>>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>>>> index 345c99c..5e3a2d8 100644
>>>>> --- a/arch/x86/include/asm/iommu.h
>>>>> +++ b/arch/x86/include/asm/iommu.h
>>>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>>>  extern int force_iommu, no_iommu;
>>>>>  extern int iommu_detected;
>>>>>  extern int iommu_pass_through;
>>>>> +extern int iommu_pt_force_bus;
>>>>> +extern int iommu_pt_force_domain;
>>>>>  
>>>>>  /* 10 seconds */
>>>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>>>> index a25e202..bf21d97 100644
>>>>> --- a/arch/x86/kernel/pci-dma.c
>>>>> +++ b/arch/x86/kernel/pci-dma.c
>>>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>>>   * guests and not for driver dma translation.
>>>>>   */
>>>>>  int iommu_pass_through __read_mostly;
>>>>> +int iommu_pt_force_bus = -1;
>>>>> +int iommu_pt_force_domain = -1;
>>>>>  
>>>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>>>  
>>>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>>>   */
>>>>>  static __init int iommu_setup(char *p)
>>>>>  {
>>>>> +	char *end;
>>>>>  	iommu_merge = 1;
>>>>>  
>>>>>  	if (!p)
>>>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>>>  #endif
>>>>>  		if (!strncmp(p, "pt", 2))
>>>>>  			iommu_pass_through = 1;
>>>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>>>> +			iommu_pass_through = 1;
>>>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>>>
>>>> Documentation/kernel-parameters.txt?
>>>>
>>>>> +		}
>>>>>  
>>>>>  		gart_parse_options(p);
>>>>>  
>>>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>>>> index d1f5caa..49757f1 100644
>>>>> --- a/drivers/iommu/intel-iommu.c
>>>>> +++ b/drivers/iommu/intel-iommu.c
>>>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>>>  				return ret;
>>>>>  		}
>>>>>  
>>>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>>>> +	 * driver management, so we should create the pt mapping for these
>>>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>>>> +	 * force to do pt context mapping in the bus number.
>>>>> +	 */
>>>>
>>>> So best case with this patch is that the user needs to discover that
>>>> this option exists, figure out the undocumented parameters, be running
>>>> on VT-d, permanently add a kernel commandline option, and never have any
>>>> intention of assigning the device to userspace or a VM...
>>>>
>>>> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
>>>> can the vendor fix this with a firmware update?  This device behavior is
>>>> really quite broken for this kind of server class product.  
>>>
>>> Yeah, something doesn't sound right here.
>>>
>>> I would like to hear more about this configuration, off list if you prefer.
>>> What servers?  What firmware revisions?
>>
>> Hi Linda, we found this issue in HP C7000 server. I attached the dmesg and lspci info,
>> because the machine is in product department, so I don't know the firmware revision.
>>
>> Thanks!
>> Yijing.
> Hi Yijing,
> 	I still suspect something is wrong with ARI support
> instead of Phantom Function.
> 	According to lspci output:
> 1) Root port 00:02.0 has ARIFwd enabled in DevCtl2
> 2) Function 04:00.[0-3] all have Alternative Routing-ID Interpretation
>    capability.
> So could you please try to clear ARIFwd bit in devctl2 when enumerating
> root port 00:02.0?
> 
> BTW, do function 04:00.[0-3] encounter any other issues except the
> IOMMU warnings?

Hi Gerry, I cleared the ARIFwd bit and rescan pci device(echo 1 > /sys/bus/pci/rescan), but nothing changed.
Because the 04:00.0/1/2/3 are ARI devices, so the root port will be forced to set ARIFwd bit. There has some
problem to change and rebuild the kernel now.

Other, 04:00.0-3 are 10Ge net devices, I guess no one uses it now, so no other errors found yet.

Gerry, what ARI problem do you suspect ?

> 
> Thanks!
> 
> 
>>
>>
>>>>
>>>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>>>> +		int found = 0;
>>>>> +
>>>>> +		iommu = NULL;
>>>>> +		for_each_active_iommu(iommu, drhd) {
>>>>> +			if (iommu_pt_force_domain != drhd->segment)
>>>>> +				continue;
>>>>> +
>>>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>>>> +				if (!dev_is_pci(dev))
>>>>> +					continue;
>>>>> +
>>>>> +				pdev = to_pci_dev(dev);
>>>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>>>> +						(pdev->subordinate
>>>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>>>> +					found = 1;
>>>>> +					break;
>>>>> +				}
>>>>> +			}
>>>>> +
>>>>> +			if (drhd->include_all) {
>>>>> +				found = 1;
>>>>> +				break;
>>>>> +			}
>>>>> +		}
>>>>> +
>>>>> +		if (found && iommu)
>>>>> +			for (i = 0; i < 256; i++)
>>>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>>>> +						CONTEXT_TT_MULTI_LEVEL);
>>>>> +	}
>>>>> +
>>>>>  	return 0;
>>>>>  }
>>>>>  
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> iommu mailing list
>>>> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>>>> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>>>>
>>>
>>>
>>> .
>>>
>>
>>
> 
> .
> 


-- 
Thanks!
Yijing

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]             ` <53E96FE0.7080600-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  2014-08-12  2:34               ` Jiang Liu
  2014-08-12  3:18               ` Jiang Liu
@ 2014-08-14 16:07               ` Linda Knippers
  2 siblings, 0 replies; 17+ messages in thread
From: Linda Knippers @ 2014-08-14 16:07 UTC (permalink / raw)
  To: Yijing Wang, Alex Williamson
  Cc: huaxiuxiu-hv44wF8Li93QT0dZR+AlfA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	David Woodhouse, Jiang Liu

On 8/11/2014 9:37 PM, Yijing Wang wrote:
> On 2014/8/11 22:59, Linda Knippers wrote:
>> On 8/11/2014 12:43 AM, Alex Williamson wrote:
>>> On Mon, 2014-08-11 at 10:54 +0800, Yijing Wang wrote:
>>>> We found some strange devices in HP C7000 and Huawei Server. These devices
>>>> can not be enumerated by OS, but they still did DMA read/write without OS 
>>>> management. Because iommu will not create the DMA mapping for these devices,
>>>> the DMA read/write will be blocked by iommu hardware.
>>>>
>>>> Eg.
>>>>  \-[0000:00]-+-00.0  Intel Corporation Xeon E5/Core i7 DMI2
>>>>              +-01.0-[11]--
>>>> 			 +-01.1-[02]--
>>>> 			 +-02.0-[04]--+-00.0  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.1  Emulex Corporation OneConnect 10Gb NIC (be3)
>>>> 	         |            +-00.2  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         |            \-00.3  Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3)
>>>> 	         +-02.1-[12]--
>>>> Kernel only found four devices in bus 0x04, but we found following DMA errors in dmesg.
>>>>
>>>> [ 1438.477262] DRHD: handling fault status reg 402
>>>> [ 1438.498278] DMAR:[DMA Write] Request device [04:00.4] fault addr bdf70000 
>>>> [ 1438.498280] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.566458] DMAR:[DMA Write] Request device [04:00.5] fault addr bdf70000 
>>>> [ 1438.566460] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.635211] DMAR:[DMA Write] Request device [04:00.6] fault addr bdf70000 
>>>> [ 1438.635213] DMAR:[fault reason 02] Present bit in context entry is clear
>>>> [ 1438.703849] DMAR:[DMA Write] Request device [04:00.7] fault addr bdf70000 
>>>> [ 1438.703851] DMAR:[fault reason 02] Present bit in context entry is clear
>>>>
>>>> Signed-off-by: Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
>>>> ---
>>>>  arch/x86/include/asm/iommu.h |    2 ++
>>>>  arch/x86/kernel/pci-dma.c    |    8 ++++++++
>>>>  drivers/iommu/intel-iommu.c  |   41 +++++++++++++++++++++++++++++++++++++++++
>>>>  3 files changed, 51 insertions(+), 0 deletions(-)
>>>>
>>>> diff --git a/arch/x86/include/asm/iommu.h b/arch/x86/include/asm/iommu.h
>>>> index 345c99c..5e3a2d8 100644
>>>> --- a/arch/x86/include/asm/iommu.h
>>>> +++ b/arch/x86/include/asm/iommu.h
>>>> @@ -5,6 +5,8 @@ extern struct dma_map_ops nommu_dma_ops;
>>>>  extern int force_iommu, no_iommu;
>>>>  extern int iommu_detected;
>>>>  extern int iommu_pass_through;
>>>> +extern int iommu_pt_force_bus;
>>>> +extern int iommu_pt_force_domain;
>>>>  
>>>>  /* 10 seconds */
>>>>  #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000)
>>>> diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c
>>>> index a25e202..bf21d97 100644
>>>> --- a/arch/x86/kernel/pci-dma.c
>>>> +++ b/arch/x86/kernel/pci-dma.c
>>>> @@ -44,6 +44,8 @@ int iommu_detected __read_mostly = 0;
>>>>   * guests and not for driver dma translation.
>>>>   */
>>>>  int iommu_pass_through __read_mostly;
>>>> +int iommu_pt_force_bus = -1;
>>>> +int iommu_pt_force_domain = -1;
>>>>  
>>>>  extern struct iommu_table_entry __iommu_table[], __iommu_table_end[];
>>>>  
>>>> @@ -146,6 +148,7 @@ void dma_generic_free_coherent(struct device *dev, size_t size, void *vaddr,
>>>>   */
>>>>  static __init int iommu_setup(char *p)
>>>>  {
>>>> +	char *end;
>>>>  	iommu_merge = 1;
>>>>  
>>>>  	if (!p)
>>>> @@ -192,6 +195,11 @@ static __init int iommu_setup(char *p)
>>>>  #endif
>>>>  		if (!strncmp(p, "pt", 2))
>>>>  			iommu_pass_through = 1;
>>>> +		if (!strncmp(p, "pt_force=", 9)) {
>>>> +			iommu_pass_through = 1;
>>>> +			iommu_pt_force_domain = simple_strtol(p+9, &end, 0);
>>>> +			iommu_pt_force_bus = simple_strtol(end+1, NULL, 0);
>>>
>>> Documentation/kernel-parameters.txt?
>>>
>>>> +		}
>>>>  
>>>>  		gart_parse_options(p);
>>>>  
>>>> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
>>>> index d1f5caa..49757f1 100644
>>>> --- a/drivers/iommu/intel-iommu.c
>>>> +++ b/drivers/iommu/intel-iommu.c
>>>> @@ -2705,6 +2705,47 @@ static int __init iommu_prepare_static_identity_mapping(int hw)
>>>>  				return ret;
>>>>  		}
>>>>  
>>>> +	/* We found some strange devices in HP c7000 and other platforms that
>>>> +	 * can not be enumerated by OS, but they did DMA read/write without
>>>> +	 * driver management, so we should create the pt mapping for these
>>>> +	 * devices to avoid DMA errors. Add iommu=pt_force=segment:busnum to
>>>> +	 * force to do pt context mapping in the bus number.
>>>> +	 */
>>>
>>> So best case with this patch is that the user needs to discover that
>>> this option exists, figure out the undocumented parameters, be running
>>> on VT-d, permanently add a kernel commandline option, and never have any
>>> intention of assigning the device to userspace or a VM...
>>>
>>> Can't we handle this with the DMA alias quirks that are now in 3.17?  Or
>>> can the vendor fix this with a firmware update?  This device behavior is
>>> really quite broken for this kind of server class product.  
>>
>> Yeah, something doesn't sound right here.
>>
>> I would like to hear more about this configuration, off list if you prefer.
>> What servers?  What firmware revisions?
> 
> Hi Linda, we found this issue in HP C7000 server. I attached the dmesg and lspci info,
> because the machine is in product department, so I don't know the firmware revision.

Thanks for the information.  I may have some additional questions for
you but this is helpful.

-- ljk

> 
> Thanks!
> Yijing.
> 
> 
>>>
>>>> +	if (iommu_pt_force_bus >= 0 && iommu_pt_force_bus >= 0) {
>>>> +		int found = 0;
>>>> +
>>>> +		iommu = NULL;
>>>> +		for_each_active_iommu(iommu, drhd) {
>>>> +			if (iommu_pt_force_domain != drhd->segment)
>>>> +				continue;
>>>> +
>>>> +			for_each_active_dev_scope(drhd->devices, drhd->devices_cnt, i, dev) {
>>>> +				if (!dev_is_pci(dev))
>>>> +					continue;
>>>> +
>>>> +				pdev = to_pci_dev(dev);
>>>> +				if (pdev->bus->number == iommu_pt_force_bus ||
>>>> +						(pdev->subordinate
>>>> +						 && pdev->subordinate->number <= iommu_pt_force_bus
>>>> +						 && pdev->subordinate->busn_res.end >= iommu_pt_force_bus)) {
>>>> +					found = 1;
>>>> +					break;
>>>> +				}
>>>> +			}
>>>> +
>>>> +			if (drhd->include_all) {
>>>> +				found = 1;
>>>> +				break;
>>>> +			}
>>>> +		}
>>>> +
>>>> +		if (found && iommu)
>>>> +			for (i = 0; i < 256; i++)
>>>> +				domain_context_mapping_one(si_domain, iommu, iommu_pt_force_bus,
>>>> +						i,  hw ? CONTEXT_TT_PASS_THROUGH :
>>>> +						CONTEXT_TT_MULTI_LEVEL);
>>>> +	}
>>>> +
>>>>  	return 0;
>>>>  }
>>>>  
>>>
>>>
>>>
>>> _______________________________________________
>>> iommu mailing list
>>> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>>> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>>>
>>
>>
>> .
>>
> 
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]         ` <CAE1O4xrQYpc4o6MbN8b7kkgwTbjj+Pszu5WUwM_vErUfyQYfNw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-09-25 14:29           ` Linda Knippers
  0 siblings, 0 replies; 17+ messages in thread
From: Linda Knippers @ 2014-09-25 14:29 UTC (permalink / raw)
  To: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On 9/25/2014 9:56 AM, Rob Roschewsk wrote:
> OK ... at first glance the system seems to be operating "normally"
> except for the errors every 4 seconds ... that is it's attached to and
> using the iscsi target ... 
> 
> Is this a problem in iommu OR the emulex driver?? 

Please make sure your BIOS and NIC firmware are up to date.
That usually solves this problem.

-- ljk
> 
> On Thu, Sep 25, 2014 at 2:36 AM, Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org
> <mailto:wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>> wrote:
> 
>     On 2014/9/25 5:56, Rob Roschewsk wrote:
>     > Hello All .... wonder if there has been any movement on this issue
>     .... I'm having a similar issue
>     >
>     > I'm running an HP dl380 gen 8 with an Emulex OneConnect 10Gb iSCSI
>     (14e4:164c) (rev 11)
>     > also known as " Hewlett-Packard Company NC373i Integrated
>     Multifunction Gigabit Server Adapter"
>     >
>     > 03:00.2 Mass storage controller: Emulex Corporation OneConnect
>     10Gb iSCSI Initiator (be3) (rev 01)
>     >
>     > 03:00.3 Mass storage controller: Emulex Corporation OneConnect
>     10Gb iSCSI Initiator (be3) (rev 01)
>     >
>     > Seems as soon as the iscsi target is contacted the following
>     messages appear in the log every few seconds ....
>     >
> 
>     It seems to a different problem, in my issue, the DMA fault messages
>     contained a non-exist PCI ID in system.
>     But in this issue, 03:00.2 is in system, the fault addr is ffffc000,
>     I guess it's DMA virtual address allocated
>     by vt-d driver. And it seems to 03:00.2 has no write access authority.
> 
>     > Sep 24 15:25:30  kernel: [ 78.682675] dmar: DRHD: handling fault
>     status reg 2
>     > Sep 24 15:25:30  kernel: [ 78.699797] dmar: DMAR:[DMA Write]
>     Request device [03:00.2] fault addr ffffc000
>     > Sep 24 15:25:30  kernel: [ 78.699797] DMAR:[fault reason 05] PTE
>     Write access is not set
>     > Sep 24 15:25:30  kernel: [ 78.934546] dmar: DRHD: handling fault
>     status reg 102
>     > Sep 24 15:25:30  kernel: [ 78.934549] dmar: DMAR:[DMA Write]
>     Request device [03:00.2] fault addr ffffc000
>     > Sep 24 15:25:30  kernel: [ 78.934549] DMAR:[fault reason 05] PTE
>     Write access is not set
>     > Sep 24 15:25:30  kernel: [ 78.935359] dmar: DRHD: handling fault
>     status reg 202
>     >
>     > If I pull intel_iommu=on out of the kernel command line the
>     problem goes away.
>     >
>     > System is running Ubuntu 14.04.1 LTS
>     >
>     > 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014
>     x86_64 x86_64 x86_64 GNU/Linux
>     >
>     > Looking for help .... I'm not sure where I should be looking next
>     ..... I need SR-IOV for other adapters in the box.
>     >
>     > I have a system up that I can pull any data from that might be
>     required.
>     >
>     > Thanks,
>     >
>     > --> Rob
>     >
>     >
>     >
>     >
>     >
>     > _______________________________________________
>     > iommu mailing list
>     > iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
>     <mailto:iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
>     > https://lists.linuxfoundation.org/mailman/listinfo/iommu
>     >
> 
> 
>     --
>     Thanks!
>     Yijing
> 
> 
> 
> 
> _______________________________________________
> iommu mailing list
> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
> 

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found]     ` <54237F92.1090601-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
@ 2014-09-25 13:56       ` Rob Roschewsk
       [not found]         ` <CAE1O4xrQYpc4o6MbN8b7kkgwTbjj+Pszu5WUwM_vErUfyQYfNw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Rob Roschewsk @ 2014-09-25 13:56 UTC (permalink / raw)
  To: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 2729 bytes --]

OK ... at first glance the system seems to be operating "normally" except
for the errors every 4 seconds ... that is it's attached to and using the
iscsi target ...

Is this a problem in iommu OR the emulex driver??

On Thu, Sep 25, 2014 at 2:36 AM, Yijing Wang <wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org> wrote:

> On 2014/9/25 5:56, Rob Roschewsk wrote:
> > Hello All .... wonder if there has been any movement on this issue ....
> I'm having a similar issue
> >
> > I'm running an HP dl380 gen 8 with an Emulex OneConnect 10Gb iSCSI
> (14e4:164c) (rev 11)
> > also known as " Hewlett-Packard Company NC373i Integrated Multifunction
> Gigabit Server Adapter"
> >
> > 03:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb
> iSCSI Initiator (be3) (rev 01)
> >
> > 03:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb
> iSCSI Initiator (be3) (rev 01)
> >
> > Seems as soon as the iscsi target is contacted the following messages
> appear in the log every few seconds ....
> >
>
> It seems to a different problem, in my issue, the DMA fault messages
> contained a non-exist PCI ID in system.
> But in this issue, 03:00.2 is in system, the fault addr is ffffc000, I
> guess it's DMA virtual address allocated
> by vt-d driver. And it seems to 03:00.2 has no write access authority.
>
> > Sep 24 15:25:30  kernel: [ 78.682675] dmar: DRHD: handling fault status
> reg 2
> > Sep 24 15:25:30  kernel: [ 78.699797] dmar: DMAR:[DMA Write] Request
> device [03:00.2] fault addr ffffc000
> > Sep 24 15:25:30  kernel: [ 78.699797] DMAR:[fault reason 05] PTE Write
> access is not set
> > Sep 24 15:25:30  kernel: [ 78.934546] dmar: DRHD: handling fault status
> reg 102
> > Sep 24 15:25:30  kernel: [ 78.934549] dmar: DMAR:[DMA Write] Request
> device [03:00.2] fault addr ffffc000
> > Sep 24 15:25:30  kernel: [ 78.934549] DMAR:[fault reason 05] PTE Write
> access is not set
> > Sep 24 15:25:30  kernel: [ 78.935359] dmar: DRHD: handling fault status
> reg 202
> >
> > If I pull intel_iommu=on out of the kernel command line the problem goes
> away.
> >
> > System is running Ubuntu 14.04.1 LTS
> >
> > 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64
> x86_64 x86_64 GNU/Linux
> >
> > Looking for help .... I'm not sure where I should be looking next .....
> I need SR-IOV for other adapters in the box.
> >
> > I have a system up that I can pull any data from that might be required.
> >
> > Thanks,
> >
> > --> Rob
> >
> >
> >
> >
> >
> > _______________________________________________
> > iommu mailing list
> > iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> > https://lists.linuxfoundation.org/mailman/listinfo/iommu
> >
>
>
> --
> Thanks!
> Yijing
>
>

[-- Attachment #1.2: Type: text/html, Size: 3583 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
       [not found] ` <1597491265.153338.1411595791727.JavaMail.open-xchange-91tEjvOFe9KcT/DCa4qSTkaJx/dRlJfr5NbjCUgZEJk@public.gmane.org>
@ 2014-09-25  2:36   ` Yijing Wang
       [not found]     ` <54237F92.1090601-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Yijing Wang @ 2014-09-25  2:36 UTC (permalink / raw)
  To: Rob Roschewsk, iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA

On 2014/9/25 5:56, Rob Roschewsk wrote:
> Hello All .... wonder if there has been any movement on this issue .... I'm having a similar issue 
>  
> I'm running an HP dl380 gen 8 with an Emulex OneConnect 10Gb iSCSI (14e4:164c) (rev 11)
> also known as " Hewlett-Packard Company NC373i Integrated Multifunction Gigabit Server Adapter"
>  
> 03:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
> 
> 03:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI Initiator (be3) (rev 01)
> 
> Seems as soon as the iscsi target is contacted the following messages appear in the log every few seconds ....
> 

It seems to a different problem, in my issue, the DMA fault messages contained a non-exist PCI ID in system.
But in this issue, 03:00.2 is in system, the fault addr is ffffc000, I guess it's DMA virtual address allocated
by vt-d driver. And it seems to 03:00.2 has no write access authority.

> Sep 24 15:25:30  kernel: [ 78.682675] dmar: DRHD: handling fault status reg 2
> Sep 24 15:25:30  kernel: [ 78.699797] dmar: DMAR:[DMA Write] Request device [03:00.2] fault addr ffffc000
> Sep 24 15:25:30  kernel: [ 78.699797] DMAR:[fault reason 05] PTE Write access is not set
> Sep 24 15:25:30  kernel: [ 78.934546] dmar: DRHD: handling fault status reg 102
> Sep 24 15:25:30  kernel: [ 78.934549] dmar: DMAR:[DMA Write] Request device [03:00.2] fault addr ffffc000
> Sep 24 15:25:30  kernel: [ 78.934549] DMAR:[fault reason 05] PTE Write access is not set
> Sep 24 15:25:30  kernel: [ 78.935359] dmar: DRHD: handling fault status reg 202
> 
> If I pull intel_iommu=on out of the kernel command line the problem goes away.
> 
> System is running Ubuntu 14.04.1 LTS 
> 
> 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
> 
> Looking for help .... I'm not sure where I should be looking next ..... I need SR-IOV for other adapters in the box.
> 
> I have a system up that I can pull any data from that might be required.
> 
> Thanks,
> 
> --> Rob
> 
>  
> 
> 
> 
> _______________________________________________
> iommu mailing list
> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
> 


-- 
Thanks!
Yijing

^ permalink raw reply	[flat|nested] 17+ messages in thread

* RE: [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt
@ 2014-09-24 21:56 Rob Roschewsk
       [not found] ` <1597491265.153338.1411595791727.JavaMail.open-xchange-91tEjvOFe9KcT/DCa4qSTkaJx/dRlJfr5NbjCUgZEJk@public.gmane.org>
  0 siblings, 1 reply; 17+ messages in thread
From: Rob Roschewsk @ 2014-09-24 21:56 UTC (permalink / raw)
  To: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA


[-- Attachment #1.1: Type: text/plain, Size: 1653 bytes --]

Hello All .... wonder if there has been any movement on this issue .... I'm
having a similar issue 
 
I'm running an HP dl380 gen 8 with an Emulex OneConnect 10Gb iSCSI (14e4:164c)
(rev 11)
also known as " Hewlett-Packard Company NC373i Integrated Multifunction Gigabit
Server Adapter"
 
03:00.2 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI
Initiator (be3) (rev 01)

03:00.3 Mass storage controller: Emulex Corporation OneConnect 10Gb iSCSI
Initiator (be3) (rev 01)

Seems as soon as the iscsi target is contacted the following messages appear in
the log every few seconds ....

Sep 24 15:25:30  kernel: [ 78.682675] dmar: DRHD: handling fault status reg 2
Sep 24 15:25:30  kernel: [ 78.699797] dmar: DMAR:[DMA Write] Request device
[03:00.2] fault addr ffffc000
Sep 24 15:25:30  kernel: [ 78.699797] DMAR:[fault reason 05] PTE Write access is
not set
Sep 24 15:25:30  kernel: [ 78.934546] dmar: DRHD: handling fault status reg 102
Sep 24 15:25:30  kernel: [ 78.934549] dmar: DMAR:[DMA Write] Request device
[03:00.2] fault addr ffffc000
Sep 24 15:25:30  kernel: [ 78.934549] DMAR:[fault reason 05] PTE Write access is
not set
Sep 24 15:25:30  kernel: [ 78.935359] dmar: DRHD: handling fault status reg 202

If I pull intel_iommu=on out of the kernel command line the problem goes away.

System is running Ubuntu 14.04.1 LTS 

3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64
x86_64 GNU/Linux

Looking for help .... I'm not sure where I should be looking next ..... I need
SR-IOV for other adapters in the box.

I have a system up that I can pull any data from that might be required.

Thanks,

--> Rob

 

[-- Attachment #1.2: Type: text/html, Size: 2771 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2014-09-25 14:29 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-11  2:54 [PATCH] iommu/vt-d: Fix broken device issue when using iommu=pt Yijing Wang
     [not found] ` <1407725674-27271-1-git-send-email-wangyijing-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2014-08-11  3:15   ` Jiang Liu
     [not found]     ` <53E8355C.4010906-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2014-08-11  3:46       ` Yijing Wang
     [not found]         ` <53E83C9E.9060405-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2014-08-11  4:56           ` Jiang Liu
     [not found]             ` <53E84CEA.7080402-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2014-08-11  8:26               ` Yijing Wang
2014-08-11  4:43   ` Alex Williamson
     [not found]     ` <1407732187.9800.11.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
2014-08-11  8:36       ` Yijing Wang
2014-08-11 14:59       ` Linda Knippers
     [not found]         ` <53E8DA5E.8090406-VXdhtT5mjnY@public.gmane.org>
2014-08-12  1:37           ` Yijing Wang
     [not found]             ` <53E96FE0.7080600-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2014-08-12  2:34               ` Jiang Liu
2014-08-12  3:18               ` Jiang Liu
     [not found]                 ` <53E9876F.9040300-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2014-08-12  3:48                   ` Yijing Wang
2014-08-14 16:07               ` Linda Knippers
2014-09-24 21:56 Rob Roschewsk
     [not found] ` <1597491265.153338.1411595791727.JavaMail.open-xchange-91tEjvOFe9KcT/DCa4qSTkaJx/dRlJfr5NbjCUgZEJk@public.gmane.org>
2014-09-25  2:36   ` Yijing Wang
     [not found]     ` <54237F92.1090601-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2014-09-25 13:56       ` Rob Roschewsk
     [not found]         ` <CAE1O4xrQYpc4o6MbN8b7kkgwTbjj+Pszu5WUwM_vErUfyQYfNw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-09-25 14:29           ` Linda Knippers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.