Hot execution of a startupclass???????

Hi all ..
I have a java class registered using "weblogic.system.startupClass"
property in WL 5.1 which basically loads few tables from teh database
using two of the connection pools defined in teh same property file.
Now my problem is something like this ---
restarting the server is a major pain for me as i have arnd 100+ EJBS
and lotta other activities during startup.
when ever i have something inserted in that database i have to restart
the entire server which easily turns out to be more than 15 mins job.
To avoid this i would like to have some event which would tell me
weblogic server to reexecute that particular startupclass.
and i dont have slightest of idea how to do it . any help in this
regard would save me loads of mytime.
something like hot deployment .......... ???
thanking u all in advance
regards
vivek garg

Remember, a weblogic startup class is just a Java class that gets
instantiated by WLS on startup and has a couple of methods invoked on the
instance. Why not simply do something like this (this is intended as an
example only)?
import weblogic.rmi.*;
public interface DbCacheManager extends Remote
public void reloadCache() throws RemoteException;
++++ end of file ++++
import weblogic.rmi.*;
public class MyStartupClass implements T3StartupDef, DbCacheManager
public void setServices(T3ServicesDef services) { }
public String startup(String name, Hashtable args) throws Exception
reloadCache();
InitialContext ctx = new InitialContext();
ctx.bind("MyDbCacheManager", this);
public void reloadCache() throws RemoteException
// do whatever was being done by the startup class
Now, you can write a client utility that looks up the DbCacheManager from
JNDI and invokes reloadCache()...
Hope this helps,
Robert
vivek garg wrote:
Hi all ..
I have a java class registered using "weblogic.system.startupClass"
property in WL 5.1 which basically loads few tables from teh database
using two of the connection pools defined in teh same property file.
Now my problem is something like this ---
restarting the server is a major pain for me as i have arnd 100+ EJBS
and lotta other activities during startup.
when ever i have something inserted in that database i have to restart
the entire server which easily turns out to be more than 15 mins job.
To avoid this i would like to have some event which would tell me
weblogic server to reexecute that particular startupclass.
and i dont have slightest of idea how to do it . any help in this
regard would save me loads of mytime.
something like hot deployment .......... ???
thanking u all in advance
regards
vivek garg

Similar Messages

  • HOT Redeployment of EAR fails with Classloader error

    App Server: WLS 10.3
    OS: Solaris 9
    I have installed WLS installed with a domain, admin and a managed server. Everything is working fine.
    I have WAR and EAR deployed successfully on the Managed Server.
    HOT deployment of WAR files works perfectly fine.
    There is this EAR "IIA.ear" with @ 8 WAR files and 1 jar "Manager.jar". The EAR has been deployed in the "nostage" mode.
    I do not have any separate "Deployment" plan.
    In order to "redeploy" the EAR I go to the Admin console >> Deployments >> Select the EAR >> update >> Source Path remains the same >> Finish
    I get the following error :
    +#####################+
    weblogic.application.CannotRedeployException: Module 'Manager.jar' has the same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.
    Update operation failed - no deployments changed.
    +#####################+
    The log files shows below error
    +#####################+
    +<Sep 15, 2009 9:18:52 AM MEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with+
    ID '1252999132033' for task '8'. Error is: 'weblogic.application.CannotRedeployException: Module 'Manager.jar' has the
    same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.'
    weblogic.application.CannotRedeployException: Module 'Manager.jar' has the same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.
    at weblogic.application.internal.AppClassLoaderManagerImpl.updatePartialDeploySet(AppClassLoaderManagerImpl.java:299)
    at weblogic.application.internal.flow.TailModuleRedeployFlow.validateClassLoaderStructure(TailModuleRedeployFlow.java
    +:135)+
    at weblogic.application.internal.flow.TailModuleRedeployFlow.validateRedeploy(TailModuleRedeployFlow.java:97)
    at weblogic.application.internal.BaseDeployment$ValidateRedeployStateChange.next(BaseDeployment.java:801)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    Truncated. see log file for complete stacktrace
    +>+
    +#####################+
    does WLS 10 supports HOT deployment of EAR files? Is it any issue with "Class Loading"? Anything to be changed to make this HOT redeployment successful?

    App Server: WLS 10.3
    OS: Solaris 9
    I have installed WLS installed with a domain, admin and a managed server. Everything is working fine.
    I have WAR and EAR deployed successfully on the Managed Server.
    HOT deployment of WAR files works perfectly fine.
    There is this EAR "IIA.ear" with @ 8 WAR files and 1 jar "Manager.jar". The EAR has been deployed in the "nostage" mode.
    I do not have any separate "Deployment" plan.
    In order to "redeploy" the EAR I go to the Admin console >> Deployments >> Select the EAR >> update >> Source Path remains the same >> Finish
    I get the following error :
    +#####################+
    weblogic.application.CannotRedeployException: Module 'Manager.jar' has the same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.
    Update operation failed - no deployments changed.
    +#####################+
    The log files shows below error
    +#####################+
    +<Sep 15, 2009 9:18:52 AM MEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with+
    ID '1252999132033' for task '8'. Error is: 'weblogic.application.CannotRedeployException: Module 'Manager.jar' has the
    same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.'
    weblogic.application.CannotRedeployException: Module 'Manager.jar' has the same ClassLoader as the Application 'IIA'. Consider redeploying the entire application.
    at weblogic.application.internal.AppClassLoaderManagerImpl.updatePartialDeploySet(AppClassLoaderManagerImpl.java:299)
    at weblogic.application.internal.flow.TailModuleRedeployFlow.validateClassLoaderStructure(TailModuleRedeployFlow.java
    +:135)+
    at weblogic.application.internal.flow.TailModuleRedeployFlow.validateRedeploy(TailModuleRedeployFlow.java:97)
    at weblogic.application.internal.BaseDeployment$ValidateRedeployStateChange.next(BaseDeployment.java:801)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
    Truncated. see log file for complete stacktrace
    +>+
    +#####################+
    does WLS 10 supports HOT deployment of EAR files? Is it any issue with "Class Loading"? Anything to be changed to make this HOT redeployment successful?

  • Freezing execution after poweroff

    Hi
    I have installed archlinux on a friend's laptop and I got this error after run poweroff from console as root (and having another console as normal user):
    [ 6131.739516] systemd[1]: Code should not be reached `Uh, main process died at wrog time.' at src/core/service.c:2458, function service_sigchld_event(). Aborting.
    [ 6132.409460] systemd[1]: Caught <ABRT>, dumped core as pid 21285.
    [ 6132.422780] systemd[1]: Freezing execution.
    At that time keyboard didn't answer. I had to power off by button. By now it only happened once.
    [root@diego_portatil ~]# coredumpctl dump 21285
    PID: 21285 (systemd)
    UID: 0 (root)
    GID: 0 (root)
    Signal: 6 (ABRT)
    Timestamp: mié 2015-06-17 05:54:38 UTC (24h ago)
    Command Line: /sbin/init
    Executable: /usr/lib/systemd/systemd
    Control Group: /
    Boot ID: a216cb6105f2419d9e170a8be9b76580
    Machine ID: dab71f8f68ae4179b1810002efc4ad38
    Hostname: diego_portatil
    Coredump: /var/lib/systemd/coredump/core.systemd.0.a216cb6105f2419d9e170a8be9b76580.21285.1434520478000000.lz4
    Message: Process 21285 (systemd) of user 0 dumped core.
    Refusing to dump core to tty.
    [root@diego_portatil ~]#
    I had coredump file if someone want it.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 4.0.5-1-ARCH (builduser@tobias) (gcc version 5.1.0 (GCC) ) #1 SMP PREEMPT Sat Jun 6 18:52:28 CEST 2015
    [ 0.000000] Disabled fast string operations
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000dc000-0x00000000000dffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003f68ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000003f690000-0x000000003f69dfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000003f69e000-0x000000003f6fffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000003f700000-0x000000003fffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: DIXONSXP DIXONSXP/DIXONSXP, BIOS 1.12.DIX 08/21/2007
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] e820: last_pfn = 0x3f690 max_arch_pfn = 0x100000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask FC0000000 write-back
    [ 0.000000] 1 base 03F700000 mask FFFF00000 uncachable
    [ 0.000000] 2 base 03F800000 mask FFF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] PAT not supported by CPU.
    [ 0.000000] found SMP MP-table at [mem 0x000f7940-0x000f794f] mapped at [c00f7940]
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x01bfffff]
    [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x36400000-0x367fffff]
    [ 0.000000] [mem 0x36400000-0x367fffff] page 4M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x363fffff]
    [ 0.000000] [mem 0x00100000-0x003fffff] page 4k
    [ 0.000000] [mem 0x00400000-0x363fffff] page 4M
    [ 0.000000] init_memory_mapping: [mem 0x36800000-0x377fdfff]
    [ 0.000000] [mem 0x36800000-0x373fffff] page 4M
    [ 0.000000] [mem 0x37400000-0x377fdfff] page 4k
    [ 0.000000] BRK [0x017e3000, 0x017e3fff] PGTABLE
    [ 0.000000] RAMDISK: [mem 0x36afa000-0x37574fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000000F7890 000014 (v00 PTLTD )
    [ 0.000000] ACPI: RSDT 0x000000003F697E82 000050 (v01 DSGLTD DSGVISTA 06040000 LTP 00000000)
    [ 0.000000] ACPI: FACP 0x000000003F69DCB8 000074 (v01 INTEL CALISTGA 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: DSDT 0x000000003F69926F 004A49 (v01 UW____ FUW_____ 06040000 INTL 20050624)
    [ 0.000000] ACPI: FACS 0x000000003F69EFC0 000040
    [ 0.000000] ACPI: APIC 0x000000003F69DD2C 000068 (v01 INTEL CALISTGA 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: HPET 0x000000003F69DD94 000038 (v01 INTEL CALISTGA 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: MCFG 0x000000003F69DDCC 00003C (v01 INTEL CALISTGA 06040000 LOHR 0000005A)
    [ 0.000000] ACPI: APIC 0x000000003F69DE08 00005A (v01 PTLTD ? APIC 06040000 LTP 00000000)
    [ 0.000000] ACPI: SLIC 0x000000003F69DE62 000176 (v01 DSGLTD DSGVISTA 06040000 LTP 00000000)
    [ 0.000000] ACPI: BOOT 0x000000003F69DFD8 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
    [ 0.000000] ACPI: SSDT 0x000000003F698C20 00064F (v01 SataRe SataPri 00001000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 0x000000003F69858E 000692 (v01 SataRe SataSec 00001000 INTL 20050624)
    [ 0.000000] ACPI: SSDT 0x000000003F6983C8 0001C6 (v01 PmRef Cpu0Cst 00003001 INTL 20050624)
    [ 0.000000] ACPI: SSDT 0x000000003F697ED2 0004F6 (v01 PmRef CpuPm 00003000 INTL 20050624)
    [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
    [ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify [email protected]
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] 126MB HIGHMEM available.
    [ 0.000000] 887MB LOWMEM available.
    [ 0.000000] mapped low ram: 0 - 377fe000
    [ 0.000000] low ram: 0 - 377fe000
    [ 0.000000] BRK [0x017e4000, 0x017e4fff] PGTABLE
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
    [ 0.000000] Normal [mem 0x0000000001000000-0x00000000377fdfff]
    [ 0.000000] HighMem [mem 0x00000000377fe000-0x000000003f68ffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
    [ 0.000000] node 0: [mem 0x0000000000100000-0x000000003f68ffff]
    [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000003f68ffff]
    [ 0.000000] On node 0 totalpages: 259630
    [ 0.000000] free_area_init_node: node 0, pgdat c165e640, node_mem_map f610e028
    [ 0.000000] DMA zone: 40 pages used for memmap
    [ 0.000000] DMA zone: 0 pages reserved
    [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
    [ 0.000000] Normal zone: 2180 pages used for memmap
    [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
    [ 0.000000] HighMem zone: 32402 pages, LIFO batch:7
    [ 0.000000] Using APIC driver default
    [ 0.000000] Reserving Intel graphics stolen memory at 0x3f800000-0x3fffffff
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 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: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 1 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000dc000-0x000dffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000e3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
    [ 0.000000] e820: [mem 0x40000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 16 pages/cpu @f77d8000 s36812 r0 d28724 u65536
    [ 0.000000] pcpu-alloc: s36812 r0 d28724 u65536 alloc=16*4096
    [ 0.000000] pcpu-alloc: [0] 0 [0] 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 257410
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=a5a0ad12-0bf7-4fbd-8766-dba9f62aea01 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [ 0.000000] Initializing CPU#0
    [ 0.000000] Initializing HighMem for node 0 (000377fe:0003f690)
    [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
    [ 0.000000] Memory: 1008516K/1038520K available (4747K kernel code, 440K rwdata, 1404K rodata, 588K init, 828K bss, 30004K reserved, 0K cma-reserved, 129608K highmem)
    [ 0.000000] virtual kernel memory layout:
    fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc1674000 - 0xc1707000 ( 588 kB)
    .data : 0xc14a325b - 0xc16722c0 (1852 kB)
    .text : 0xc1000000 - 0xc14a325b (4748 kB)
    [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [ 0.000000] NR_IRQS:2304 nr_irqs:440 16
    [ 0.000000] CPU 0 irqstacks, hard=f5c34000 soft=f5c36000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration failed
    [ 0.000000] tsc: PIT calibration matches HPET. 1 loops
    [ 0.000000] tsc: Detected 1733.374 MHz processor
    [ 0.006680] Calibrating delay loop (skipped), value calculated using timer frequency.. 3468.19 BogoMIPS (lpj=5777913)
    [ 0.006685] pid_max: default: 32768 minimum: 301
    [ 0.006697] ACPI: Core revision 20150204
    [ 0.014597] ACPI: All ACPI Tables successfully acquired
    [ 0.016697] Security Framework initialized
    [ 0.016710] Yama: becoming mindful.
    [ 0.016728] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.016732] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.017040] Initializing cgroup subsys blkio
    [ 0.017045] Initializing cgroup subsys memory
    [ 0.017056] Initializing cgroup subsys devices
    [ 0.017060] Initializing cgroup subsys freezer
    [ 0.017065] Initializing cgroup subsys net_cls
    [ 0.017091] Disabled fast string operations
    [ 0.017100] mce: CPU supports 6 MCE banks
    [ 0.017112] CPU0: Thermal monitoring enabled (TM1)
    [ 0.017116] process: using mwait in idle threads
    [ 0.017125] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
    [ 0.017128] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8, 1GB 0
    [ 0.025090] ftrace: allocating 20198 entries in 40 pages
    [ 0.033471] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.033963] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.069999] smpboot: CPU0: Intel(R) Celeron(R) M CPU 430 @ 1.73GHz (fam: 06, model: 0e, stepping: 0c)
    [ 0.069999] Performance Events: Core events, core PMU driver.
    [ 0.069999] ... version: 1
    [ 0.069999] ... bit width: 40
    [ 0.069999] ... generic registers: 2
    [ 0.069999] ... value mask: 000000ffffffffff
    [ 0.069999] ... max period: 000000007fffffff
    [ 0.069999] ... fixed-purpose events: 0
    [ 0.069999] ... event mask: 0000000000000003
    [ 0.083351] x86: Booted up 1 node, 1 CPUs
    [ 0.083355] smpboot: Total of 1 processors activated (3468.19 BogoMIPS)
    [ 0.084011] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.084158] devtmpfs: initialized
    [ 0.084498] PM: Registering ACPI NVS region [mem 0x3f69e000-0x3f6fffff] (401408 bytes)
    [ 0.084712] pinctrl core: initialized pinctrl subsystem
    [ 0.084768] RTC time: 5:36:20, date: 06/18/15
    [ 0.084958] NET: Registered protocol family 16
    [ 0.096673] cpuidle: using governor ladder
    [ 0.110004] cpuidle: using governor menu
    [ 0.110096] ACPI: bus type PCI registered
    [ 0.110099] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.110214] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.110219] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.110221] PCI: Using MMCONFIG for extended config space
    [ 0.110223] PCI: Using configuration type 1 for base access
    [ 0.123904] ACPI: Added _OSI(Module Device)
    [ 0.123909] ACPI: Added _OSI(Processor Device)
    [ 0.123911] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.123914] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.127052] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.127997] ACPI: Interpreter enabled
    [ 0.127997] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150204/hwxface-580)
    [ 0.127997] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150204/hwxface-580)
    [ 0.127997] ACPI: (supports S0 S3 S4 S5)
    [ 0.127997] ACPI: Using IOAPIC for interrupt routing
    [ 0.127997] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    [ 0.140018] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.140029] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.140037] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    [ 0.140382] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7 window] (ignored)
    [ 0.140386] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff window] (ignored)
    [ 0.140390] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff window] (ignored)
    [ 0.140393] acpi PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff window] (ignored)
    [ 0.140397] acpi PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff window] (ignored)
    [ 0.140400] acpi PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff window] (ignored)
    [ 0.140403] acpi PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff window] (ignored)
    [ 0.140407] acpi PNP0A08:00: host bridge window [mem 0x40000000-0xfebfffff window] (ignored)
    [ 0.140410] PCI: root bus 00: using default resources
    [ 0.140639] PCI host bridge to bus 0000:00
    [ 0.140644] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.140647] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.140651] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
    [ 0.140665] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
    [ 0.140816] pci 0000:00:02.0: [8086:27a2] type 00 class 0x030000
    [ 0.140831] pci 0000:00:02.0: reg 0x10: [mem 0xb0080000-0xb00fffff]
    [ 0.140840] pci 0000:00:02.0: reg 0x14: [io 0x1800-0x1807]
    [ 0.140848] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff pref]
    [ 0.140856] pci 0000:00:02.0: reg 0x1c: [mem 0xb0040000-0xb007ffff]
    [ 0.141000] pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
    [ 0.141013] pci 0000:00:02.1: reg 0x10: [mem 0xb0100000-0xb017ffff]
    [ 0.141217] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    [ 0.141245] pci 0000:00:1b.0: reg 0x10: [mem 0xf0000000-0xf0003fff 64bit]
    [ 0.141374] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.141441] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.141518] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
    [ 0.141648] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.141787] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
    [ 0.141915] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.142055] pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400
    [ 0.142181] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    [ 0.142323] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    [ 0.142385] pci 0000:00:1d.0: reg 0x20: [io 0x1820-0x183f]
    [ 0.142491] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.142565] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    [ 0.142627] pci 0000:00:1d.1: reg 0x20: [io 0x1840-0x185f]
    [ 0.142731] pci 0000:00:1d.1: System wakeup disabled by ACPI
    [ 0.142803] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    [ 0.142864] pci 0000:00:1d.2: reg 0x20: [io 0x1860-0x187f]
    [ 0.142970] pci 0000:00:1d.2: System wakeup disabled by ACPI
    [ 0.143042] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    [ 0.143104] pci 0000:00:1d.3: reg 0x20: [io 0x1880-0x189f]
    [ 0.143207] pci 0000:00:1d.3: System wakeup disabled by ACPI
    [ 0.143294] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    [ 0.143322] pci 0000:00:1d.7: reg 0x10: [mem 0xf0004000-0xf00043ff]
    [ 0.143446] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.143507] pci 0000:00:1d.7: System wakeup disabled by ACPI
    [ 0.143588] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.143789] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
    [ 0.143915] pci 0000:00:1f.0: can't claim BAR 13 [io 0x1000-0x107f]: address conflict with ACPI PM1a_EVT_BLK [io 0x1000-0x1003]
    [ 0.143923] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO
    [ 0.143928] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0068 (mask 0007)
    [ 0.143934] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0200 (mask 000f)
    [ 0.144087] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
    [ 0.144107] pci 0000:00:1f.1: reg 0x10: [io 0x0000-0x0007]
    [ 0.144121] pci 0000:00:1f.1: reg 0x14: [io 0x0000-0x0003]
    [ 0.144135] pci 0000:00:1f.1: reg 0x18: [io 0x0000-0x0007]
    [ 0.144148] pci 0000:00:1f.1: reg 0x1c: [io 0x0000-0x0003]
    [ 0.144162] pci 0000:00:1f.1: reg 0x20: [io 0x1810-0x181f]
    [ 0.144191] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
    [ 0.144194] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
    [ 0.144198] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
    [ 0.144201] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
    [ 0.144322] pci 0000:00:1f.2: [8086:27c4] type 00 class 0x01018f
    [ 0.144346] pci 0000:00:1f.2: reg 0x10: [io 0x18d0-0x18d7]
    [ 0.144360] pci 0000:00:1f.2: reg 0x14: [io 0x18c4-0x18c7]
    [ 0.144374] pci 0000:00:1f.2: reg 0x18: [io 0x18c8-0x18cf]
    [ 0.144388] pci 0000:00:1f.2: reg 0x1c: [io 0x18c0-0x18c3]
    [ 0.144401] pci 0000:00:1f.2: reg 0x20: [io 0x18b0-0x18bf]
    [ 0.144415] pci 0000:00:1f.2: reg 0x24: [mem 0xf0004400-0xf00047ff]
    [ 0.144469] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.144595] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    [ 0.144674] pci 0000:00:1f.3: reg 0x20: [io 0x18e0-0x18ff]
    [ 0.144921] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    [ 0.144928] pci 0000:00:1c.0: bridge window [io 0xf000-0xffff]
    [ 0.144935] pci 0000:00:1c.0: bridge window [mem 0xfac00000-0xfebfffff]
    [ 0.145047] pci 0000:00:1c.1: PCI bridge to [bus 04]
    [ 0.145163] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.145173] pci 0000:00:1c.2: bridge window [mem 0xf7000000-0xf70fffff]
    [ 0.145299] pci 0000:06:05.0: [10ec:8139] type 00 class 0x020000
    [ 0.145324] pci 0000:06:05.0: reg 0x10: [io 0x2000-0x20ff]
    [ 0.145339] pci 0000:06:05.0: reg 0x14: [mem 0xb0200000-0xb02000ff]
    [ 0.145439] pci 0000:06:05.0: supports D1 D2
    [ 0.145443] pci 0000:06:05.0: PME# supported from D1 D2 D3hot D3cold
    [ 0.145475] pci 0000:06:05.0: System wakeup disabled by ACPI
    [ 0.145582] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
    [ 0.145588] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
    [ 0.145595] pci 0000:00:1e.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.145605] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
    [ 0.145608] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
    [ 0.145643] pci_bus 0000:00: on NUMA node 0
    [ 0.145832] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
    [ 0.145913] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.145993] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 *3 4 5 6 7 10 12 14 15)
    [ 0.146071] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
    [ 0.146150] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
    [ 0.146229] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
    [ 0.146308] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *7 10 12 14 15)
    [ 0.146387] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 7 11 12 14 15)
    [ 0.146767] ACPI: Enabled 2 GPEs in block 00 to 1F
    [ 0.146833] ACPI : EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
    [ 0.146964] vgaarb: setting as boot device: PCI:0000:00:02.0
    [ 0.146968] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.146973] vgaarb: loaded
    [ 0.146976] vgaarb: bridge control possible 0000:00:02.0
    [ 0.147115] PCI: Using ACPI for IRQ routing
    [ 0.158663] PCI: pci_cache_line_size set to 64 bytes
    [ 0.158732] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
    [ 0.158735] e820: reserve RAM buffer [mem 0x3f690000-0x3fffffff]
    [ 0.158933] NetLabel: Initializing
    [ 0.158936] NetLabel: domain hash size = 128
    [ 0.158938] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.158955] NetLabel: unlabeled traffic allowed by default
    [ 0.159001] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.159008] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.159014] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.161073] Switched to clocksource hpet
    [ 0.169137] pnp: PnP ACPI init
    [ 0.169532] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.169537] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
    [ 0.169541] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.169545] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.169549] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.169553] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.169556] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
    [ 0.169560] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.169567] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.169949] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.169955] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.170081] system 00:02: [io 0x0200-0x020f] has been reserved
    [ 0.170086] system 00:02: [io 0x0680-0x069f] has been reserved
    [ 0.170089] system 00:02: [io 0x0800-0x080f] has been reserved
    [ 0.170093] system 00:02: [io 0x1000-0x107f] could not be reserved
    [ 0.170097] system 00:02: [io 0x1180-0x11bf] has been reserved
    [ 0.170101] system 00:02: [io 0x1640-0x164f] has been reserved
    [ 0.170105] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.170187] system 00:03: [io 0x06a0-0x06af] has been reserved
    [ 0.170192] system 00:03: [io 0x06b0-0x06ff] has been reserved
    [ 0.170196] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.170257] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.170314] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.170364] pnp 00:06: Plug and Play ACPI device, IDs SYN0804 SYN0800 PNP0f13 (active)
    [ 0.170398] pnp: PnP ACPI: found 7 devices
    [ 0.207867] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02-03] add_size 200000
    [ 0.207883] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
    [ 0.207887] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
    [ 0.207892] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000
    [ 0.207905] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 05] add_size 1000
    [ 0.207909] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
    [ 0.207929] pci 0000:00:1f.0: BAR 13: [io 0x1000-0x107f] has bogus alignment
    [ 0.207935] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.207939] pci 0000:00:1c.1: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.207943] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.207947] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.207951] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.207954] pci 0000:00:1c.2: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.207964] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.207968] pci 0000:00:1c.1: BAR 14: assigned [mem 0x40200000-0x403fffff]
    [ 0.207973] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.207978] pci 0000:00:1c.2: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.207983] pci 0000:00:1c.1: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.207988] pci 0000:00:1c.2: BAR 13: assigned [io 0x4000-0x4fff]
    [ 0.207992] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
    [ 0.207998] pci 0000:00:1c.0: bridge window [io 0xf000-0xffff]
    [ 0.208006] pci 0000:00:1c.0: bridge window [mem 0xfac00000-0xfebfffff]
    [ 0.208012] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.208022] pci 0000:00:1c.1: PCI bridge to [bus 04]
    [ 0.208026] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
    [ 0.208034] pci 0000:00:1c.1: bridge window [mem 0x40200000-0x403fffff]
    [ 0.208041] pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.208050] pci 0000:00:1c.2: PCI bridge to [bus 05]
    [ 0.208054] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
    [ 0.208062] pci 0000:00:1c.2: bridge window [mem 0xf7000000-0xf70fffff]
    [ 0.208069] pci 0000:00:1c.2: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.208078] pci 0000:00:1e.0: PCI bridge to [bus 06]
    [ 0.208083] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
    [ 0.208091] pci 0000:00:1e.0: bridge window [mem 0xf0200000-0xf02fffff]
    [ 0.208104] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.208107] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.208111] pci_bus 0000:02: resource 0 [io 0xf000-0xffff]
    [ 0.208114] pci_bus 0000:02: resource 1 [mem 0xfac00000-0xfebfffff]
    [ 0.208118] pci_bus 0000:02: resource 2 [mem 0x40000000-0x401fffff 64bit pref]
    [ 0.208122] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
    [ 0.208125] pci_bus 0000:04: resource 1 [mem 0x40200000-0x403fffff]
    [ 0.208129] pci_bus 0000:04: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.208132] pci_bus 0000:05: resource 0 [io 0x4000-0x4fff]
    [ 0.208136] pci_bus 0000:05: resource 1 [mem 0xf7000000-0xf70fffff]
    [ 0.208139] pci_bus 0000:05: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.208143] pci_bus 0000:06: resource 0 [io 0x2000-0x2fff]
    [ 0.208146] pci_bus 0000:06: resource 1 [mem 0xf0200000-0xf02fffff]
    [ 0.208150] pci_bus 0000:06: resource 4 [io 0x0000-0xffff]
    [ 0.208153] pci_bus 0000:06: resource 5 [mem 0x00000000-0xffffffff]
    [ 0.208206] NET: Registered protocol family 2
    [ 0.208485] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.208516] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.208565] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.208618] TCP: reno registered
    [ 0.208621] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.208634] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.208705] NET: Registered protocol family 1
    [ 0.208730] pci 0000:00:02.0: Video device with shadowed ROM
    [ 0.210237] PCI: CLS 64 bytes, default 64
    [ 0.210317] Unpacking initramfs...
    [ 0.550104] Freeing initrd memory: 10732K (f6afa000 - f7575000)
    [ 0.550172] Simple Boot Flag at 0x36 set to 0x1
    [ 0.550366] microcode: CPU0 sig=0x6ec, pf=0x20, revision=0x54
    [ 0.550474] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.550499] apm: BIOS not found.
    [ 0.550541] Scanning for low memory corruption every 60 seconds
    [ 0.551052] futex hash table entries: 512 (order: 3, 32768 bytes)
    [ 0.551086] Initialise system trusted keyring
    [ 0.551517] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.554528] zpool: loaded
    [ 0.554533] zbud: loaded
    [ 0.554696] VFS: Disk quotas dquot_6.5.2
    [ 0.554763] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.555052] Key type big_key registered
    [ 0.555273] bounce: pool size: 64 pages
    [ 0.555338] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.555385] io scheduler noop registered
    [ 0.555389] io scheduler deadline registered
    [ 0.555449] io scheduler cfq registered (default)
    [ 0.555577] pcieport 0000:00:1c.0: enabling device (0000 -> 0003)
    [ 0.555915] pcieport 0000:00:1c.1: enabling device (0000 -> 0003)
    [ 0.556186] pcieport 0000:00:1c.2: enabling device (0000 -> 0003)
    [ 0.556481] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.556511] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.556532] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.556535] vesafb: scrolling: redraw
    [ 0.556538] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.556559] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.592554] Console: switching to colour frame buffer device 128x48
    [ 0.628324] fb0: VESA VGA frame buffer device
    [ 0.628356] intel_idle: does not run on family 6 model 14
    [ 0.628405] GHES: HEST is not enabled!
    [ 0.628428] isapnp: Scanning for PnP cards...
    [ 0.941433] isapnp: No Plug & Play device found
    [ 0.941497] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.942509] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.942553] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.942603] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.942798] TCP: cubic registered
    [ 0.943048] NET: Registered protocol family 10
    [ 0.943364] NET: Registered protocol family 17
    [ 0.943564] Using IPI No-Shortcut mode
    [ 0.943758] Loading compiled-in X.509 certificates
    [ 0.943785] registered taskstats version 1
    [ 0.944289] Magic number: 3:461:618
    [ 0.944389] rtc_cmos 00:04: setting system clock to 2015-06-18 05:36:21 UTC (1434605781)
    [ 0.944505] PM: Hibernation image not present or could not be loaded.
    [ 0.944849] Freeing unused kernel memory: 588K (c1674000 - c1707000)
    [ 0.944876] Write protecting the kernel text: 4752k
    [ 0.944913] Write protecting the kernel read-only data: 1408k
    [ 0.954290] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 1.006893] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.009177] i8042: Detected active multiplexing controller, rev 1.1
    [ 1.018718] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.022020] ACPI: bus type USB registered
    [ 1.022068] usbcore: registered new interface driver usbfs
    [ 1.022086] usbcore: registered new interface driver hub
    [ 1.022123] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 1.023282] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 1.023443] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 1.023501] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 1.027821] usbcore: registered new device driver usb
    [ 1.028574] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.028808] ehci-pci: EHCI PCI platform driver
    [ 1.029072] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.029084] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
    [ 1.029106] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.030705] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.033037] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.033065] ehci-pci 0000:00:1d.7: irq 23, io mem 0xf0004000
    [ 1.037438] SCSI subsystem initialized
    [ 1.043322] libata version 3.00 loaded.
    [ 1.044509] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.045654] hub 1-0:1.0: USB hub found
    [ 1.045673] hub 1-0:1.0: 8 ports detected
    [ 1.047676] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.047688] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.047699] uhci_hcd 0000:00:1d.0: detected 2 ports
    [ 1.047728] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001820
    [ 1.048023] hub 2-0:1.0: USB hub found
    [ 1.048035] hub 2-0:1.0: 2 ports detected
    [ 1.048398] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.048407] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 1.048417] uhci_hcd 0000:00:1d.1: detected 2 ports
    [ 1.048456] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001840
    [ 1.048730] hub 3-0:1.0: USB hub found
    [ 1.048741] hub 3-0:1.0: 2 ports detected
    [ 1.049079] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.049088] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 1.049097] uhci_hcd 0000:00:1d.2: detected 2 ports
    [ 1.049135] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001860
    [ 1.049407] hub 4-0:1.0: USB hub found
    [ 1.049419] hub 4-0:1.0: 2 ports detected
    [ 1.049756] uhci_hcd 0000:00:1d.3: UHCI Host Controller
    [ 1.049765] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
    [ 1.049774] uhci_hcd 0000:00:1d.3: detected 2 ports
    [ 1.049816] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00001880
    [ 1.050138] hub 5-0:1.0: USB hub found
    [ 1.050150] hub 5-0:1.0: 2 ports detected
    [ 1.050340] ata_piix 0000:00:1f.1: version 2.13
    [ 1.056753] scsi host0: ata_piix
    [ 1.062426] scsi host1: ata_piix
    [ 1.062527] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1810 irq 14
    [ 1.062531] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15
    [ 1.062916] ata_piix 0000:00:1f.2: MAP [ P0 P2 -- -- ]
    [ 1.065949] ata2: port disabled--ignoring
    [ 1.114519] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.215315] ata1.00: ATAPI: Optiarc DVD RW AD-7560A, DX09, max UDMA/33
    [ 1.215528] scsi host2: ata_piix
    [ 1.215738] scsi host3: ata_piix
    [ 1.215827] ata3: SATA max UDMA/133 cmd 0x18d0 ctl 0x18c4 bmdma 0x18b0 irq 19
    [ 1.215831] ata4: SATA max UDMA/133 cmd 0x18c8 ctl 0x18c0 bmdma 0x18b8 irq 19
    [ 1.226953] ata1.00: configured for UDMA/33
    [ 1.228421] scsi 0:0:0:0: CD-ROM Optiarc DVD RW AD-7560A DX09 PQ: 0 ANSI: 5
    [ 1.353370] usb 1-3: new high-speed USB device number 2 using ehci-pci
    [ 1.378533] ata3.00: ATA-8: WDC WD1200BEVT-00A23T0, 01.01A01, max UDMA/133
    [ 1.378538] ata3.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 1.390406] ata3.00: configured for UDMA/133
    [ 1.390523] scsi 2:0:0:0: Direct-Access ATA WDC WD1200BEVT-0 1A01 PQ: 0 ANSI: 5
    [ 1.409918] sr 0:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.409925] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.410318] sr 0:0:0:0: Attached scsi CD-ROM sr0
    [ 1.410570] sd 2:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    [ 1.410652] sd 2:0:0:0: [sda] Write Protect is off
    [ 1.410657] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.410693] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.438912] sda: sda1 sda2
    [ 1.439384] sd 2:0:0:0: [sda] Attached SCSI disk
    [ 1.553368] tsc: Refined TSC clocksource calibration: 1733.394 MHz
    [ 2.063322] device-mapper: uevent: version 1.0.3
    [ 2.063995] device-mapper: ioctl: 4.30.0-ioctl (2014-12-22) initialised: [email protected]
    [ 2.553430] Switched to clocksource tsc
    [ 2.862896] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.278722] random: nonblocking pool is initialized
    [ 3.693979] systemd[1]: systemd 219 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 3.694522] systemd[1]: Detected architecture 'x86'.
    [ 3.718919] systemd[1]: Set hostname to <diego_portatil>.
    [ 4.088038] systemd[1]: Unit type .busname is not supported on this system.
    [ 4.552201] systemd[1]: Reached target Remote File Systems.
    [ 4.552226] systemd[1]: Starting Remote File Systems.
    [ 4.552288] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 4.552305] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 4.552328] systemd[1]: Reached target Encrypted Volumes.
    [ 4.552342] systemd[1]: Starting Encrypted Volumes.
    [ 4.552663] systemd[1]: Created slice Root Slice.
    [ 4.552681] systemd[1]: Starting Root Slice.
    [ 4.552744] systemd[1]: Listening on udev Control Socket.
    [ 4.552760] systemd[1]: Starting udev Control Socket.
    [ 4.552869] systemd[1]: Created slice User and Session Slice.
    [ 4.552885] systemd[1]: Starting User and Session Slice.
    [ 4.552954] systemd[1]: Listening on Journal Socket.
    [ 4.552976] systemd[1]: Starting Journal Socket.
    [ 4.553022] systemd[1]: Listening on udev Kernel Socket.
    [ 4.553038] systemd[1]: Starting udev Kernel Socket.
    [ 4.553075] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 4.553091] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 4.553248] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 4.553269] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 4.553317] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 4.553333] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 4.553464] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 4.553481] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 4.553501] systemd[1]: Reached target Paths.
    [ 4.553516] systemd[1]: Starting Paths.
    [ 4.553563] systemd[1]: Listening on Journal Socket (/dev/log).
    [ 4.553579] systemd[1]: Starting Journal Socket (/dev/log).
    [ 4.741875] systemd[1]: Listening on Journal Audit Socket.
    [ 4.742058] systemd[1]: Created slice System Slice.
    [ 4.742086] systemd[1]: Starting System Slice.
    [ 4.742761] systemd[1]: Starting Journal Service...
    [ 4.743452] systemd[1]: Starting Setup Virtual Console...
    [ 4.744252] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 4.744431] systemd[1]: Created slice system-getty.slice.
    [ 4.744457] systemd[1]: Starting system-getty.slice.
    [ 4.744494] systemd[1]: Started File System Check on Root Device.
    [ 4.793601] systemd[1]: Starting Load Kernel Modules...
    [ 4.794307] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.844059] systemd[1]: Mounting Temporary Directory...
    [ 4.844117] systemd[1]: Reached target Slices.
    [ 4.844147] systemd[1]: Starting Slices.
    [ 4.844313] systemd[1]: Created slice system-systemd\x2dfsck.slice.
    [ 4.844331] systemd[1]: Starting system-systemd\x2dfsck.slice.
    [ 4.845047] systemd[1]: Mounting Debug File System...
    [ 4.845231] systemd[1]: Created slice system-netctl.slice.
    [ 4.845256] systemd[1]: Starting system-netctl.slice.
    [ 4.845971] systemd[1]: Mounting Huge Pages File System...
    [ 4.846074] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 4.846105] systemd[1]: Starting Delayed Shutdown Socket.
    [ 4.846161] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 4.846184] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 4.847027] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.892735] systemd[1]: Started Set Up Additional Binary Formats.
    [ 4.893570] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 4.994631] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [ 5.012503] vboxdrv: Found 1 processor cores.
    [ 5.012812] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 5.012815] vboxdrv: Successfully loaded version 4.3.28_OSE (interface 0x001a000a).
    [ 5.013684] systemd[1]: Started Load Kernel Modules.
    [ 5.014554] systemd[1]: Mounting Configuration File System...
    [ 5.014610] systemd[1]: Mounted FUSE Control File System.
    [ 5.015360] systemd[1]: Starting Apply Kernel Variables...
    [ 5.058660] systemd[1]: Started udev Coldplug all Devices.
    [ 5.242414] EXT4-fs (dm-0): re-mounted. Opts: data=ordered
    [ 5.244904] systemd[1]: Mounted Huge Pages File System.
    [ 5.244970] systemd[1]: Mounted POSIX Message Queue File System.
    [ 5.245006] systemd[1]: Mounted Debug File System.
    [ 5.245041] systemd[1]: Mounted Temporary Directory.
    [ 5.246405] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 5.246554] systemd[1]: Started Rebuild Dynamic Linker Cache.
    [ 5.250891] systemd[1]: Starting Load/Save Random Seed...
    [ 5.256420] systemd[1]: Started Rebuild Hardware Database.
    [ 5.256490] systemd[1]: Started First Boot Wizard.
    [ 5.256528] systemd[1]: Started Create System Users.
    [ 5.257434] systemd[1]: Starting Create Static Device Nodes in /dev...
    [ 5.258783] systemd[1]: Mounted Configuration File System.
    [ 5.399574] systemd[1]: Started Load/Save Random Seed.
    [ 5.540282] systemd[1]: Started Apply Kernel Variables.
    [ 5.571507] systemd-journald[130]: Failed to set file attributes: Inappropriate ioctl for device
    [ 6.421010] systemd[1]: Started Setup Virtual Console.
    [ 6.655015] systemd[1]: Started Create Static Device Nodes in /dev.
    [ 6.655842] systemd[1]: Starting udev Kernel Device Manager...
    [ 6.655883] systemd[1]: Reached target Local File Systems (Pre).
    [ 6.655921] systemd[1]: Starting Local File Systems (Pre).
    [ 7.730228] systemd[1]: Started udev Kernel Device Manager.
    [ 7.966700] systemd[1]: Started Journal Service.
    [ 8.099250] tsc: Marking TSC unstable due to TSC halts in idle
    [ 8.099917] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
    [ 8.099956] ACPI: Lid Switch [LID0]
    [ 8.101021] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
    [ 8.101028] ACPI: Power Button [PWRB]
    [ 8.101104] ACPI: acpi_idle registered with cpuidle
    [ 8.101291] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
    [ 8.101296] ACPI: Sleep Button [SLPB]
    [ 8.101413] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
    [ 8.101417] ACPI: Power Button [PWRF]
    [ 8.103845] Switched to clocksource hpet
    [ 8.120294] ACPI: Video Device [IGD] (multi-head: yes rom: no post: no)
    [ 8.121522] acpi device:07: registered as cooling_device1
    [ 8.121620] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input9
    [ 8.228052] Linux agpgart interface v0.103
    [ 8.250854] agpgart-intel 0000:00:00.0: Intel 945GM Chipset
    [ 8.250884] agpgart-intel 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
    [ 8.251057] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 8.251225] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
    [ 8.291972] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 8.311908] ACPI: Battery Slot [BAT0] (battery absent)
    [ 8.317570] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.317577] ACPI: Thermal Zone [THRM] (30 C)
    [ 8.389424] intel_rng: FWH not detected
    [ 8.391775] ACPI: AC Adapter [AC0] (on-line)
    [ 8.472483] ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x000000000000107F (\PMIO) (20150204/utaddress-254)
    [ 8.472496] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.472502] ACPI Warning: SystemIO range 0x00000000000011B0-0x00000000000011BF conflicts with OpRegion 0x0000000000001180-0x00000000000011BB (\GPIO) (20150204/utaddress-254)
    [ 8.472508] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.472510] ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011AF conflicts with OpRegion 0x0000000000001180-0x00000000000011BB (\GPIO) (20150204/utaddress-254)
    [ 8.472517] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.472519] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 8.486201] [drm] Initialized drm 1.1.0 20060810
    [ 8.756454] leds_ss4200: no LED devices found
    [ 8.791047] 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004)
    [ 8.791057] 8139cp 0000:06:05.0: This (id 10ec:8139 rev 10) is not an 8139C+ compatible chip, use 8139too
    [ 8.792923] 8139too: 8139too Fast Ethernet driver 0.9.28
    [ 8.794346] 8139too 0000:06:05.0 eth0: RealTek RTL8139 at 0xf8016000, 00:03:0d:5b:e1:fa, IRQ 16
    [ 8.833121] [drm] Memory usable by graphics device = 256M
    [ 8.833129] checking generic (c0000000 300000) vs hw (c0000000 10000000)
    [ 8.833132] fb: switching to inteldrmfb from VESA VGA
    [ 8.833170] Console: switching to colour dummy device 80x25
    [ 8.833280] [drm] Replacing VGA console driver
    [ 8.834453] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [ 8.834458] [drm] Driver supports precise vblank timestamp query.
    [ 8.834566] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 8.915825] sound hdaudioC0D1: autoconfig for ALC883: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
    [ 8.915833] sound hdaudioC0D1: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 8.915838] sound hdaudioC0D1: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
    [ 8.915841] sound hdaudioC0D1: mono: mono_out=0x0
    [ 8.915844] sound hdaudioC0D1: dig-out=0x1e/0x0
    [ 8.915847] sound hdaudioC0D1: inputs:
    [ 8.915851] sound hdaudioC0D1: Internal Mic=0x19
    [ 8.915854] sound hdaudioC0D1: Mic=0x18
    [ 8.940103] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D1/input10
    [ 8.942836] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 8.942951] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 9.007562] input: PC Speaker as /devices/platform/pcspkr/input/input14
    [ 9.054239] systemd-journald[130]: Received request to flush runtime journal from PID 1
    [ 9.209743] [drm] initialized overlay support
    [ 9.219621] [drm] Initialized i915 1.6.0 20150130 for 0000:00:02.0 on minor 0
    [ 9.220188] ACPI Warning: SystemIO range 0x00000000000018E0-0x00000000000018FF conflicts with OpRegion 0x00000000000018E0-0x00000000000018EF (\_SB_.PCI0.SBUS.SMBI) (20150204/utaddress-254)
    [ 9.220278] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.361493] fbcon: inteldrmfb (fb0) is primary device
    [ 9.646733] Console: switching to colour frame buffer device 160x50
    [ 9.653019] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 9.653022] i915 0000:00:02.0: registered panic notifier
    [ 9.668192] psmouse serio4: synaptics: Touchpad model: 1, fw: 6.2, id: 0x1a0b1, caps: 0xa04713/0x200000/0x0, board id: 0, fw id: 240320
    [ 9.700332] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input17
    [ 10.741081] mousedev: PS/2 mouse device common for all mice
    [ 10.813545] iTCO_vendor_support: vendor-support=0
    [ 10.832833] 8139too 0000:06:05.0 enp6s5: renamed from eth0
    [ 10.858293] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 10.858354] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x1060)
    [ 10.858883] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 12.230149] cfg80211: Calling CRDA to update world regulatory domain
    [ 12.966737] usb 1-3: reset high-speed USB device number 2 using ehci-pci
    [ 13.420925] ieee80211 phy0: rt2x00_set_chip: Info - Chipset detected - rt: 2573, rf: 0002, rev: 000a
    [ 13.484494] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 13.486269] usbcore: registered new interface driver rt73usb
    [ 13.526499] Adding 2064380k swap on /dev/mapper/VolGroup-lv_swap. Priority:-1 extents:1 across:2064380k FS
    [ 13.554648] rt73usb 1-3:1.0 wlp0s29f7u3: renamed from wlan0
    [ 14.477740] EXT4-fs (sda1): mounting ext3 file system using the ext4 subsystem
    [ 14.486982] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 17.536302] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt73.bin'
    [ 17.585206] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 1.7
    [ 17.664620] IPv6: ADDRCONF(NETDEV_UP): wlp0s29f7u3: link is not ready
    [ 19.237028] cfg80211: Calling CRDA to update world regulatory domain
    [ 19.373895] wlp0s29f7u3: authenticate with 00:1a:70:97:92:a2
    [ 19.433557] wlp0s29f7u3: direct probe to 00:1a:70:97:92:a2 (try 1/3)
    [ 19.636705] wlp0s29f7u3: send auth to 00:1a:70:97:92:a2 (try 2/3)
    [ 19.638366] wlp0s29f7u3: authenticated
    [ 19.638551] rt73usb 1-3:1.0 wlp0s29f7u3: disabling HT/VHT due to WEP/TKIP use
    [ 19.638557] rt73usb 1-3:1.0 wlp0s29f7u3: disabling HT as WMM/QoS is not supported by the AP
    [ 19.638560] rt73usb 1-3:1.0 wlp0s29f7u3: disabling VHT as WMM/QoS is not supported by the AP
    [ 19.640964] wlp0s29f7u3: associate with 00:1a:70:97:92:a2 (try 1/3)
    [ 19.643417] wlp0s29f7u3: RX AssocResp from 00:1a:70:97:92:a2 (capab=0x411 status=0 aid=2)
    [ 19.655879] wlp0s29f7u3: associated
    [ 19.655933] IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s29f7u3: link becomes ready
    [ 1658.271975] lightdm-gtk-gre[444]: segfault at c ip b6e660d7 sp bff4e5c4 error 4 in libgdk-3.so.0.1600.4[b6e2e000+d2000]
    [ 1666.993547] fuse init (API version 7.23)
    I can see some errors and ACPI warnings, but I don't know how to avoid them.
    [root@diego_portatil ~]# lspci
    00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 3 (rev 02)
    00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 02)
    00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 02)
    00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 02)
    00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 02)
    00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7-M Family) SATA Controller [IDE mode] (rev 02)
    00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 02)
    06:05.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8100/8101L/8139 PCI Fast Ethernet Adapter (rev 10)
    [root@diego_portatil ~]#
    Is an old laptop: ESYSTEM 3415ES with 1G RAM
    archlinux is updated:
    [root@diego_portatil ~]# pacman -Su
    :: Iniciando actualización completa del sistema...
    ...el sistema ya está actualizado.
    [root@diego_portatil ~]#
    [root@diego_portatil ~]# uname -a
    Linux diego_portatil 4.0.5-1-ARCH #1 SMP PREEMPT Sat Jun 6 18:52:28 CEST 2015 i686 GNU/Linux
    [root@diego_portatil ~]#
    Can someone help me to avoid this issue, please?
    Regards
    Oscar
    Last edited by ewaller (2015-06-18 05:12:29)

    Oh! my eyes! my eyes!
    If only the original poster had wrapped their program output in BBCode [ code] tags (*).  A casual observer might have read analyzed the output and been able to help .
    (*) Please use BBCode code tags around your program output.  It makes it far more legible.   Thanks.
    Actually, Welcome to Arch .  As this is your first, I'll go ahead and edit your post.  To see how it is done, use the edit link on your post to see what I did....

  • Creation of InitialContext fails when i hot-deploy scheduler-service.xml

    Creation of InitialContext fails when i hot-deploy scheduler-service.xml
    I configured scheduler-service as follows in Jboss 3.2:
    scheduler-service.xml
    <mbean code="org.jboss.varia.scheduler.Scheduler"
         name=":service=Scheduler">
    <attribute name="StartAtStartup">true</attribute>
    <attribute name="SchedulableClass">com.beta.my.utils.FMScheduler</attribute>
    <attribute name="SchedulableArguments">Schedulabe Test,12345</attribute>
    <attribute name="SchedulableArgumentTypes">java.lang.String,int</attribute>
    <attribute name="InitialStartDate">0</attribute>
    <attribute name="SchedulePeriod">10000</attribute>
    <attribute name="InitialRepetitions">-1</attribute>
    </mbean>
    Schedulable Class
    package com.beta.my.utils;
    import java.util.Date;
    import org.jboss.varia.scheduler.Schedulable;
    public static class FMScheduler
    implements Schedulable
    private String mName;
    private int mValue;
    public FMScheduler(String pName,int pValue)
    mName = pName;
    mValue = pValue;
    public void perform(Date pTimeOfCall,long pRemainingRepetitions)
    try {
              Context context = new InitialContext();//properties taken from jndi.properties file
              } catch (Exception e){
                   e.printStackTrace();
    I started my jboss..,FMScheduler created successfully, perform method in FMScheduler called succesfully after SchedulePeriod(1000)
    The problem occurs(NullPointerException) while i changed SchedulePeriod time and hot-deployed(just saved scheduler-service.xml).
    The following Exception occures due to InitialContext creation fails*(Context context = new InitialContext();)* in FMScheduler.
    17:46:27,361 ERROR [STDERR] java.lang.NullPointerException
    17:46:27,361 ERROR [STDERR] at org.jboss.mx.loading.UnifiedClassLoader.findR
    esources(UnifiedClassLoader.java:374)
    17:46:27,361 ERROR [STDERR] at java.lang.ClassLoader.getResources(ClassLoade
    r.java:825)
    17:46:27,361 ERROR [STDERR] at com.sun.naming.internal.VersionHelper12$5.run
    (VersionHelper12.java:145)
    17:46:27,361 ERROR [STDERR] at java.security.AccessController.doPrivileged(N
    ative Method)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.VersionHelper12.getRe
    sources(VersionHelper12.java:142)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.ResourceManager.getAp
    plicationResources(ResourceManager.java:468)
    17:46:27,377 ERROR [STDERR] at com.sun.naming.internal.ResourceManager.getIn
    itialEnvironment(ResourceManager.java:159)
    17:46:27,377 ERROR [STDERR] at javax.naming.InitialContext.init(InitialConte
    xt.java:215)
    17:46:27,377 ERROR [STDERR] at javax.naming.InitialContext.<init>(InitialCon
    text.java:195)
    17:46:27,377 ERROR [STDERR] at com.beta.my.utils.FMScheduler.perform
    (FMScheduler.java:42)
    17:46:27,392 ERROR [STDERR] at org.jboss.varia.scheduler.Scheduler$Listener.
    handleNotification(Scheduler.java:1263)
    17:46:27,392 ERROR [STDERR] at org.jboss.mx.server.NotificationListenerProxy
    .handleNotification(NotificationListenerProxy.java:69)
    17:46:27,392 ERROR [STDERR] at javax.management.NotificationBroadcasterSuppo
    rt.sendNotification(NotificationBroadcasterSupport.java:95)
    17:46:27,392 ERROR [STDERR] at javax.management.timer.Timer.sendNotification
    s(Timer.java:441)
    17:46:27,392 ERROR [STDERR] at javax.management.timer.Timer.access$000(Timer
    .java:31)
    17:46:27,408 ERROR [STDERR] at javax.management.timer.Timer$RegisteredNotifi
    cation.doRun(Timer.java:612)
    17:46:27,408 ERROR [STDERR] at org.jboss.mx.util.SchedulableRunnable.run(Sch
    edulableRunnable.java:164)
    17:46:27,408 ERROR [STDERR] at org.jboss.mx.util.ThreadPool$Worker.run(Threa
    dPool.java:225)
    please help me if u have any idea,thanks

    Hi Hamsa,
    Did you also create and configure an "Execution Destination"?
    You can test the Metadata destination configuration on Web Service Navigator.
    On the web service navigator (http://hostname:portnumber/wsnavigator) search in the metatda destination you have created for the service you imported in web dynpro as a model. If you can find it there test it on the ws navigator.
    Best regards,
    Yasar

  • Archive logs are missing in hot backup

    Hi All,
    We are using the following commands to take hot backup of our database. Hot backup is fired by "backup" user on Linux system.
    =======================
    rman target / nocatalog <<EOF
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '$backup_dir/$date/%F';
    run {
    allocate channel oem_backup_disk1 type disk format '$backup_dir/$date/%U';
    #--Switch archive logs for all threads
    sql 'alter system archive log current';
    backup as COMPRESSED BACKUPSET database include current controlfile;
    #--Switch archive logs for all threads
    sql 'alter system archive log current';
    #--Backup Archive logs and delete what we've backedup
    backup as COMPRESSED BACKUPSET archivelog all not backed up delete all input;
    release channel oem_backup_disk1;
    allocate channel for maintenance type disk;
    delete noprompt obsolete device type disk;
    release channel;
    exit
    EOF
    =======================
    Due to which after command (used 2 times) "sql 'alter system archive log current';" I see the following lines in alert log 2 times. Because of this all the online logs are not getting archived (Missing 2 logs per day), the backup taken is unusable when restoring. I am worried about this. I there any to avoid this situation.
    =======================
    Errors in file /u01/oracle/admin/rac/udump/rac1_ora_3546.trc:
    ORA-19504: failed to create file "+DATA/rac/1_32309_632680691.dbf"
    ORA-17502: ksfdcre:4 Failed to create file +DATA/rac/1_32309_632680691.dbf
    ORA-15055: unable to connect to ASM instance
    ORA-01031: insufficient privileges
    =======================
    Regards,
    Kunal.

    All thanks you for help, pleas find additional information. I goth the following error as log sequence was missing. Everyday during hotbackup, there are 2 missing archive logs, which makes our backup inconsistent and useless.
    archive log filename=/mnt/xtra-backup/ora_archivelogs/1_32531_632680691.dbf thread=1 sequence=32531
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28768_632680691.dbf thread=2 sequence=28768
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28769_632680691.dbf thread=2 sequence=28769
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28770_632680691.dbf thread=2 sequence=28770
    archive log filename=/mnt/xtra-backup/ora_archivelogs/1_32532_632680691.dbf thread=1 sequence=32532
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28771_632680691.dbf thread=2 sequence=28771
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28772_632680691.dbf thread=2 sequence=28772
    archive log filename=/mnt/xtra-backup/ora_archivelogs/2_28772_632680691.dbf thread=2 sequence=28773
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 12/13/2012 04:22:56
    RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '/mnt/xtra-backup/ora_archivelogs/2_28772_632680691.dbf'
    ORA-00310: archived log contains sequence 28772; sequence 28773 required
    ORA-00334: archived log: '/mnt/xtra-backup/ora_archivelogs/2_28772_632680691.dbf'
    Let me try the susggestions provided above.

  • InPlace execution in CLDC hotspot implementation

    I am working on Inplace execution feature given by SUN in CLDC Hot spot Implementaion. I want to know how much performance can be increased by using inplace execution for the midlet to be run on the device. I have converted the midlet jar file into application image (bun) but not able to know whether I have got any significant improvement or not.
    Can anybody tell me that how can inplace execution improve the performance and it will affect which part? Is there any way to know how much performance has been increased like some benchmark midlet for InPlace Execution feature.
    Please provide some help.

    This type of emulation is called HLE, there are some drawbacks to this approch. The one that i think prevented implementors of an VM to go this road is that it's verry hard to compile all bytecode to native code and be sure there are no security problems. Also the general protection failts will come to your java code! Of cause this can be prevented by putting in a lot of overhead code for every bytecode instruction, but then it's not fast anymore! ;o)

  • Transaction execution time and block size

    Hi,
    I have Oracle Database 11g R2 64 bit database on Oracle Linux 5.6. My system has ONE hard drive.
    Recently I experimented with 8.5 GB database in TPC-E test. I was watching transaction time for 2K,4K,8K Oracle block size. Each time I started new test on different block size, I would created new database from scratch to avoid messing something up (each time SGA and PGA parameters ware identical).
    In all experiments a gave to my own tablespace (NEWTS) different configuration because of oracle block-datafile size limits :
    2K oracle block database had 3 datafiles, each 7GB.
    4K oracle block database had 2 datafiles, each 10GB.
    8K oracle block database had 1 datafile of 20GB.
    Now best transaction (tranasaction execution) time was on 8K block, little longer tranasaction time had 4K block, but 2K oracle block had definitly worst transaction time.
    I identified SQL query(when using 2K and 4K block) that was creating hot segments on E_TRANSACTION table, that is largest table in database (2.9GB), and was slowly executed (number of executions was low compared to 8K numbers).
    Now here is my question. Is it possible that multiple datafiles are reasone for this low transaction times. I have AWR reports from that period, but as someone who is still learning things about DBA, I would like to asq, how could I identify this multi-datafile problem (if that is THE problem), by looking inside AWR statistics.
    THX to all.

    >
    It's always interesting to see the results of serious attempts to quantify the effects of variation in block sizes, but it's hard to do proper tests and eliminate side effects.
    I have Oracle Database 11g R2 64 bit database on Oracle Linux 5.6. My system has ONE hard drive.A single drive does make it a little too easy for apparently random variation in performance.
    Recently I experimented with 8.5 GB database in TPC-E test. I was watching transaction time for 2K,4K,8K Oracle block size. Each time I started new test on different block size, I would created new database from scratch to avoid messing something up Did you do anything to ensure that the physical location of the data files was a very close match across databases - inner tracks vs. outer tracks could make a difference.
    (each time SGA and PGA parameters ware identical).Can you give us the list of parameters you set ? As you change the block size, identical parameters DON'T necessarily result in the same configuration. Typically a large change in response time turns out to be due to changes in execution plan, and this can often be associated with different configuration. Did you also check that the system statistics were appropriately matched (which doesn't mean identical cross all databases).
    In all experiments a gave to my own tablespace (NEWTS) different configuration because of oracle block-datafile size limits :
    2K oracle block database had 3 datafiles, each 7GB.
    4K oracle block database had 2 datafiles, each 10GB.
    8K oracle block database had 1 datafile of 20GB.If you use bigfile tablespaces I think you can get 8TB in a single file for a tablespace.
    Now best transaction (tranasaction execution) time was on 8K block, little longer tranasaction time had 4K block, but 2K oracle block had definitly worst transaction time.We need some values here, not just "best/worst" - it doesn't even begin to get interesting unless you have at least a 5% variation - and then it has to be consistent and reproducible.
    I identified SQL query(when using 2K and 4K block) that was creating hot segments on E_TRANSACTION table, that is largest table in database (2.9GB), and was slowly executed (number of executions was low compared to 8K numbers).Query, or DML ? What do you mean by "hot" ? Is E_TRANSACTION a partitioned table - if not then it consists of one segment, so did you mean to say "blocks" rather than segments ? If blocks, which class of blocks ?
    Now here is my question. Is it possible that multiple datafiles are reasone for this low transaction times. I have AWR reports from that period, but as someone who is still learning things about DBA, I would like to asq, how could I identify this multi-datafile problem (if that is THE problem), by looking inside AWR statistics.On a single disc drive I could probably set something up that ensured you got different performance because of different numbers of files per tablespace. As SB has pointed out there are some aspects of extent allocation that could have an effect - roughly speaking, extents for a single object go round-robin on the files so if you have small extent sizes for a large object then a tablescan is more likely to result in larger (slower) head movements if the tablespace is made from multiple files.
    If the results are reproducible, then enable extended tracking (dbms_monitor, with waits) and show us what the tkprof summaries for the slow transactions look like. That may give us some clues.
    Regards
    Jonathan Lewis

  • RC-50014: Fatal: Execution of AutoConfig was failed

    Hi
    I did HOT clone via RMAN.
    We have 11g DB and 12.1.3 APPS
    after run adcfgclone on appsTier
    after 77% completion , i got error
    RC-50014: Fatal: Execution of AutoConfig was failed
    Please Reply me
    Thanks
    Mohammad
    Edited by: user10493335 on Nov 12, 2011 7:41 AM

    Here is log file content
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/install
    adgendbc.sh INSTE8_SETUP 1
    afcpnode.sh INSTE8_SETUP 1
    afgcsreg.sh INSTE8_SETUP 1
    txkWfClone.sh INSTALL_SETUP 1
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/install
    adadmprf.sh INSTE8_PRF 1
    admk80ln.sh INSTALL_PRF 1
    afadmprf.sh INSTE8_PRF 1
    afcpctx.sh INSTE8_PRF 1
    afcpgsm.sh INSTE8_PRF 1
    ibywebprf.sh INSTE8_PRF 1
    igccmprf.sh INSTE8_PRF 1
    jtfictx.sh INSTE8_PRF 1
    okladmprf.sh INSTE8_PRF 1
    txkJavaMailerCfg.sh INSTE8_PRF 1
    txkWebServicescfg.sh INSTE8_PRF 1
    Directory: /u01/PIMTEST/tech_st/10.1.3/perl/bin/perl -I /u01/PIMTEST/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/PIMTEST/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/PIMTEST/apps_st/appl/au/12.0.0/perl -I /u01/PIMTEST/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/scripts/adexecsql.pl sqlfile=/u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/install
    afwebprf.sql INSTE8_PRF 1
    amscmprf.sql INSTE8_PRF 1
    amswebprf.sql INSTE8_PRF 1
    bisadmprf.sql INSTE8_PRF 1
    bisdblrp.sql INSTE8_PRF 1
    clnadmprf.sql INSTE8_PRF 1
    cncmprf.sql INSTE8_PRF 1
    cseadmprf.sql INSTE8_PRF 1
    csfadmprf.sql INSTE8_PRF 1
    csiadmprf.sql INSTE8_PRF 1
    eamadmprf.sql INSTE8_PRF 1
    fteadmprf.sql INSTE8_PRF 1
    icxwebprf.sql INSTE8_PRF 1
    oksfrmprf.sql INSTE8_PRF 1
    wshadmprf.sql INSTE8_PRF 1
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u01/PIMTEST/tech_st/10.1.3/perl/bin/perl -I /u01/PIMTEST/tech_st/10.1.3/perl/lib/5.8.3 -I /u01/PIMTEST/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /u01/PIMTEST/apps_st/appl/au/12.0.0/perl -I /u01/PIMTEST/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/install
    adadmat.pl INSTE8_APPLY 1
    AutoConfig is exiting with status 31
    RC-50014: Fatal: Execution of AutoConfig was failed
    Raised by oracle.apps.ad.clone.ApplyApplTop
    ERROR: AutoConfig completed with errors. Check logfile at /u01/PIMTEST/inst/apps/PIMTEST_usadanaspimtst2/admin/log/ApplyAppsTier_11121014.log for details.
    ApplyApplTop Completed Successfully.
    # Checking the status of AutoConfig run of ApplyApplTop
    Warning : AutoConfig has completed with errors .
    Please review the AutoConfig section in the logfile. If required, you can re-run AutoConfig from command line after fixing the problem
    Thanks
    Mohammad

  • Increased Shared Pool size longer hot backup time?

    Hello,
    I have hot backup that usually took 2 hours to complete. Then we had to increase Shared pool size from 280Mb to 380Mb due to some performance issue.
    One week after increase of size the hot backup is taking 4 hours to complete. Since there was no other changes to the system I am suspecting size increase
    of Shared Pool from 280Mb to 380Mb might be is reason for such drastic increase of backup time.
    I would like to get your comments on my suspicion to the problem.
    thank you

    Paul.S wrote:
    One week after increase of size the hot backup is taking 4 hours to complete. Since there was no other changes to the system I am suspecting size increase of Shared Pool from 280Mb to 380Mb might be is reason for such drastic increase of backup time.Hmm... at first glance it does not seem that this is the problem.. but perhaps it contributes to it.
    When a SQL hits the SQL engine, the 1st thing the SQL engine does is determine if there is an existing parsed and ready-to-use copy of that SQL. If there is, that existing SQL is re-used - thus the name SQL Shared Pool. The resulting soft parse of the SQL is a lot faster (or should be) than a hard parse . A hard parse is where there is no re-usable copy, and the SQL needs to be parsed, validated and execution plan determined, etc.
    Kind of like re-using an existing compiled program (with different input data) versus compiling that program before using it. (and that is what source SQL is - a program that needs to be compiled).
    Okay, now what happens if there 100's of 1000's of SQLs in your shared pool? The scan that the SQL engine does to determine if there is a re-usable cursor, becomes pretty slow. A soft parse quickly becomes very expensive.
    The problem is typically clients that create SQLs that are not sharable (where the input data is hardcoded into the program, instead of input variables to the program). In other words, SQLs that do not use bind variables.
    Each and every hardcoded SQL that hits the SQL engine, is now a brand new SQL. And requires storage in the SQL Shared Pool. Shared Pool footprint grows and you start getting errors like insufficient shared pool memory.. and increase the shared pool which means even more space to store even more unique non-sharable SQLs and making soft and hard parses even more expensive.
    Like moving the wall a few metres further and then running even faster into it. !http://www.pprune.org/forums/images/smilies2/eusa_wall.gif!
    Now if the backup fires off a load of SQLs against the SQL engine, the fast soft/hard parses can now be a lot slower than previously, thanks to a larger shared pool that now caters for more junk than before.
    Unsure if this is the problem that you are experiencing.. but assuming that your suspicion is correct, it offers an explanation as to why there can be a degradation in performance.

  • TS1702 Hot player shuts down automatically.

    I have been using Hot Player to watch videos on my ipad.Since last 1 week, when I scroll over the list of items in the hot player,it automatically shuts off.
    I tried uninstalling and re-installing the application.However, the problem persists.
    When connected to my computer I can see that there are 30 items. But when I scroll in the ipad (hot player) it shuts off after 15th item.
    Please advise.

    I'm sorry for the delay in responding to your answers. From them I am willing to bet you still have the same problem. I have experienced the exact same problem on other HP's and found the problem to be thermal run-a-away of the CPU. This is caused by the thermal compound deterioration between the CPU and Heat sink that the fan cools. The lack of hot air and the speed of shutdown indicates that the CPU is operating near thermal limits most of the time. Since the CPU and Video Chip share the same heat sink I believe you will tie the behavior to increased video display (Larger images etc) and CPU activity. The solution is simple in concept but can be difficult in execution. It involves removing layers to gain access to the CPU and Video chips, Removing the heatsink, cleaning off the old compound (which will be dry and hard) from both chips and heat sink, adding thin layer of grease style heatsink compound, and reassembling. Another thing you can try is to buy a fan heat pad for under you laptop that plug into your USB port. Radio shack was selling them for $14. If the problem disappears or greatly improves you have proven the thermal issue and can decide what to do about it. Perhaps the pad will be just fine for you. Let me know outcome.

  • Mission Control Hot Methods and Events

    I have an application that runs slow from time to time. I am trying to create a flight recording to see where the issue is taking place. I would like find methods that are slow, and mainly rule out slow query response in the database tier.
    If a DAO method issues a SQL statement, which takes a while to run in the database before the results are returned to the app, which Mission Control view would show this slow behavior? Would it show in the Hot Methods view, since "Hot Methods" are ones that are called frequently and take longer to execute? I am not sure about this, since a database slowness is due to latency where the database tier is having performance issues. Do Hot Methods take into account latencies, or do they only track Java code execution time?
    If it does not show on the Hot Methods view, would it show in the "Events" view as maybe a Socket Read latency? Since the database is slow in running the query, the Socket Read may not happen till the result set is ready to be returned to the App.
    If none of the above will work, what method should be used to quickly diagnose a slow running database.
    Another related question ... after a method is determined "hot" and is optimized, will it continue to show as being "hot" in a later Flight Recording (assuming considerable time is still being spent in executing that method)?
    Any information on this is much appreciated!
    Thanks.

    Hi,
    Are you using WebLogic?
    If you are, you can turn on Flight Recorder events for WLS that track database latencies.
    See here for more information:
    http://docs.oracle.com/cd/E21764_01/web.1111/e13714/using_flightrecorder.htm
    Erik

  • Hot spot Exception

    Hi I got some Hot spot Exception in my project, can any buddy help me regarding this, here i am sending all log information.
    roblem Description
    ====================
    Hot spot Exception found on OMGr sever on which is enrolled in AP and APSWACT and SSO operations have been done.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS (0xa) at pc=0xfe9cbfe8, pid=20751, tid=13
    # Java VM: Java HotSpot(TM) Server VM (1.5.0_04-b05 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x1cbfe8]
    --------------- T H R E A D ---------------
    Current thread (0x003851e8): JavaThread "CompilerThread1" daemon [_thread_in_vm, id=13]
    siginfo:si_signo=10, si_errno=0, si_code=1, si_addr=0x654b6c61
    Registers:
    O0=0x008eb548 O1=0x0054facc O2=0x00013738 O3=0x00000000
    O4=0xff1aa538 O5=0x0000000c O6=0xd3b7ebb0 O7=0xfe9cc024
    G1=0xd3c66b30 G2=0xf8400040 G3=0x000000b3 G4=0x000000b2
    G5=0x000320ec G6=0x00000000 G7=0xfe6f1800 Y=0x00000000
    PC=0xfe9cbfe8 nPC=0xfe9cbfec
    Top of Stack: (sp=0xd3b7ebb0)
    0xd3b7ebb0: fef80000 00004c00 f85388d0 00000034
    0xd3b7ebc0: d3b7f580 f856695c 00000000 654b6c61
    0xd3b7ebd0: d3c66b38 f8537288 f8569640 00000008
    0xd3b7ebe0: 000323b8 f8537288 d3b7ec10 fea76e40
    0xd3b7ebf0: 00008000 00aa6788 d3b7f2ac 00c804e0
    0xd3b7ec00: 00000000 005f0110 00003590 00000000
    0xd3b7ec10: 00000001 00261fc0 fefc6d78 00006400
    0xd3b7ec20: 000064d4 00035948 00000000 f8537288
    Instructions: (pc=0xfe9cbfe8)
    0xfe9cbfd8: ee 06 20 d0 80 a5 e0 00 02 40 00 11 ba 10 00 19
    0xfe9cbfe8: f2 05 e0 00 80 a7 40 19 02 40 00 08 01 00 00 00
    Stack: [0xd3b00000,0xd3b80000), sp=0xd3b7ebb0, free space=506k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x1cbfe8]
    V [libjvm.so+0x276e48]
    V [libjvm.so+0x2751bc]
    V [libjvm.so+0x27aa70]
    V [libjvm.so+0x2708ac]
    V [libjvm.so+0x271568]
    V [libjvm.so+0x32d2f0]
    V [libjvm.so+0x2d58cc]
    V [libjvm.so+0x64a5bc]
    Current CompileTask:
    opto: 87 ! com.nt.transport.equinox.apgatewayem.EMAlarmListener.onMessage(Ljavax/jms/Message;)V (1489 bytes)
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x003dae48 JavaThread "RMI ConnectionExpiration-[164.164.27.126:4444]" daemon [_thread_blocked, id=62]
    0x008e7670 JavaThread "RMI ConnectionExpiration-[164.164.27.126:4098]" daemon [_thread_blocked, id=59]
    0x007ddc48 JavaThread "RMI RenewClean-[164.164.27.126:41928]" daemon [_thread_blocked, id=45]
    0x008ec5d0 JavaThread "Thread-23" [_thread_in_native, id=44]
    0x007daa50 JavaThread "Thread-22" [_thread_blocked, id=43]
    0x006ff6e8 JavaThread "Thread-21" [_thread_in_native, id=42]
    0x008dc328 JavaThread "imqConsumerReader-0-2445185565869246464-6" [_thread_blocked, id=40]
    0x008efb78 JavaThread "imqConsumerReader-0-2445185565869246464-5" [_thread_blocked, id=38]
    0x008f1ad0 JavaThread "imqConsumerReader-0-2445185565869246464-4" [_thread_blocked, id=36]
    0x006c62f0 JavaThread "imqConsumerReader-0-2445185565869246464-3" [_thread_blocked, id=34]
    0x006c1428 JavaThread "imqConsumerReader-0-2445185565869246464-2" [_thread_in_native, id=32]
    0x008f05e0 JavaThread "imqConsumerReader-0-2445185565869246464-1" [_thread_blocked, id=30]
    0x007e1028 JavaThread "RMI RenewClean-[164.164.27.126:4444]" daemon [_thread_blocked, id=28]
    0x006c04c8 JavaThread "imqConsumerReader-0-2445185565869246464-0" [_thread_blocked, id=26]
    0x0073a9f0 JavaThread "iMQReadChannel-0" [_thread_in_native, id=25]
    0x0073a830 JavaThread "imqConnectionFlowControl-0" [_thread_blocked, id=24]
    0x006e5c60 JavaThread "GC Daemon" daemon [_thread_blocked, id=19]
    0x006e5790 JavaThread "RMI RenewClean-[164.164.27.126:4098]" daemon [_thread_blocked, id=18]
    0x00608410 JavaThread "Timer-1" [_thread_blocked, id=17]
    0x003e4748 JavaThread "Timer-0" [_thread_blocked, id=16]
    0x00386298 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=14]
    =>0x003851e8 JavaThread "CompilerThread1" daemon [_thread_in_vm, id=13]
    0x00384380 JavaThread "CompilerThread0" daemon [_thread_blocked, id=12]
    0x00382b10 JavaThread "AdapterThread" daemon [_thread_blocked, id=11]
    0x00381d68 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10]
    0x00379020 JavaThread "Finalizer" daemon [_thread_blocked, id=9]
    0x003770d8 JavaThread "Reference Handler" daemon [_thread_blocked, id=8]
    0x00264500 JavaThread "main" [_thread_blocked, id=2]
    Other Threads:
    0x003730b0 VMThread [id=7]
    0x00387518 WatcherThread [id=15]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00261fc0/0x00262e50] CodeCache_lock - owner thread: 0x003851e8
    [0x002642f0/0x00264320] MethodCompileQueue_lock - owner thread: 0x003851e8
    Heap
    PSYoungGen total 10752K, used 3579K [0xed400000, 0xee000000, 0xf8000000)
    eden space 9216K, 38% used [0xed400000,0xed77ee90,0xedd00000)
    from space 1536K, 0% used [0xedd00000,0xedd00000,0xede80000)
    to space 1536K, 0% used [0xede80000,0xede80000,0xee000000)
    PSOldGen total 24576K, used 1344K [0xd7c00000, 0xd9400000, 0xed400000)
    object space 24576K, 5% used [0xd7c00000,0xd7d50078,0xd9400000)
    PSPermGen total 16384K, used 6231K [0xd3c00000, 0xd4c00000, 0xd7c00000)
    object space 16384K, 38% used [0xd3c00000,0xd4215f58,0xd4c00000)
    Dynamic libraries:
    0x00010000 /opt/NToam/omgr_4.0.0_ei/applications/moa/apGWY_4.0.0/bin/apGWY.exe
    0xff380000 /lib/libgen.so.1
    0xff350000 /lib/libthread.so.1
    0xff330000 /lib/libsocket.so.1
    0xff200000 /lib/libnsl.so.1
    0xff2f0000 /lib/libelf.so.1
    0xff3fa000 /lib/libxnet.so.1
    0xff1c0000 /opt/NToam/omgr_4.0.0_ei/JRE/lib/sparc/libjava.so
    0xfe800000 /opt/NToam/omgr_4.0.0_ei/JRE/lib/sparc/server/libjvm.so
    0xff080000 /lib/libc.so.1
    0xfe000000 /opt/NToam/omgr_4.0.0_ei/applications/moa/current_apGWY/lib/libACE.so
    0xfe700000 /opt/NToam/omgr_4.0.0_ei/applications/moa/current_apGWY/lib/libconsolxdr.so
    0xff2c0000 /lib/librt.so.1
    0xff190000 /lib/libCrun.so.1
    0xff030000 /lib/libm.so.1
    0xff3a0000 /lib/libw.so.1
    0xff3f4000 /lib/libdl.so.1
    0xff160000 /lib/libmp.so.2
    0xff000000 /opt/NToam/omgr_4.0.0_ei/JRE/lib/sparc/libverify.so
    0xfe7e0000 /lib/libsched.so.1
    0xfe7c0000 /lib/libaio.so.1
    0xfe7a0000 /lib/libmd5.so.1
    0xff3e6000 /usr/platform/SUNW,Ultra-80/lib/libc_psr.so.1
    0xfe550000 /opt/NToam/omgr_4.0.0_ei/j2re1.5.0_04/lib/sparc/native_threads/libhpi.so
    0xfe510000 /opt/NToam/omgr_4.0.0_ei/j2re1.5.0_04/lib/sparc/libzip.so
    0xfdf10000 /usr/lib/locale/en_US.ISO8859-1/en_US.ISO8859-1.so.2
    0xfa490000 /opt/NToam/omgr_4.0.0_ei/j2re1.5.0_04/lib/sparc/libnet.so
    0xfa590000 /opt/NToam/omgr_4.0.0_ei/j2re1.5.0_04/lib/sparc/librmi.so
    VM Arguments:
    jvm_args: -Dequinox.nsIOR.fileURL=/opt/NToam/omgr_4.0.0_ei/ns.ior -Dequinox.logging.db=true -Dequinox.security.server.name=Gateway -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.nt.transport.equinox.utilities.corbainterceptor.ORBInit=com.nt.transport.equinox.utilities.corbainterceptor.ORBInit -Dejb.jsec=true -Dequinox.orbInit.login=false -Dequinox.security.realm=BackCompat -Dvbroker.security.assertions.trust.all=true -Dapgwy.emsalarm.enable=true -Dapgwy.logging.level=0 -Dcmgwy.filterUNIConnectionsForTrail=false -DimqBrokerHostName=localhost -DimqBrokerHostPort=2507 -Djava.security.auth.login.config=./config/auth.conf -Dequinox.security.userId=Server -Xusealtsigs com.nt.transport.equinox.apgatewayem.EMManager
    java_command: <unknown>
    Environment Variables:
    PATH=/opt/NToam/omgr_4.0.0_ei/JRE/bin:/opt/NToam/omgr_4.0.0_ei/JRE/bin/sparc:/usr/dt/bin:/usr/openwin/bin:/usr/sbin:/usr/sbin:/usr/bin
    LD_LIBRARY_PATH=/opt/NToam/omgr_4.0.0_ei/applications/moa/current_apGWY/lib:/opt/NToam/omgr_4.0.0_ei/JRE/lib/sparc/server:/opt/NToam/omgr_4.0.0_ei/JRE/lib/sparc:/lib:/usr/lib:/usr/dt/lib:/usr/openwin/lib
    LD_PRELOAD=/usr/lib/[email protected]
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x6c66dc], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGBUS: [libjvm.so+0x6c66dc], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGFPE: [libjvm.so+0x26def0], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x26def0], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x26def0], sa_mask[0]=0x7fbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: [libjvm.so+0x64b580], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x64b580], sa_mask[0]=0x7fbffeff, sa_flags=0x00000004
    SIGTERM: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    --------------- S Y S T E M ---------------
    OS: Solaris 9 12/03 s9s_u5wos_08b SPARC
    Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 21 November 2003
    uname:SunOS 5.9 Generic_118558-11 sun4u (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 2048, AS infinity
    load average:4.08 3.36 2.93
    CPU:total 4 has_v8, has_v9, has_vis1
    Memory: 8k page, physical 2097152k(31856k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_04-b05) for solaris-sparc, built on Jun 3 2005 03:32:53 by unknown with unknown Workshop:0x550
    age, physical 2097152k(31856k free)
    vm_info: Java HotSpot(TM) Server VM (1.5.0_04-b05) for solaris-sparc, built on Jun 3 2005 03:32:53 by unknown with unknown Workshop:0x550
    regards,
    Sreenu

    Looks like you are on Solaris. Have installed all the required Solaris patch?
    - Winston
    http://blogs.sun.com/roller/page/winston?catname=Creator

  • Hot deploy, classloading & singletons

    I have the following doubt about hot-deploy, classloading & singletons.
    Let´s assume I have a sessionbean which accesses a singleton. As far as I understand
    hot-deploy in weblogic, during a hot-deployment, a sessionbean instance currently
    engaged in a transaction is not unloaded untill the transaction is completed.
    New transactions however would access the newly deployed & loaded instances of
    the new version of my session bean.
    Am I correct to assume that, if this is the case, several instances of my singleton
    may exist at a certain moment in the same JVM (I am not talking about clusters,
    but about execution threads).

    Hi Seth
    Are you hot redeploying the entire application? Is the singleton class
    packaged with the application?Yes the singleton is packaged with the application. It´s actually the Bussiness
    Delegate.
    >
    Thanks.
    Seth
    "Sven van ´t Veer" wrote:
    I have the following doubt about hot-deploy, classloading & singletons.
    Let´s assume I have a sessionbean which accesses a singleton. As faras I understand
    hot-deploy in weblogic, during a hot-deployment, a sessionbean instancecurrently
    engaged in a transaction is not unloaded untill the transaction iscompleted.
    New transactions however would access the newly deployed & loaded instancesof
    the new version of my session bean.
    Am I correct to assume that, if this is the case, several instancesof my singleton
    may exist at a certain moment in the same JVM (I am not talking aboutclusters,
    but about execution threads).

  • FIX FOR: iPhone 4 battery draining fast, phone running hot

    I had the same issue many have reported here and in comments on blogs, where their +_battery was draining at least twice as fast_+ as on an iPhone 3GS with iOS 4.
    Some threads suggest +_this happens to iPhone 4 when restored from a 3G or 3GS_+, and indeed, that's what I'd done. A few people said that resetting to factory settings and installing everything fresh solved the issue, giving them better battery life than they'd seen on any prior iPhone.
    Many of my apps have files or settings stored in them, so I didn't want to have to set everything up again. A fresh install is a real pain.
    Deep in an iPhone 3G thread mentioning a similar battery problem after upgrading to iOS 4, someone said they'd deleted all their mail accounts, and set those up fresh, which solved the issue for them. I tried that today, and it worked.
    *_BEFORE AND AFTER_*:
    Thursday and Friday, the iPhone 4 went from 100% to 15% in under 6 hours. Today, after this fix, the iPhone 4 is at 87% after 12 hours. Thursday and Friday the phone was hot to the touch whenever I picked it up. Today it's always cool. Apps usage and movement among coverage areas on each day have been exactly the same. The only change was resetting up mail.
    *_STEPS TO FIX_*:
    Do this on WiFi so you can sync and check mail fast.
    1. Delete all mail accounts.
    2. If MobileMe user, delete MobileMe account, and remove all Calendars, Contacts, Notes, etc., from the phone (so you don't have dupes when you re-sync).
    3. Turn off phone, and back on again.
    4. If MobileMe user, add MobileMe account first. I enabled all options, even Find My iPhone (Thursday and Friday I had it off, in case it was using power). Wait long enough for contacts and calendars to sync, check to make sure. I use MobileMe mail on Push.
    5. Add back each additional mail account. I have 5. I am in a marginal coverage area, so I set these accounts on Fetch Hourly. I also have "Preview 5 Lines" (I think the default is Preview 2 Lines. This doesn't matter.)
    6. Go into Mail, go to the MobileMe Inbox, and scroll your way down letting the messages come in. You can see them come in when you see the Preview Lines update, and then scroll some more.
    7. Go into each additional mail account's Inbox, scroll your way down, letting the messages come in.
    8. Go to the combined Inbox if you use that, make sure all the messages are in.
    9. The WiFi activity spinner may remain spinning even after Mail says it is done Checking Mail. This is because other parts of mail accounts are being synced for the first time. Let the iPhone sit in Mail combined inbox until the spinner stops. Quit Mail, go back in, and watch the spinner after it's done Checking Mail. If the spinner doesn't stop after < 5 seconds or so, let Mail sit again. Once it's caught up, going into mail will Check Mail, and the spinner will stop a few seconds after as it should.
    10. You're done.
    Hopefully your phone stays cool and your battery life reflects the boost from the 20% larger battery. If not, the next step to try is Reset Network Settings, and finally try a factory reset and installing everything fresh instead of doing a restore. Hopefully you won't need to do that. I didn't.

    My iphone 4 just started to warm up and the battery is draining quick.  Closed everything and reset to no avail.  Turned off bluetooth, increased push time and checked location settings for new applications.  Weather Doodle was a bit suspicious as it had a purple direction indicator next to the setting.  The only other new app I installed was Lego instruct.  I disabled one of the 4 mail accounts I had that is having network difficulties, went to airplane mode and still I see %1 drain every 10 or 15 minutes.  I'll remove the new new apps and reset to see if it is related to the new apps.  If that doesn't work, I'll try email account reset at home wifi and see if that fixes the issues.  
    Thank you for the information.
    version 4.2.8
    Verizon

  • Hot mail wont open emails

    can get up hot mail but refuses to open email....sometimes says "MSN server" not found" and freezes

    it was a "bundle" problem.. got it solved! thanks

Maybe you are looking for

  • .jar file of Package!

    Hi! to All, How can I create ".jar" file of a "package". Thanks in advance!

  • About Extractor 2LIS_13_VDHDR

    Hi Guys, I am using an extractor 2LIS_13_VDHDR. When I check that in RSA3 it shows "0 records selected". When I schedule that my infopackage having that same Data Source it shows that 1900 records loaded. As for as my knowledge is concerned if there

  • Dynamic LBFO Load Balancing mode causing issues

    Hi, We`re running a couple of virtual machines with the BIG-IP Virtual Edition in a Windows Server 2012 R2 Hyper-V cluster. These virtual machines have had problems where traffic sent through the virtual machines doesn`t get through due to the MAC Ad

  • How do I get Mavericks 10.9.2 to recognize a phillips blu-ray BE14NU40

    I have an external blu-ray from phillips model BE14NU40 that OS X will not recognize and titanium will not write to.  DO\oes anyone know how to fix?

  • Error HRESULT E_FAIL has been returned

    In my RDS 2012 i was running a "Recreated All Virtual Desktops" on a Pooled collection when in the middle this happened Get-RDVirtualDesktopCollectionJobStatus desktoppool CollectionName       : desktoppool Status               : UPDATE_VIRTUAL_DESKT