Flashback table not responding

hi,
i am using oracle 10g R2 on linux X86. i have flashback feature set to true. one of my table was accidently truncated.
now i want it back.other tables are brought back with flashback technology.
but this one is generating error that "the table definition has been changed" i dont made any changes to table definition.
what might be the issue? even though i have backup,but still would like to know,and recover it with the help of flashback.
flashback retention target has been set to 900. and table was droped much before that.
plz help
thanks and regards
VD

Vikrant,
Why would I mind explaining?
Anyways, see below a small code.
SQL> create table aman_t (a number);
Table created.
SQL> desc dba_extents;
Name                                      Null?    Type
OWNER                                              VARCHAR2(30)
SEGMENT_NAME                                       VARCHAR2(81)
PARTITION_NAME                                     VARCHAR2(30)
SEGMENT_TYPE                                       VARCHAR2(18)
TABLESPACE_NAME                                    VARCHAR2(30)
EXTENT_ID                                          NUMBER
FILE_ID                                            NUMBER
BLOCK_ID                                           NUMBER
BYTES                                              NUMBER
BLOCKS                                             NUMBER
RELATIVE_FNO                                       NUMBER
SQL> select segment_name,extent_id,blocks from dba_extents where segment_name='AMAN_T';
SEGMENT_NAME
EXTENT_ID     BLOCKS
AMAN_T
         0          8
SQL> begin
  2  for i in 1..10000 loop
  3  insert into aman_t values(i);
  4  end loop;
  5  commit;
  6  end;
  7  /
PL/SQL procedure successfully completed.
SQL> select segment_name,extent_id,blocks from dba_extents where segment_name='AMAN_T';
SEGMENT_NAME
EXTENT_ID     BLOCKS
AMAN_T
         0          8
AMAN_T
         1          8
AMAN_T
         2          8
SQL> commit;
Commit complete.
SQL> exec dbms_stats.gather_table_stats(user,'AMAN_T');
PL/SQL procedure successfully completed.
SQL> select segment_name,extent_id,blocks from dba_extents where segment_name='AMAN_T';
SEGMENT_NAME
EXTENT_ID     BLOCKS
AMAN_T
         0          8
AMAN_T
         1          8
AMAN_T
         2          8
SQL> delete from aman_t;
10000 rows deleted.
SQL> exec dbms_stats.gather_table_stats(user,'AMAN_T');
PL/SQL procedure successfully completed.
SQL> select segment_name,extent_id,blocks from dba_extents where segment_name='AMAN_T';
SEGMENT_NAME
EXTENT_ID     BLOCKS
AMAN_T
         0          8
AMAN_T
         1          8
AMAN_T
         2          8
SQL> truncate table aman_t;
Table truncated.
SQL> exec dbms_stats.gather_table_stats(user,'AMAN_T');
PL/SQL procedure successfully completed.
SQL> select segment_name,extent_id,blocks from dba_extents where segment_name='AMAN_T';
SEGMENT_NAME
EXTENT_ID     BLOCKS
AMAN_T
         0          8
SQL>You should be able to see that when I issued a delete command, the number of allocated extents are the same.Which does mean that though the blocks are empty but the HWM is still pointing towards those blocks.I gathered stats just to ensure that you won't come back and say that aafter gathering them,things would be different.
When I gave truncate, you can see that oracle came back to the initially allocated first extent only. This is table definition change and this did happen with my last demo and with your original scenerio as well.
Now just to confuse you a little more, even gathering of stats would be called as definition change. See below,
SQL> drop table aman_t purge;
Table dropped.
SQL> create table amna_t( a char);
Table created.
SQL> exec dbms_stats.gather_table_stats(user,'AMNA_T');
PL/SQL procedure successfully completed.
SQL> alter table amna_t enable row movement;
Table altered.
SQL> flashback table amna_T to timestamp(sysdate - 1/24/60);
flashback table amna_T to timestamp(sysdate - 1/24/60)
ERROR at line 1:
ORA-01466: unable to read data - table definition has changed
SQL>So I hope you should be clear now that you can't get back the data with Flashback as this relies over the Undo data and can only get back the logical changes , not the structural changes over the object.
HTH
Aman....

Similar Messages

  • Flashback table does not work in 10.2?

    I thought that you can undo a drop and recover any table with FLASHBACK TABLE feature which comes with 10.2 by default (i.e. not special setting up is required). But I get this error when I try to do it.
    ORA-00439: feature not enabled: Flashback Table
    I used FLASHBACK TABLE <table name> BEFORE DROP;

    Ahmer Mansoor wrote:
    Dear Channa,
    Please make sure that the parameter recyclebin is on, if not then do the following.
    SQL> ALTER SYSTEM SET RECYCLEBIN=ON SCOPE=BOTH;
    Well, you must check before posting a statement that whether its working or not. Your reply is actually wrong in every manner. First, the parameter is a static parameter and can't be changed by the option BOTH. It has to be spfile and will be requiring a restart of the db. Please see below,
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> alter system set recyclebin=off;
    alter system set recyclebin=off
    ERROR at line 1:
    ORA-02096: specified initialization parameter is not modifiable with this
    option
    SQL> alter system set recyclebin=off scope=both;
    alter system set recyclebin=off scope=both
    ERROR at line 1:
    ORA-02096: specified initialization parameter is not modifiable with this
    option
    SQL> alter system set recyclebin=off scope=spfile;
    System altered.
    SQL> startup force
    ORACLE instance started.
    Total System Global Area  263639040 bytes
    Fixed Size                  1373964 bytes
    Variable Size             205523188 bytes
    Database Buffers           50331648 bytes
    Redo Buffers                6410240 bytes
    Database mounted.
    Database opened.
    SQL> show parameter recyclebin
    NAME                                 TYPE        VALUE
    recyclebin                           string      OFF
    SQL>Second, there is no relation between the parameter's value being OFF/On and the message that the OP is receiving. If the parameter is set to OFF, this would be the message,
    SQL> conn aman/aman
    Connected.
    SQL> create table test_tab(a number);
    Table created.
    SQL> drop table test_tab;
    Table dropped.
    SQL> flashback table test_tab to before drop;
    flashback table test_tab to before drop
    ERROR at line 1:
    ORA-38305: object not in RECYCLE BIN
    SQL> show parameter recyclebin
    NAME                                 TYPE        VALUE
    recyclebin                           string      OFF
    SQL> select * from V$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>HTH
    Aman....

  • IPhone 5 touch screen does not respond when laid flat on a table. What do I do?

    I just started noticing this when a friend sent me a text and I was unable to "slide to unlock" the screen to reply. I tried swiping through the apps, up and down, left and right--every gesture that an iPhone was built to detect. Even the assistive touch didn't respond! What's interesting now is that whenever I pick up the phone and it's no longer lying 180º on a table, it responds normally. Should I be worried?

    I wouldn't be "worried" but it warrants a trip to the genius bar I would think.

  • AMD A6-5400k - CPU1: Not Responding

    Hi fellas,
    I got a new CPU for my maschine, which runs on ARCH-x86_64 Kernel 3.6.10. So far everything went fine but one thing:
    At boot, only of the two cores is recognized. This is only the case in Arch, both BIOS and Windows show both Cores. I rebuilt my initramfs and reinstalled linux, but none helped.
    I realize, there are several topics around the www and this board, but none of them helped me in my case.
    I tried some things, like booting the LTS-Kernel.
    Any ideas how I can solve this issue?
    I got the outputs of dmesg (system boot):
    I think the relevant Lines are around 0.17000.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.0.46-1-lts (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP Fri Oct 12 23:52:43 CEST 2012
    [ 0.000000] Command line: gpt loglevel=7 rootdelay=10 initrd=/boot/initramfs_x86_64.img BOOT_IMAGE=/boot/vmlinuz_x86_64_lts
    [ 0.000000] BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [ 0.000000] BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    [ 0.000000] BIOS-e820: 0000000000100000 - 000000009d575000 (usable)
    [ 0.000000] BIOS-e820: 000000009d575000 - 000000009d856000 (reserved)
    [ 0.000000] BIOS-e820: 000000009d856000 - 000000009dbae000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000009dbae000 - 000000009e9d3000 (reserved)
    [ 0.000000] BIOS-e820: 000000009e9d3000 - 000000009e9d4000 (usable)
    [ 0.000000] BIOS-e820: 000000009e9d4000 - 000000009ebda000 (ACPI NVS)
    [ 0.000000] BIOS-e820: 000000009ebda000 - 000000009f04c000 (usable)
    [ 0.000000] BIOS-e820: 000000009f04c000 - 000000009f7dd000 (reserved)
    [ 0.000000] BIOS-e820: 000000009f7dd000 - 000000009f800000 (usable)
    [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed40000 - 00000000fed45000 (reserved)
    [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    [ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [ 0.000000] BIOS-e820: 0000000100001000 - 000000043f000000 (usable)
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./F2A85X-D3H, BIOS F1 10/09/2012
    [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [ 0.000000] No AGP bridge found
    [ 0.000000] last_pfn = 0x43f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF write-through
    [ 0.000000] C0000-D1FFF write-protect
    [ 0.000000] D2000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000000 mask FFFF80000000 write-back
    [ 0.000000] 1 base 000080000000 mask FFFFE0000000 write-back
    [ 0.000000] 2 base 00009F800000 mask FFFFFF800000 uncachable
    [ 0.000000] 3 disabled
    [ 0.000000] 4 disabled
    [ 0.000000] 5 disabled
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] TOM2: 000000043f000000 aka 17392M
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820 update range: 000000009f800000 - 0000000100000000 (usable) ==> (reserved)
    [ 0.000000] last_pfn = 0x9f800 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [ffff8800000fd7b0] fd7b0
    [ 0.000000] initial memory mapped : 0 - 20000000
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: 0000000000000000-000000009f800000
    [ 0.000000] 0000000000 - 0080000000 page 1G
    [ 0.000000] 0080000000 - 009f800000 page 2M
    [ 0.000000] kernel direct mapping tables up to 9f800000 @ 1fffe000-20000000
    [ 0.000000] init_memory_mapping: 0000000100000000-000000043f000000
    [ 0.000000] 0100000000 - 0400000000 page 1G
    [ 0.000000] 0400000000 - 043f000000 page 2M
    [ 0.000000] kernel direct mapping tables up to 43f000000 @ 9f7fe000-9f800000
    [ 0.000000] RAMDISK: 79bca000 - 7ffff000
    [ 0.000000] ACPI: RSDP 00000000000f0490 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 000000009db97080 0007C (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 000000009db9cf90 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110413/tbfadt-560)
    [ 0.000000] ACPI: DSDT 000000009db97190 05DFE (v02 ALASKA A M I 00000000 INTL 20051117)
    [ 0.000000] ACPI: FACS 000000009dba6d80 00040
    [ 0.000000] ACPI: APIC 000000009db9d088 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FPDT 000000009db9d100 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: MCFG 000000009db9d148 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    [ 0.000000] ACPI: HPET 000000009db9d188 00038 (v01 ALASKA A M I 01072009 AMI 00000005)
    [ 0.000000] ACPI: IFEU 000000009db9d1c0 00042 (v01 ALASKA A M I 01072009 00000000)
    [ 0.000000] ACPI: BGRT 000000009db9d208 00038 (v00 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 000000009db9d240 006B2 (v01 AMD POWERNOW 00000001 AMD 00000001)
    [ 0.000000] ACPI: SSDT 000000009db9d8f8 004B7 (v02 AMD ALIB 00000001 MSFT 04000000)
    [ 0.000000] ACPI: IVRS 000000009db9ddb0 00070 (v02 AMD AMDIOMMU 00000001 AMD 00000000)
    [ 0.000000] ACPI: CRAT 000000009db9de20 001F8 (v01 AMD AGESA 00000001 AMD 00000001)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at 0000000000000000-000000043f000000
    [ 0.000000] Initmem setup node 0 0000000000000000-000000043f000000
    [ 0.000000] NODE_DATA [000000043effb000 - 000000043effffff]
    [ 0.000000] [ffffea0000000000-ffffea000edfffff] PMD -> [ffff88042ee00000-ffff88043c7fffff] on node 0
    [ 0.000000] Zone PFN ranges:
    [ 0.000000] DMA 0x00000010 -> 0x00001000
    [ 0.000000] DMA32 0x00001000 -> 0x00100000
    [ 0.000000] Normal 0x00100000 -> 0x0043f000
    [ 0.000000] Movable zone start PFN for each node
    [ 0.000000] early_node_map[6] active PFN ranges
    [ 0.000000] 0: 0x00000010 -> 0x0000009e
    [ 0.000000] 0: 0x00000100 -> 0x0009d575
    [ 0.000000] 0: 0x0009e9d3 -> 0x0009e9d4
    [ 0.000000] 0: 0x0009ebda -> 0x0009f04c
    [ 0.000000] 0: 0x0009f7dd -> 0x0009f800
    [ 0.000000] 0: 0x00100001 -> 0x0043f000
    [ 0.000000] On node 0 totalpages: 4049304
    [ 0.000000] DMA zone: 56 pages used for memmap
    [ 0.000000] DMA zone: 5 pages reserved
    [ 0.000000] DMA zone: 3921 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 14280 pages used for memmap
    [ 0.000000] DMA32 zone: 627267 pages, LIFO batch:31
    [ 0.000000] Normal zone: 46536 pages used for memmap
    [ 0.000000] Normal zone: 3357239 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x14] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x15] disabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 3, version 33, 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 low level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x10228210 base: 0xfed00000
    [ 0.000000] SMP: Allowing 4 CPUs, 2 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 000000009d575000 - 000000009d856000
    [ 0.000000] PM: Registered nosave memory: 000000009d856000 - 000000009dbae000
    [ 0.000000] PM: Registered nosave memory: 000000009dbae000 - 000000009e9d3000
    [ 0.000000] PM: Registered nosave memory: 000000009e9d4000 - 000000009ebda000
    [ 0.000000] PM: Registered nosave memory: 000000009f04c000 - 000000009f7dd000
    [ 0.000000] PM: Registered nosave memory: 000000009f800000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fed00000
    [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed40000
    [ 0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed80000
    [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    [ 0.000000] Allocating PCI resources starting at 9f800000 (gap: 9f800000:5f400000)
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88043ec00000 s79360 r8192 d23040 u524288
    [ 0.000000] pcpu-alloc: s79360 r8192 d23040 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 3988427
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: gpt loglevel=7 rootdelay=10 initrd=/boot/initramfs_x86_64.img BOOT_IMAGE=/boot/vmlinuz_x86_64_lts
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 15793100k/17809408k available (4239k kernel code, 1612192k absent, 404116k reserved, 5184k data, 732k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Hierarchical RCU implementation.
    [ 0.000000] NR_IRQS:2304
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour VGA+ 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 130023424 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration failed
    [ 0.000000] TSC: Unable to calibrate against PIT
    [ 0.000000] TSC: using HPET reference calibration
    [ 0.000000] Detected 3593.482 MHz processor.
    [ 0.030003] Calibrating delay loop (skipped), value calculated using timer frequency.. 7186.96 BogoMIPS (lpj=35934820)
    [ 0.030067] pid_max: default: 32768 minimum: 301
    [ 0.030186] Security Framework initialized
    [ 0.030219] AppArmor: AppArmor disabled by boot time parameter
    [ 0.031478] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.038170] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.042321] Mount-cache hash table entries: 256
    [ 0.042958] Initializing cgroup subsys cpuacct
    [ 0.043012] Initializing cgroup subsys memory
    [ 0.043055] Initializing cgroup subsys devices
    [ 0.043086] Initializing cgroup subsys freezer
    [ 0.043118] Initializing cgroup subsys net_cls
    [ 0.043149] Initializing cgroup subsys blkio
    [ 0.043215] tseg: 009f800000
    [ 0.043216] CPU: Physical Processor ID: 0
    [ 0.043248] CPU: Processor Core ID: 0
    [ 0.043279] mce: CPU supports 7 MCE banks
    [ 0.044338] ACPI: Core revision 20110413
    [ 0.050017] ftrace: allocating 16878 entries in 67 pages
    [ 0.060590] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.160953] CPU0: AMD A6-5400K APU with Radeon(tm) HD Graphics stepping 01
    [ 0.170000] Performance Events: AMD Family 15h PMU driver.
    [ 0.170000] ... version: 0
    [ 0.170000] ... bit width: 48
    [ 0.170000] ... generic registers: 6
    [ 0.170000] ... value mask: 0000ffffffffffff
    [ 0.170000] ... max period: 00007fffffffffff
    [ 0.170000] ... fixed-purpose events: 0
    [ 0.170000] ... event mask: 000000000000003f
    [ 0.170000] NMI watchdog enabled, takes one hw-pmu counter.
    [ 0.170000] Booting Node 0, Processors #1
    [ 0.170000] smpboot cpu 1: start_ip = 99000
    [ 7.443437] CPU1: Not responding.
    [ 7.445038] Brought up 1 CPUs
    [ 7.445164] Total of 1 processors activated (7186.96 BogoMIPS).
    [ 7.449107] devtmpfs: initialized
    [ 7.482442] PM: Registering ACPI NVS region at 9d856000 (3506176 bytes)
    [ 7.486598] PM: Registering ACPI NVS region at 9e9d4000 (2121728 bytes)
    [ 7.493031] NET: Registered protocol family 16
    [ 7.496249] Extended Config Space enabled on 0 nodes
    [ 7.496483] ACPI: bus type pci registered
    [ 7.498432] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 7.498554] PCI: not using MMCONFIG
    [ 7.498978] PCI: Using configuration type 1 for base access
    [ 7.499066] PCI: Using configuration type 1 for extended access
    [ 7.527324] bio: create slab <bio-0> at 0
    [ 7.601576] ACPI: EC: Look up EC in DSDT
    [ 7.685139] ACPI: Executed 1 blocks of module-level executable AML code
    [ 7.830050] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 7.845972] ACPI: Interpreter enabled
    [ 7.846060] ACPI: (supports S0 S3 S4 S5)
    [ 7.847202] ACPI: Using IOAPIC for interrupt routing
    [ 7.850557] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 7.851641] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    [ 10.009318] ACPI: No dock devices found.
    [ 10.009448] HEST: Table not found.
    [ 10.009563] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 10.018400] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 10.028017] pci_root PNP0A03:00: host bridge window [io 0x0000-0x03af]
    [ 10.028139] pci_root PNP0A03:00: host bridge window [io 0x03e0-0x0cf7]
    [ 10.028263] pci_root PNP0A03:00: host bridge window [io 0x03b0-0x03df]
    [ 10.028386] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    [ 10.028508] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    [ 10.028639] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    [ 10.029075] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xffffffff]
    [ 10.029299] pci 0000:00:00.0: [1022:1410] type 0 class 0x000600
    [ 10.030321] pci 0000:00:00.2: [1022:1419] type 0 class 0x000806
    [ 10.032320] pci 0000:00:01.0: [1002:9991] type 0 class 0x000300
    [ 10.032465] pci 0000:00:01.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    [ 10.032576] pci 0000:00:01.0: reg 14: [io 0xf000-0xf0ff]
    [ 10.032990] pci 0000:00:01.0: reg 18: [mem 0xfeb00000-0xfeb3ffff]
    [ 10.034009] pci 0000:00:01.0: supports D1 D2
    [ 10.034262] pci 0000:00:01.1: [1002:9902] type 0 class 0x000403
    [ 10.034406] pci 0000:00:01.1: reg 10: [mem 0xfeb44000-0xfeb47fff]
    [ 10.035595] pci 0000:00:01.1: supports D1 D2
    [ 10.036209] pci 0000:00:02.0: [1022:1412] type 1 class 0x000604
    [ 10.037405] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
    [ 10.037463] pci 0000:00:02.0: PME# disabled
    [ 10.038065] pci 0000:00:04.0: [1022:1414] type 1 class 0x000604
    [ 10.039258] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    [ 10.039316] pci 0000:00:04.0: PME# disabled
    [ 10.040227] pci 0000:00:10.0: [1022:7812] type 0 class 0x000c03
    [ 10.040423] pci 0000:00:10.0: reg 10: [mem 0xfeb4a000-0xfeb4bfff 64bit]
    [ 10.041630] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
    [ 10.041993] pci 0000:00:10.0: PME# disabled
    [ 10.042315] pci 0000:00:10.1: [1022:7812] type 0 class 0x000c03
    [ 10.042510] pci 0000:00:10.1: reg 10: [mem 0xfeb48000-0xfeb49fff 64bit]
    [ 10.044002] pci 0000:00:10.1: PME# supported from D0 D3hot D3cold
    [ 10.044059] pci 0000:00:10.1: PME# disabled
    [ 10.044424] pci 0000:00:11.0: [1022:7801] type 0 class 0x000106
    [ 10.044632] pci 0000:00:11.0: reg 10: [io 0xf140-0xf147]
    [ 10.045026] pci 0000:00:11.0: reg 14: [io 0xf130-0xf133]
    [ 10.045141] pci 0000:00:11.0: reg 18: [io 0xf120-0xf127]
    [ 10.045255] pci 0000:00:11.0: reg 1c: [io 0xf110-0xf113]
    [ 10.045372] pci 0000:00:11.0: reg 20: [io 0xf100-0xf10f]
    [ 10.045486] pci 0000:00:11.0: reg 24: [mem 0xfeb51000-0xfeb517ff]
    [ 10.046377] pci 0000:00:12.0: [1022:7807] type 0 class 0x000c03
    [ 10.046528] pci 0000:00:12.0: reg 10: [mem 0xfeb50000-0xfeb50fff]
    [ 10.047596] pci 0000:00:12.2: [1022:7808] type 0 class 0x000c03
    [ 10.048081] pci 0000:00:12.2: reg 10: [mem 0xfeb4f000-0xfeb4f0ff]
    [ 10.049232] pci 0000:00:12.2: supports D1 D2
    [ 10.049268] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    [ 10.049324] pci 0000:00:12.2: PME# disabled
    [ 10.049558] pci 0000:00:13.0: [1022:7807] type 0 class 0x000c03
    [ 10.050126] pci 0000:00:13.0: reg 10: [mem 0xfeb4e000-0xfeb4efff]
    [ 10.051154] pci 0000:00:13.2: [1022:7808] type 0 class 0x000c03
    [ 10.051363] pci 0000:00:13.2: reg 10: [mem 0xfeb4d000-0xfeb4d0ff]
    [ 10.052509] pci 0000:00:13.2: supports D1 D2
    [ 10.052545] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    [ 10.052603] pci 0000:00:13.2: PME# disabled
    [ 10.053123] pci 0000:00:14.0: [1022:780b] type 0 class 0x000c05
    [ 10.054237] pci 0000:00:14.2: [1022:780d] type 0 class 0x000403
    [ 10.054467] pci 0000:00:14.2: reg 10: [mem 0xfeb40000-0xfeb43fff 64bit]
    [ 10.055437] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    [ 10.055495] pci 0000:00:14.2: PME# disabled
    [ 10.055640] pci 0000:00:14.3: [1022:780e] type 0 class 0x000601
    [ 10.056993] pci 0000:00:14.4: [1022:780f] type 1 class 0x000604
    [ 10.057448] pci 0000:00:14.5: [1022:7809] type 0 class 0x000c03
    [ 10.057598] pci 0000:00:14.5: reg 10: [mem 0xfeb4c000-0xfeb4cfff]
    [ 10.058964] pci 0000:00:18.0: [1022:1400] type 0 class 0x000600
    [ 10.059537] pci 0000:00:18.1: [1022:1401] type 0 class 0x000600
    [ 10.060476] pci 0000:00:18.2: [1022:1402] type 0 class 0x000600
    [ 10.061308] pci 0000:00:18.3: [1022:1403] type 0 class 0x000600
    [ 10.062308] pci 0000:00:18.4: [1022:1404] type 0 class 0x000600
    [ 10.063128] pci 0000:00:18.5: [1022:1405] type 0 class 0x000600
    [ 10.064976] pci 0000:01:00.0: [8086:10d3] type 0 class 0x000200
    [ 10.065120] pci 0000:01:00.0: reg 10: [mem 0xfeac0000-0xfeadffff]
    [ 10.065243] pci 0000:01:00.0: reg 14: [mem 0xfea00000-0xfea7ffff]
    [ 10.065364] pci 0000:01:00.0: reg 18: [io 0xe000-0xe01f]
    [ 10.065487] pci 0000:01:00.0: reg 1c: [mem 0xfeae0000-0xfeae3fff]
    [ 10.066064] pci 0000:01:00.0: reg 30: [mem 0xfea80000-0xfeabffff pref]
    [ 10.066618] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 10.066975] pci 0000:01:00.0: PME# disabled
    [ 10.067368] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 10.067531] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 10.067587] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 10.067969] pci 0000:00:02.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 10.068963] pci 0000:02:00.0: [10ec:8168] type 0 class 0x000200
    [ 10.069068] pci 0000:02:00.0: reg 10: [io 0xd000-0xd0ff]
    [ 10.069308] pci 0000:02:00.0: reg 18: [mem 0xd0004000-0xd0004fff 64bit pref]
    [ 10.069469] pci 0000:02:00.0: reg 20: [mem 0xd0000000-0xd0003fff 64bit pref]
    [ 10.070508] pci 0000:02:00.0: supports D1 D2
    [ 10.070544] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 10.070602] pci 0000:02:00.0: PME# disabled
    [ 10.071304] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    [ 10.071465] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 10.071522] pci 0000:00:04.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    [ 10.071601] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.072247] pci 0000:03:06.0: [1095:3114] type 0 class 0x000104
    [ 10.072438] pci 0000:03:06.0: reg 10: [io 0xc040-0xc047]
    [ 10.072558] pci 0000:03:06.0: reg 14: [io 0xc030-0xc033]
    [ 10.072989] pci 0000:03:06.0: reg 18: [io 0xc020-0xc027]
    [ 10.073069] pci 0000:03:06.0: reg 1c: [io 0xc010-0xc013]
    [ 10.073186] pci 0000:03:06.0: reg 20: [io 0xc000-0xc00f]
    [ 10.073303] pci 0000:03:06.0: reg 24: [mem 0xfe980000-0xfe9803ff]
    [ 10.073420] pci 0000:03:06.0: reg 30: [mem 0xfe900000-0xfe97ffff pref]
    [ 10.074010] pci 0000:03:06.0: supports D1 D2
    [ 10.074426] pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
    [ 10.074564] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 10.074621] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 10.074981] pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    [ 10.074993] pci 0000:00:14.4: bridge window [io 0x0000-0x03af] (subtractive decode)
    [ 10.075032] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7] (subtractive decode)
    [ 10.075071] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df] (subtractive decode)
    [ 10.075108] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 10.075146] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 10.075183] pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
    [ 10.075220] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
    [ 10.075413] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 10.087428] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    [ 10.092229] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR12._PRT]
    [ 10.093609] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR14._PRT]
    [ 10.098972] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 10.105356] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 10.469632] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.473051] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.476159] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.479249] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.482314] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.485047] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.487433] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.490344] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
    [ 10.494044] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
    [ 10.494442] vgaarb: loaded
    [ 10.494556] vgaarb: bridge control possible 0000:00:01.0
    [ 10.496198] PCI: Using ACPI for IRQ routing
    [ 10.574000] PCI: pci_cache_line_size set to 64 bytes
    [ 10.575540] reserve RAM buffer: 000000000009e800 - 000000000009ffff
    [ 10.575579] reserve RAM buffer: 000000009d575000 - 000000009fffffff
    [ 10.575976] reserve RAM buffer: 000000009e9d4000 - 000000009fffffff
    [ 10.576002] reserve RAM buffer: 000000009f04c000 - 000000009fffffff
    [ 10.576049] reserve RAM buffer: 000000009f800000 - 000000009fffffff
    [ 10.576088] reserve RAM buffer: 000000043f000000 - 000000043fffffff
    [ 10.579048] NetLabel: Initializing
    [ 10.579161] NetLabel: domain hash size = 128
    [ 10.579273] NetLabel: protocols = UNLABELED CIPSOv4
    [ 10.580048] NetLabel: unlabeled traffic allowed by default
    [ 10.580185] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 10.580995] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    [ 10.583427] Switching to clocksource hpet
    [ 10.586451] Switched to NOHz mode on CPU #0
    [ 10.846011] pnp: PnP ACPI init
    [ 10.846721] ACPI: bus type pnp registered
    [ 10.851432] pnp 00:00: [bus 00-ff]
    [ 10.851473] pnp 00:00: [io 0x0cf8-0x0cff]
    [ 10.851513] pnp 00:00: [io 0x0000-0x03af window]
    [ 10.851555] pnp 00:00: [io 0x03e0-0x0cf7 window]
    [ 10.851596] pnp 00:00: [io 0x03b0-0x03df window]
    [ 10.851637] pnp 00:00: [io 0x0d00-0xffff window]
    [ 10.851678] pnp 00:00: [mem 0x000a0000-0x000bffff window]
    [ 10.851718] pnp 00:00: [mem 0x000c0000-0x000dffff window]
    [ 10.851759] pnp 00:00: [mem 0xc0000000-0xffffffff window]
    [ 10.851799] pnp 00:00: [mem 0x00000000 window]
    [ 10.853412] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
    [ 10.854370] pnp 00:01: [mem 0xe0000000-0xefffffff]
    [ 10.855576] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    [ 10.855722] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 10.880640] pnp 00:02: [io 0x0010-0x001f]
    [ 10.880679] pnp 00:02: [io 0x0022-0x003f]
    [ 10.880718] pnp 00:02: [io 0x0063]
    [ 10.880756] pnp 00:02: [io 0x0065]
    [ 10.880795] pnp 00:02: [io 0x0067-0x006f]
    [ 10.880834] pnp 00:02: [io 0x0072-0x007f]
    [ 10.880873] pnp 00:02: [io 0x0080]
    [ 10.880912] pnp 00:02: [io 0x0084-0x0086]
    [ 10.880975] pnp 00:02: [io 0x0088]
    [ 10.881014] pnp 00:02: [io 0x008c-0x008e]
    [ 10.881052] pnp 00:02: [io 0x0090-0x009f]
    [ 10.881387] pnp 00:02: [io 0x00a2-0x00bf]
    [ 10.881422] pnp 00:02: [io 0x00b1]
    [ 10.881458] pnp 00:02: [io 0x00e0-0x00ef]
    [ 10.881494] pnp 00:02: [io 0x04d0-0x04d1]
    [ 10.881529] pnp 00:02: [io 0x040b]
    [ 10.881565] pnp 00:02: [io 0x04d6]
    [ 10.881601] pnp 00:02: [io 0x0c00-0x0c01]
    [ 10.881636] pnp 00:02: [io 0x0c14]
    [ 10.881672] pnp 00:02: [io 0x0c50-0x0c51]
    [ 10.881708] pnp 00:02: [io 0x0c52]
    [ 10.881743] pnp 00:02: [io 0x0c6c]
    [ 10.881779] pnp 00:02: [io 0x0c6f]
    [ 10.881815] pnp 00:02: [io 0x0cd0-0x0cd1]
    [ 10.881851] pnp 00:02: [io 0x0cd2-0x0cd3]
    [ 10.881886] pnp 00:02: [io 0x0cd4-0x0cd5]
    [ 10.881924] pnp 00:02: [io 0x0cd6-0x0cd7]
    [ 10.881959] pnp 00:02: [io 0x0cd8-0x0cdf]
    [ 10.881997] pnp 00:02: [io 0x0800-0x089f]
    [ 10.882033] pnp 00:02: [io 0x0000-0xffffffffffffffff disabled]
    [ 10.882376] pnp 00:02: [io 0x0000-0x000f]
    [ 10.882401] pnp 00:02: [io 0x0b20-0x0b3f]
    [ 10.882438] pnp 00:02: [io 0x0900-0x090f]
    [ 10.882474] pnp 00:02: [io 0x0910-0x091f]
    [ 10.882512] pnp 00:02: [io 0xfe00-0xfefe]
    [ 10.882547] pnp 00:02: [io 0x0060-0x005f disabled]
    [ 10.882583] pnp 00:02: [io 0x0064-0x0063 disabled]
    [ 10.882619] pnp 00:02: [mem 0xfec00000-0xfec00fff]
    [ 10.882656] pnp 00:02: [mem 0xfee00000-0xfee00fff]
    [ 10.882692] pnp 00:02: [mem 0xfed80000-0xfed8ffff]
    [ 10.882728] pnp 00:02: [mem 0xfed61000-0xfed70fff]
    [ 10.882763] pnp 00:02: [mem 0xfec10000-0xfec10fff]
    [ 10.882801] pnp 00:02: [mem 0xfed00000-0xfed00fff]
    [ 10.882836] pnp 00:02: [mem 0xff000000-0xffffffff]
    [ 10.884490] system 00:02: [io 0x04d0-0x04d1] has been reserved
    [ 10.884616] system 00:02: [io 0x040b] has been reserved
    [ 10.884742] system 00:02: [io 0x04d6] has been reserved
    [ 10.884866] system 00:02: [io 0x0c00-0x0c01] has been reserved
    [ 10.884988] system 00:02: [io 0x0c14] has been reserved
    [ 10.885440] system 00:02: [io 0x0c50-0x0c51] has been reserved
    [ 10.885563] system 00:02: [io 0x0c52] has been reserved
    [ 10.885685] system 00:02: [io 0x0c6c] has been reserved
    [ 10.885807] system 00:02: [io 0x0c6f] has been reserved
    [ 10.885929] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    [ 10.886375] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    [ 10.886496] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    [ 10.886619] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    [ 10.886741] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    [ 10.886863] system 00:02: [io 0x0800-0x089f] has been reserved
    [ 10.886986] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    [ 10.887433] system 00:02: [io 0x0900-0x090f] has been reserved
    [ 10.887557] system 00:02: [io 0x0910-0x091f] has been reserved
    [ 10.887679] system 00:02: [io 0xfe00-0xfefe] has been reserved
    [ 10.887806] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    [ 10.887928] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 10.888360] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    [ 10.888468] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    [ 10.888593] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    [ 10.888715] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    [ 10.888840] system 00:02: [mem 0xff000000-0xffffffff] has been reserved
    [ 10.888981] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.892417] pnp 00:03: [io 0x0000-0xffffffffffffffff disabled]
    [ 10.892456] pnp 00:03: [io 0x0220-0x0227]
    [ 10.892494] pnp 00:03: [io 0x0228-0x0237]
    [ 10.892534] pnp 00:03: [io 0x0a20-0x0a2f]
    [ 10.893890] system 00:03: [io 0x0220-0x0227] has been reserved
    [ 10.894018] system 00:03: [io 0x0228-0x0237] has been reserved
    [ 10.894460] system 00:03: [io 0x0a20-0x0a2f] has been reserved
    [ 10.894605] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.901525] pnp 00:04: [dma 4]
    [ 10.901565] pnp 00:04: [io 0x0000-0x000f]
    [ 10.901629] pnp 00:04: [io 0x0081-0x0083]
    [ 10.901667] pnp 00:04: [io 0x0087]
    [ 10.901706] pnp 00:04: [io 0x0089-0x008b]
    [ 10.901745] pnp 00:04: [io 0x008f]
    [ 10.901784] pnp 00:04: [io 0x00c0-0x00df]
    [ 10.902753] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 10.903004] pnp 00:05: [io 0x0070-0x0071]
    [ 10.903394] pnp 00:05: [irq 8]
    [ 10.904399] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 10.904582] pnp 00:06: [io 0x0061]
    [ 10.905587] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 10.906373] pnp 00:07: [io 0x0010-0x001f]
    [ 10.906408] pnp 00:07: [io 0x0022-0x003f]
    [ 10.906444] pnp 00:07: [io 0x0044-0x005f]
    [ 10.906481] pnp 00:07: [io 0x0072-0x007f]
    [ 10.906517] pnp 00:07: [io 0x0080]
    [ 10.906555] pnp 00:07: [io 0x0084-0x0086]
    [ 10.906592] pnp 00:07: [io 0x0088]
    [ 10.906627] pnp 00:07: [io 0x008c-0x008e]
    [ 10.906663] pnp 00:07: [io 0x0090-0x009f]
    [ 10.906699] pnp 00:07: [io 0x00a2-0x00bf]
    [ 10.906735] pnp 00:07: [io 0x00e0-0x00ef]
    [ 10.906771] pnp 00:07: [io 0x04d0-0x04d1]
    [ 10.908470] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 10.908615] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.908803] pnp 00:08: [io 0x00f0-0x00ff]
    [ 10.908895] pnp 00:08: [irq 13]
    [ 10.910515] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 10.912466] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.916697] pnp 00:0a: [mem 0xa0000000-0xbfffffff]
    [ 10.918472] system 00:0a: [mem 0xa0000000-0xbfffffff] has been reserved
    [ 10.918619] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.920584] pnp 00:0b: [mem 0xfeb80000-0xfebfffff]
    [ 10.922399] system 00:0b: [mem 0xfeb80000-0xfebfffff] has been reserved
    [ 10.922543] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 10.927499] pnp 00:0c: [mem 0xfed00000-0xfed003ff]
    [ 10.928848] pnp 00:0c: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 10.928958] pnp: PnP ACPI: found 13 devices
    [ 10.929375] ACPI: ACPI bus type pnp unregistered
    [ 10.990732] PCI: max bus depth: 1 pci_try_num: 2
    [ 10.990936] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    [ 10.991384] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    [ 10.991521] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
    [ 10.991658] pci 0000:00:02.0: bridge window [mem pref disabled]
    [ 10.991821] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    [ 10.991949] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    [ 10.992386] pci 0000:00:04.0: bridge window [mem disabled]
    [ 10.992514] pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.992683] pci 0000:00:14.4: PCI bridge to [bus 03-03]
    [ 10.992810] pci 0000:00:14.4: bridge window [io 0xc000-0xcfff]
    [ 10.992960] pci 0000:00:14.4: bridge window [mem 0xfe900000-0xfe9fffff]
    [ 10.993389] pci 0000:00:14.4: bridge window [mem pref disabled]
    [ 10.993675] pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 10.993815] pci 0000:00:02.0: setting latency timer to 64
    [ 10.993994] pci 0000:00:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 10.994461] pci 0000:00:04.0: setting latency timer to 64
    [ 10.994566] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 10.994605] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 10.994644] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 10.994682] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 10.994721] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 10.994760] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 10.994799] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff]
    [ 10.994837] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 10.994876] pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
    [ 10.994915] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    [ 10.994954] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd00fffff 64bit pref]
    [ 10.994993] pci_bus 0000:03: resource 0 [io 0xc000-0xcfff]
    [ 10.995032] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]
    [ 10.995368] pci_bus 0000:03: resource 4 [io 0x0000-0x03af]
    [ 10.995377] pci_bus 0000:03: resource 5 [io 0x03e0-0x0cf7]
    [ 10.995414] pci_bus 0000:03: resource 6 [io 0x03b0-0x03df]
    [ 10.995449] pci_bus 0000:03: resource 7 [io 0x0d00-0xffff]
    [ 10.995485] pci_bus 0000:03: resource 8 [mem 0x000a0000-0x000bffff]
    [ 10.995523] pci_bus 0000:03: resource 9 [mem 0x000c0000-0x000dffff]
    [ 10.995559] pci_bus 0000:03: resource 10 [mem 0xc0000000-0xffffffff]
    [ 10.996013] NET: Registered protocol family 2
    [ 11.011431] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 11.044698] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 11.051435] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 11.051803] TCP: Hash tables configured (established 524288 bind 65536)
    [ 11.051921] TCP reno registered
    [ 11.052935] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 11.054372] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 11.056540] NET: Registered protocol family 1
    [ 11.056817] pci 0000:00:01.0: Boot video device
    [ 11.057014] pci 0000:00:10.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.057627] pci 0000:00:10.0: PCI INT A disabled
    [ 11.057906] pci 0000:00:10.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.058488] pci 0000:00:10.1: PCI INT B disabled
    [ 11.058705] pci 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.150025] pci 0000:00:12.0: PCI INT A disabled
    [ 11.150071] pci 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.150124] pci 0000:00:12.2: PCI INT B disabled
    [ 11.150160] pci 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 11.240018] pci 0000:00:13.0: PCI INT A disabled
    [ 11.240057] pci 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 11.240102] pci 0000:00:13.2: PCI INT B disabled
    [ 11.240147] pci 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 11.330018] pci 0000:00:14.5: PCI INT C disabled
    [ 11.330066] PCI: CLS 64 bytes, default 64
    [ 11.330109] Unpacking initramfs...
    [ 0.040000] Kernel panic - not syncing: smp_callin: CPU1 started up but did not get a callout!
    [ 0.040000]
    [ 0.040000] Pid: 0, comm: kworker/0:0 Not tainted 3.0.46-1-lts #1
    [ 0.040000] Call Trace:
    [ 0.040000] [<ffffffff8140f6cd>] panic+0x91/0x197
    [ 0.040000] [<ffffffff8140884c>] start_secondary+0xcb/0x1fe
    [ 26.201608] Freeing initrd memory: 102612k freed
    [ 26.228111] pci 0000:00:00.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 26.228318] pci 0000:00:00.2: irq 40 for MSI/MSI-X
    [ 26.228396] AMD-Vi: Enabling IOMMU at 0000:00:00.2 cap 0x40 extended features: PreF PPR GT IA
    [ 26.240635] AMD-Vi: Lazy IO/TLB flushing enabled
    [ 26.240671] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 26.240706] Placing 64MB software IO TLB between ffff880099575000 - ffff88009d575000
    [ 26.240743] software IO TLB at phys 0x99575000 - 0x9d575000
    [ 26.241067] audit: initializing netlink socket (disabled)
    [ 26.241110] type=2000 audit(1356177972.230:1): initialized
    [ 26.250693] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 26.254005] VFS: Disk quotas dquot_6.5.2
    [ 26.254149] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 26.254346] msgmni has been set to 31046
    [ 26.254555] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [ 26.254612] io scheduler noop registered
    [ 26.254646] io scheduler deadline registered (default)
    [ 26.254719] io scheduler cfq registered
    [ 26.254848] pcieport 0000:00:02.0: setting latency timer to 64
    [ 26.254910] pcieport 0000:00:02.0: irq 41 for MSI/MSI-X
    [ 26.254987] pcieport 0000:00:04.0: setting latency timer to 64
    [ 26.255045] pcieport 0000:00:04.0: irq 42 for MSI/MSI-X
    [ 26.255142] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
    [ 26.255177] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 26.255212] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
    [ 26.255257] pcieport 0000:00:04.0: Signaling PME through PCIe PME interrupt
    [ 26.255291] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 26.255327] pcie_pme 0000:00:04.0:pcie01: service driver pcie_pme loaded
    [ 26.255434] ERST: Table is not found!
    [ 26.255511] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 26.255875] Linux agpgart interface v0.103
    [ 26.255970] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 26.256358] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 26.256395] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 26.256512] mousedev: PS/2 mouse device common for all mice
    [ 26.256588] rtc_cmos 00:05: RTC can wake from S4
    [ 26.256715] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 26.256781] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 26.256827] cpuidle: using governor ladder
    [ 26.256868] cpuidle: using governor menu
    [ 26.257182] TCP cubic registered
    [ 26.257413] NET: Registered protocol family 10
    [ 26.258198] NET: Registered protocol family 17
    [ 26.258233] Registering the dns_resolver key type
    [ 26.258395] PM: Hibernation image not present or could not be loaded.
    [ 26.258450] registered taskstats version 1
    [ 26.259761] rtc_cmos 00:05: setting system clock to 2012-12-22 12:06:13 UTC (1356177973)
    [ 26.261125] Initializing network drop monitor service
    [ 26.263013] Freeing unused kernel memory: 732k freed
    [ 26.263239] Write protecting the kernel read-only data: 8192k
    [ 26.272919] Freeing unused kernel memory: 1888k freed
    [ 26.277038] Freeing unused kernel memory: 696k freed
    [ 26.303407] systemd-udevd[37]: starting version 194
    [ 27.541378] Refined TSC clocksource calibration: 3593.465 MHz.
    [ 27.541426] Switching to clocksource tsc
    [ 30.186206] HDA Intel 0000:00:01.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
    [ 30.186313] HDA Intel 0000:00:01.1: irq 43 for MSI/MSI-X
    [ 30.186378] HDA Intel 0000:00:01.1: setting latency timer to 64
    [ 30.191054] usbcore: registered new interface driver usbfs
    [ 30.191133] usbcore: registered new interface driver hub
    [ 30.197110] SCSI subsystem initialized
    [ 30.216692] usbcore: registered new device driver usb
    [ 30.220148] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 30.232290] input: PC Speaker as /devices/platform/pcspkr/input/input0
    [ 30.234124] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    [ 30.239267] libata version 3.00 loaded.
    [ 30.244294] ACPI: acpi_idle registered with cpuidle
    [ 30.246226] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
    [ 30.246282] ACPI: Power Button [PWRB]
    [ 30.246380] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [ 30.246418] ACPI: Power Button [PWRF]
    [ 30.249692] e1000e: Intel(R) PRO/1000 Network Driver - 1.3.10-k2
    [ 30.249737] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [ 30.249802] e1000e 0000:01:00.0: Disabling ASPM L0s L1
    [ 30.249846] e1000e 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 30.249902] e1000e 0000:01:00.0: setting latency timer to 64
    [ 30.250227] e1000e 0000:01:00.0: irq 44 for MSI/MSI-X
    [ 30.250263] e1000e 0000:01:00.0: irq 45 for MSI/MSI-X
    [ 30.250307] e1000e 0000:01:00.0: irq 46 for MSI/MSI-X
    [ 30.252812] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 30.252873] r8169 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 30.252954] r8169 0000:02:00.0: setting latency timer to 64
    [ 30.253001] r8169 0000:02:00.0: (unregistered net_device): unknown MAC, using family default
    [ 30.253103] r8169 0000:02:00.0: irq 47 for MSI/MSI-X
    [ 30.253760] r8169 0000:02:00.0: eth0: RTL8168b/8111b at 0xffffc9000187e000, 94:de:80:06:0b:c2, XID 0c900800 IRQ 47
    [ 30.253799] r8169 0000:02:00.0: eth0: jumbo features [frames: 4080 bytes, tx checksumming: ko]
    [ 30.255615] sata_sil 0000:03:06.0: version 2.4
    [ 30.255694] sata_sil 0000:03:06.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [ 30.255763] sata_sil 0000:03:06.0: Applying R_ERR on DMA activate FIS errata fix
    [ 30.259490] scsi0 : sata_sil
    [ 30.262529] scsi1 : sata_sil
    [ 30.265318] scsi2 : sata_sil
    [ 30.268147] scsi3 : sata_sil
    [ 30.268259] ata1: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe980080 irq 20
    [ 30.268301] ata2: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe9800c0 irq 20
    [ 30.268350] ata3: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe980280 irq 20
    [ 30.268389] ata4: SATA max UDMA/100 mmio m1024@0xfe980000 tf 0xfe9802c0 irq 20
    [ 30.375388] e1000e 0000:01:00.0: eth1: (PCI Express:2.5GT/s:Width x1) 68:05:ca:0c:a8:da
    [ 30.375437] e1000e 0000:01:00.0: eth1: Intel(R) PRO/1000 Network Connection
    [ 30.375481] e1000e 0000:01:00.0: eth1: MAC: 3, PHY: 8, PBA No: E46981-007
    [ 30.620035] ata1: SATA link down (SStatus 0 SControl 310)
    [ 30.970035] ata2: SATA link down (SStatus 0 SControl 310)
    [ 31.320029] ata3: SATA link down (SStatus 0 SControl 310)
    [ 31.670023] ata4: SATA link down (SStatus 0 SControl 310)
    [ 31.674284] HDMI status: Pin=3 Presence_Detect=0 ELD_Valid=0
    [ 31.674524] HDMI: no space for converter 10
    [ 31.674615] HDMI: no space for converter 12
    [ 31.674967] input: HD-Audio Generic HDMI/DP as /devices/pci0000:00/0000:00:01.1/sound/card0/input3
    [ 31.675144] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [ 31.776299] xhci_hcd 0000:00:10.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.776372] xhci_hcd 0000:00:10.0: setting latency timer to 64
    [ 31.776418] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 31.776483] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    [ 31.776563] QUIRK: Enable AMD PLL fix
    [ 31.776792] xhci_hcd 0000:00:10.0: irq 18, io mem 0xfeb4a000
    [ 31.776885] xhci_hcd 0000:00:10.0: irq 48 for MSI/MSI-X
    [ 31.776920] xhci_hcd 0000:00:10.0: irq 49 for MSI/MSI-X
    [ 31.777146] xHCI xhci_add_endpoint called for root hub
    [ 31.777190] xHCI xhci_check_bandwidth called for root hub
    [ 31.777261] hub 1-0:1.0: USB hub found
    [ 31.777297] hub 1-0:1.0: 2 ports detected
    [ 31.777433] xhci_hcd 0000:00:10.0: xHCI Host Controller
    [ 31.777473] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
    [ 31.780285] xHCI xhci_add_endpoint called for root hub
    [ 31.780329] xHCI xhci_check_bandwidth called for root hub
    [ 31.780399] hub 2-0:1.0: USB hub found
    [ 31.780436] hub 2-0:1.0: 2 ports detected
    [ 31.780543] xhci_hcd 0000:00:10.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.780600] xhci_hcd 0000:00:10.1: setting latency timer to 64
    [ 31.780635] xhci_hcd 0000:00:10.1: xHCI Host Controller
    [ 31.780673] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
    [ 31.780929] xhci_hcd 0000:00:10.1: irq 17, io mem 0xfeb48000
    [ 31.781018] xhci_hcd 0000:00:10.1: irq 50 for MSI/MSI-X
    [ 31.781053] xhci_hcd 0000:00:10.1: irq 51 for MSI/MSI-X
    [ 31.781245] xHCI xhci_add_endpoint called for root hub
    [ 31.781289] xHCI xhci_check_bandwidth called for root hub
    [ 31.781358] hub 3-0:1.0: USB hub found
    [ 31.781393] hub 3-0:1.0: 2 ports detected
    [ 31.781502] xhci_hcd 0000:00:10.1: xHCI Host Controller
    [ 31.781554] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 4
    [ 31.784397] xHCI xhci_add_endpoint called for root hub
    [ 31.784430] xHCI xhci_check_bandwidth called for root hub
    [ 31.784493] hub 4-0:1.0: USB hub found
    [ 31.784540] hub 4-0:1.0: 2 ports detected
    [ 31.785260] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.785314] ehci_hcd 0000:00:12.2: EHCI Host Controller
    [ 31.785363] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 5
    [ 31.785405] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 31.785467] ehci_hcd 0000:00:12.2: debug port 1
    [ 31.785526] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfeb4f000
    [ 31.800124] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    [ 31.800381] hub 5-0:1.0: USB hub found
    [ 31.800426] hub 5-0:1.0: 5 ports detected
    [ 31.800575] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [ 31.800648] ehci_hcd 0000:00:13.2: EHCI Host Controller
    [ 31.800698] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 6
    [ 31.800740] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    [ 31.800804] ehci_hcd 0000:00:13.2: debug port 1
    [ 31.800861] ehci_hcd 0000:00:13.2: irq 17, io mem 0xfeb4d000
    [ 31.820016] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    [ 31.820236] hub 6-0:1.0: USB hub found
    [ 31.820271] hub 6-0:1.0: 5 ports detected
    [ 31.820930] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.820996] ohci_hcd 0000:00:12.0: OHCI Host Controller
    [ 31.821039] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 7
    [ 31.821105] ohci_hcd 0000:00:12.0: irq 18, io mem 0xfeb50000
    [ 31.884261] hub 7-0:1.0: USB hub found
    [ 31.884311] hub 7-0:1.0: 5 ports detected
    [ 31.884462] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    [ 31.884533] ohci_hcd 0000:00:13.0: OHCI Host Controller
    [ 31.884580] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 8
    [ 31.884644] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfeb4e000
    [ 31.944186] hub 8-0:1.0: USB hub found
    [ 31.944235] hub 8-0:1.0: 5 ports detected
    [ 31.944362] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    [ 31.944416] ohci_hcd 0000:00:14.5: OHCI Host Controller
    [ 31.944452] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 9
    [ 31.944510] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfeb4c000
    [ 32.004245] hub 9-0:1.0: USB hub found
    [ 32.004283] hub 9-0:1.0: 2 ports detected
    [ 32.004581] ahci 0000:00:11.0: version 3.0
    [ 32.004627] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    [ 32.004727] ahci 0000:00:11.0: irq 52 for MSI/MSI-X
    [ 32.004892] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 7 ports 6 Gbps 0xfd impl SATA mode
    [ 32.004931] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    [ 32.009602] scsi4 : ahci
    [ 32.009824] scsi5 : ahci
    [ 32.010050] scsi6 : ahci
    [ 32.010213] scsi7 : ahci
    [ 32.010363] scsi8 : ahci
    [ 32.010529] scsi9 : ahci
    [ 32.010677] scsi10 : ahci
    [ 32.010837] scsi11 : ahci
    [ 32.011601] ata5: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51100 irq 52
    [ 32.012773] ata6: DUMMY
    [ 32.012806] ata7: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51200 irq 52
    [ 32.012845] ata8: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51280 irq 52
    [ 32.012893] ata9: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51300 irq 52
    [ 32.012930] ata10: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51380 irq 52
    [ 32.012969] ata11: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51400 irq 52
    [ 32.013016] ata12: SATA max UDMA/133 abar m2048@0xfeb51000 port 0xfeb51480 irq 52
    [ 32.120025] usb 5-3: new high speed USB device number 2 using ehci_hcd
    [ 32.274376] Initializing USB Mass Storage driver...
    [ 32.274825] scsi12 : usb-storage 5-3:1.0
    [ 32.274957] usbcore: registered new interface driver usb-storage
    [ 32.274991] USB Mass Storage support registered.
    [ 32.560018] ata7: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 32.560079] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560137] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 32.560196] ata10: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560242] ata11: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 32.560299] ata12: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 32.560580] ata7.00: ATA-9: WDC WD20EFRX-68AX9N0, 80.00A80, max UDMA/133
    [ 32.560626] ata7.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.560947] ata11.00: ATA-8: ST2000DL003-9VT166, CC32, max UDMA/133
    [ 32.560993] ata11.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 32.561209] ata7.00: configured for UDMA/133
    [ 32.561773] ata11.00: configured for UDMA/133
    [ 32.563779] ata8.00: ATA-8: WDC WD20EARS-00MVWB0, 51.0AB51, max UDMA/133
    [ 32.563814] ata8.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.564285] ata5.00: ATA-6: WDC WD2500JD-00HBB0, 08.02D08, max UDMA/133
    [ 32.564327] ata5.00: 488397168 sectors, multi 16: LBA48
    [ 32.566291] ata10.00: ATA-8: SAMSUNG HD204UI, 1AQ10001, max UDMA/133
    [ 32.566329] ata10.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.566492] ata12.00: ATA-8: SAMSUNG HD204UI, 1AQ10001, max UDMA/133
    [ 32.566526] ata12.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 32.567782] ata8.00: configured for UDMA/133
    [ 32.569759] ata5.00: configured for UDMA/133
    [ 32.569893] scsi 4:0:0:0: Direct-Access ATA WDC WD2500JD-00H 08.0 PQ: 0 ANSI: 5
    [ 32.570286] scsi 6:0:0:0: Direct-Access ATA WDC WD20EFRX-68A 80.0 PQ: 0 ANSI: 5
    [ 32.570502] scsi 7:0:0:0: Direct-Access ATA WDC WD20EARS-00M 51.0 PQ: 0 ANSI: 5
    [ 32.572474] ata10.00: configured for UDMA/133
    [ 32.572682] ata12.00: configured for UDMA/133
    [ 32.660017] usb 7-4: new low speed USB device number 2 using ohci_hcd
    [ 32.868292] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb7/7-4/7-4:1.0/input/input4
    [ 32.868415] generic-usb 0003:046D:C30F.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech Logitech USB Keyboard] on usb-0000:00:12.0-4/input0
    [ 32.881147] input: Logitech Logitech USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb7/7-4/7-4:1.1/input/input5
    [ 32.881240] generic-usb 0003:046D:C30F.0002: input,hidraw1: USB HID v1.10 Device [Logitech Logitech USB Keyboard] on usb-0000:00:12.0-4/input1
    [ 32.881304] usbcore: registered new interface driver usbhid
    [ 32.881338] usbhid: USB HID core driver
    [ 33.271305] scsi 12:0:0:0: Direct-Access SanDisk Cruzer Blade 1.00 PQ: 0 ANSI: 2
    [ 33.280033] ata9: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 33.305314] ata9.00: ATA-8: WDC WD20EARS-00MVWB0, 51.0AB51, max UDMA/133
    [ 33.305349] ata9.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 33.314972] ata9.00: configured for UDMA/133
    [ 33.315074] scsi 8:0:0:0: Direct-Access ATA WDC WD20EARS-00M 51.0 PQ: 0 ANSI: 5
    [ 33.315323] scsi 9:0:0:0: Direct-Access ATA SAMSUNG HD204UI 1AQ1 PQ: 0 ANSI: 5
    [ 33.315536] scsi 10:0:0:0: Direct-Access ATA ST2000DL003-9VT1 CC32 PQ: 0 ANSI: 5
    [ 33.315746] scsi 11:0:0:0: Direct-Access ATA SAMSUNG HD204UI 1AQ1 PQ: 0 ANSI: 5
    [ 33.333300] sd 11:0:0:0: [sdh] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333360] sd 7:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333415] sd 10:0:0:0: [sdg] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333463] sd 9:0:0:0: [sdf] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333524] sd 8:0:0:0: [sde] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333575] sd 6:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.81 TiB)
    [ 33.333613] sd 6:0:0:0: [sdb] 4096-byte physical blocks
    [ 33.333753] sd 10:0:0:0: [sdg] Write Protect is off
    [ 33.333787] sd 10:0:0:0: [sdg] Mode Sense: 00 3a 00 00
    [ 33.333950] sd 8:0:0:0: [sde] Write Protect is off
    [ 33.333984] sd 8:0:0:0: [sde] Mode Sense: 00 3a 00 00
    [ 33.334046] sd 9:0:0:0: [sdf] Write Protect is off
    [ 33.334079] sd 9:0:0:0: [sdf] Mode Sense: 00 3a 00 00
    [ 33.334138] sd 7:0:0:0: [sdc] Write Protect is off
    [ 33.334172] sd 7:0:0:0: [sdc] Mode Sense: 00 3a 00 00
    [ 33.334224] sd 11:0:0:0: [sdh] Write Protect is off
    [ 33.334257] sd 11:0:0:0: [sdh] Mode Sense: 00 3a 00 00
    [ 33.334358] sd 10:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334526] sd 6:0:0:0: [sdb] Write Protect is off
    [ 33.334561] sd 6:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 33.334629] sd 11:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334808] sd 12:0:0:0: [sdd] 7837696 512-byte logical blocks: (4.01 GB/3.73 GiB)
    [ 33.334865] sd 7:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.334982] sd 9:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335109] sd 8:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335222] sd 6:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.335777] sd 4:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 33.335862] sd 12:0:0:0: [sdd] Write Protect is off
    [ 33.335896] sd 12:0:0:0: [sdd] Mode Sense: 03 00 00 00
    [ 33.336251] sd 4:0:0:0: [sda] Write Protect is off
    [ 33.336285] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 33.336346] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 33.336757] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.336792] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.339872] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.339909] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.344926] sdd: sdd1
    [ 33.347492] sd 12:0:0:0: [sdd] No Caching mode page present
    [ 33.347539] sd 12:0:0:0: [sdd] Assuming drive cache: write through
    [ 33.347574] sd 12:0:0:0: [sdd] Attached SCSI removable disk
    [ 33.376773] sde: sde1
    [ 33.377154] sd 8:0:0:0: [sde] Attached SCSI disk
    [ 33.377403] sdh: sdh1
    [ 33.377691] sd 11:0:0:0: [sdh] Attached SCSI disk
    [ 33.380652] sdg: sdg1
    [ 33.381033] sd 10:0:0:0: [sdg] Attached SCSI disk
    [ 33.395456] sdf: sdf1
    [ 33.395801] sd 9:0:0:0: [sdf] Attached SCSI disk
    [ 33.397545] sdb: sdb1
    [ 33.397930] sd 6:0:0:0: [sdb] Attached SCSI disk
    [ 33.435935] sda: sda1 sda2 < sda5 sda6 sda7 sda8 >
    [ 33.436519] sd 4:0:0:0: [sda] Attached SCSI disk
    [ 33.439473] mdadm: sending ioctl 800c0910 to a partition!
    [ 33.439519] mdadm: sending ioctl 800c0910 to a partition!
    [ 33.439696] mdadm: sending ioctl 1261 to a partition!
    [ 33.439728] mdadm: sending ioctl 1261 to a partition!
    [ 33.442061] mdadm: sending ioctl 1261 to a partition!
    [ 33.442108] mdadm: sending ioctl 1261 to a partition!
    [ 33.442467] mdadm: sending ioctl 1261 to a partition!
    [ 33.442502] mdadm: sending ioctl 1261 to a partition!
    [ 33.443944] mdadm: sending ioctl 1261 to a partition!
    [ 33.443981] mdadm: sending ioctl 1261 to a partition!
    [ 33.815407] sdc: sdc1
    [ 33.815744] sd 7:0:0:0: [sdc] Attached SCSI disk
    [ 33.819038] md: bind<sdg1>
    [ 33.823005] md: bind<sdh1>
    [ 33.830376] md: bind<sde1>
    [ 33.832743] md: raid0 personality registered for level 0
    [ 33.833265] bio: create slab <bio-1> at 1
    [ 33.833302] md/raid0:md127: looking at sdh1
    [ 33.833336] md/raid0:md127: comparing sdh1(3907026944) with sdh1(3907026944)
    [ 33.833414] md/raid0:md127: END
    [ 33.833446] md/raid0:md127: ==> UNIQUE
    [ 33.833478] md/raid0:md127: 1 zones
    [ 33.833511] md/raid0:md127: looking at sdg1
    [ 33.833554] md/raid0:md127: comparing sdg1(3907026944) with sdh1(3907026944)
    [ 33.833623] md/raid0:md127: EQUAL
    [ 33.833655] md/raid0:md127: FINAL 1 zones
    [ 33.833689] md/raid0:md127: done.
    [ 33.833733] md/raid0:md127: md_size is 7814053888 sectors.
    [ 33.833766] ******* md127 configuration *********
    [ 33.833798] zone0=[sdg1/sdh1/]
    [ 33.833947] zone offset=0kb device offset=0kb size=3907026944kb
    [ 33.833988] **********************************
    [ 33.833992]
    [ 33.835269] md127: detected capacity change from 0 to 4000795590656
    [ 33.838003] md: bind<sdb1>
    [ 33.842049] md: bind<sdf1>
    [ 33.844170] md127: unknown partition table
    [ 33.924815] md: bind<sdc1>
    [ 34.090011] raid6: int64x1 1791 MB/s
    [ 34.260030] raid6: int64x2 2819 MB/s
    [ 34.430025] raid6: int64x4 2663 MB/s
    [ 34.600019] raid6: int64x8 2518 MB/s
    [ 34.770025] raid6: sse2x1 5795 MB/s
    [ 34.940016] raid6: sse2x2 8139 MB/s
    [ 35.110014] raid6: sse2x4 10354 MB/s
    [ 35.110047] raid6: using algorithm sse2x4 (10354 MB/s)
    [ 35.110907] async_tx: api initialized (async)
    [ 35.111085] xor: automatically using best checksumming function: generic_sse
    [ 35.160010] generic_sse: 5798.000 MB/sec
    [ 35.160043] xor: using function: generic_sse (5798.000 MB/sec)
    [ 35.161180] md: raid6 personality registered for level 6
    [ 35.161216] md: raid5 personality registered for level 5
    [ 35.161249] md: raid4 personality registered for level 4
    [ 35.162194] md/raid:md126: device sdc1 operational as raid disk 3
    [ 35.162258] md/raid:md126: device sdf1 operational as raid disk 1
    [ 35.162302] md/raid:md126: device sdb1 operational as raid disk 0
    [ 35.162337] md/raid:md126: device sde1 operational as raid disk 2
    [ 35.162969] md/raid:md126: allocated 4272kB
    [ 35.164323] md/raid:md126: raid level 5 active with 4 out of 4 devices, algorithm 2
    [ 35.164368] RAID conf printout:
    [ 35.164401] --- level:5 rd:4 wd:4
    [ 35.164434] disk 0, o:1, dev:sdb1
    [ 35.164472] disk 1, o:1, dev:sdf1
    [ 35.164514] disk 2, o:1, dev:sde1
    [ 35.164547] disk 3, o:1, dev:sdc1
    [ 35.164615] md126: detected capacity change from 0 to 6000789159936
    [ 35.210084] md126: unknown partition table
    [ 37.116016] device-mapper: uevent: version 1.0.3
    [ 37.116160] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: [email protected]
    [ 48.147927] systemd[1]: systemd 194 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    [ 48.148113] systemd[1]: Running in initial RAM disk.
    [ 48.148564] systemd[1]: Set hostname to <archboot>.
    [ 48.148763] systemd[1]: Initializing machine ID from random generator.
    [ 48.163323] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 48.163530] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 48.163664] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 48.163714] systemd[1]: Starting Remote File Systems.
    [ 48.164039] systemd[1]: Reached target Remote File Systems.
    [ 48.164095] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 48.164379] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 48.164429] systemd[1]: Starting Delayed Shutdown Socket.
    [ 48.164734] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 48.164802] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 48.165217] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 48.165268] systemd[1]: Starting Encrypted Volumes.
    [ 48.165538] systemd[1]: Reached target Encrypted Volumes.
    [ 48.165666] systemd[1]: Starting udev Kernel Socket.
    [ 48.165964] systemd[1]: Listening on udev Kernel Socket.
    [ 48.166045] systemd[1]: Starting udev Control Socket.
    [ 48.166338] systemd[1]: Listening on udev Control Socket.
    [ 48.166395] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 48.166498] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 48.166557] systemd[1]: Starting Swap.
    [ 48.166826] systemd[1]: Reached target Swap.
    [ 48.166869] systemd[1]: Starting Journal Socket.
    [ 48.167200] systemd[1]: Listening on Journal Socket.
    [ 48.167260] systemd[1]: Started File System Check on Root Device.
    [ 48.167303] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 48.168421] systemd[1]: Starting Load Kernel Modules...
    [ 48.170881] systemd[1]: Starting Setup Virtual Console...
    [ 48.173799] FS-Cache: Loaded
    [ 48.177917] systemd[1]: Mounting POSIX Message Queue File System...
    [ 48.179690] systemd[1]: Mounting Huge Pages File System...
    [ 48.180633] systemd[1]: Starting Apply Kernel Variables...
    [ 48.181486] systemd[1]: Started Set Up Additional Binary Formats.
    [ 48.181595] systemd[1]: Starting udev Kernel Device Manager...
    [ 48.184266] systemd[1]: Mounting Debug File System...
    [ 48.185010] systemd[1]: Starting udev Coldplug all Devices...
    [ 48.185722] systemd[1]: Starting Journal Service...
    [ 48.186733] systemd[1]: Started Journal Service.
    [ 48.187650] systemd[1]: Started Remount Root and Kernel File Systems.
    [ 48.187720] systemd[1]: Starting Local File Systems (Pre).
    [ 48.187982] systemd[1]: Reached target Local File Systems (Pre).
    [ 48.188037] systemd[1]: Mounting /tmp...
    [ 48.188726] systemd[1]: Starting Load Random Seed...
    [ 48.199278] systemd-udevd[1369]: starting version 194
    [ 48.259482] RPC: Registered named UNIX socket transport module.
    [ 48.259519] RPC: Registered udp transport module.
    [ 48.259552] RPC: Registered tcp transport module.
    [ 48.259595] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 48.264576] FS-Cache: Netfs 'nfs' registered for caching
    [ 48.270453] systemd-modules-load[1361]: Inserted module 'nfs'
    [ 48.275596] systemd-journald[1372]: Received SIGUSR1
    [ 48.653395] scsi_verify_blk_ioctl: 184 callbacks suppressed
    [ 48.653431] mdadm: sending ioctl 1261 to a partition!
    [ 48.653475] mdadm: sending ioctl 1261 to a partition!
    [ 48.653686] mdadm: sending ioctl 1261 to a partition!
    [ 48.653725] mdadm: sending ioctl 1261 to a partition!
    [ 94.390769] r8169 0000:02:00.0: eth0: link down
    [ 94.390805] r8169 0000:02:00.0: eth0: link down
    [ 94.391909] ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 96.827209] r8169 0000:02:00.0: eth0: link up
    [ 96.828288] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 107.460005] eth0: no IPv6 routers present
    and /proc/cpuinfo:
    processor : 0
    vendor_id : AuthenticAMD
    cpu family : 21
    model : 16
    model name : AMD A6-5400K APU with Radeon(tm) HD Graphics
    stepping : 1
    cpu MHz : 3593.482
    cache size : 1024 KB
    physical id : 0
    siblings : 1
    core id : 0
    cpu cores : 1
    apicid : 16
    initial apicid : 0
    fpu : yes
    fpu_exception : yes
    cpuid level : 13
    wp : yes
    flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rd

    itbane wrote:
    Sorry fore double-posting, but there's something new:
    At beginning, the PC continued booting after throwing this issue. But now, Booting sometimes just stops at the very moment when the CPU is not responding.
    ...sounds like a hardware problem to me given the sporadic nature.

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • Buttons not responding? Here is what I did.

    Okay, so your shiney new iPod Nano's buttons stop doing anything and even the cick-wheel gives up on you what do you do? This is what I did:
    1st Action) I checked out the online manual
    1st Result) Not much... all they had on there was the standard, '...Is the hold switch toggeled?..'
    2A) Did a little digging online to see if I'm the only one having this problem.)
    2R) Found out (by looking at this site alone) I'm not.
    3A) Actually 'Restored' my iPod... Not sure if this particular action had anything to do with it working again and I'm interested if this actually has any effect on the process as a whole.
    3R) It did what it was supposed to. Wiped that puppy clean, but the buttons still won't work.
    4A) Realized that most of the 'suggestions' I was receiving called for workng buttons to achieve the maximum effect... 4R) Uh HELLO they don't work that's why I'm here!!!
    --- THE GOOD PART ---
    After giving up all hope I come across this peiece of information that goes on to say that the 'Hold Switch' being toggeled on and off actually re-calibrates the buttons and click-wheel, and that if you are touching the click-wheel (even slightly) it could cause all buttons to not respond. AND (this is the part that noone else ever said) the best way to try and get the buttons to work again is to lay on a flat surface (table, desk, etc.) and then flip the 'Hold Switch.' If that doesn't work leave it lying there 'un-held' and press the 'Select Button' a few times. This is supposeed to re-align, re-calibrate the buttons all the way, not just the way the iPod reads the info they input.
    --- Thats All ---
    If this was helpful in anyway, or if you have questions/concerns/tips how-to not babble, please send me an e-mail at [email protected]
    HP aW205 (POS)   Windows 2000   It's a work in progress...

    er. try reseting it with holding menu and the center button. if this dosent even work try sending it to apple or bringing it to an apple store for an exchange.

  • How to track changes on the table not using triggers

    Hi,
    I would like to track DML changes on the tables. As I have many tables it is not efficient to write triggers.
    Is there any setup I can do at database level.
    I am using 11g R2.
    Thanks

    thanks fran.
    I would like to know old and new data in case of updates. This method will not show me.are you sure??
    SQL> sho parameter audit_trail
    NAME                                 TYPE        VALUE
    audit_trail                          string      DB, EXTENDED
    SQL> audit select, insert, update on fran.test1;
    AuditorÝa terminada correctamente.
    SQL> conn fran/fran
    Conectado.
    SQL> select * from test1;
    ninguna fila seleccionada
    SQL> insert into fran.test1 values('EX',2);
    1 fila creada.
    SQL> update fran.test1 set object_id=3 where object_id=2;
    1 fila actualizada.
    SQL> commit;
    Confirmaci¾n terminada.
    SQL> conn / as sysdba
    Conectado.
    SQL> select sqltext from aud$ where sqltext is not null;
    SQLTEXT
    select * from test1
    insert into fran.test1 values('EX',2)
    update fran.test1 set object_id=3 where object_id=2If you want more data, FGA is your goal
    I have read some where on flashback database ..
    would this create a replica table with old changesflashback database is to set the current data like in the past. I mean:
    SQL> conn / as sysdba
    Conectado.
    SQL> alter table fran.test1 enable row movement;
    Tabla modificada.
    SQL> drop table fran.test1;
    Tabla borrada.
    SQL> select * from fran.test1;
    select * from fran.test1
    ERROR en lÝnea 1:
    ORA-00942: la tabla o vista no existe
    SQL> flashback table fran.test1 to before drop;
    Flashback terminado.
    SQL> select * from fran.test1;
    OBJECT_NAME                    OBJECT_ID
    EX                             3

  • My JButton inside a JTable cell does not respond to clicks

    I have a Jtable which extends AbstractTableModel and uses an arraylist to fill the data in the model. The first column of this table is my button column. I have a class for my button coumn which is:
    class MyButtonCol extends AbstractCellEditor
            implements TableCellRenderer, TableCellEditor, ActionListenerMy button column class has getTableCellRendererComponent and getTableCellEditorComponent. My problem is that the button shows on the table but it does not respond to clicks. Any help will be appreciated.

    That does not seem to be the problem. I have the method in my class but it still does not respond to clicks. This is my AbstractTableModel class:
    class WorklisttableModel extends AbstractTableModel{
         protected static List<Worklist> transaction;
         protected String[] columnNames = new String[]{" ", "Modality", "Status","Patient name",
                "Patient ID","Date of birth","Study date","Referring physician","Description"};
         public WorklisttableModel(){
             transaction = new ArrayList<Worklist>();
             fillmodel();
          @Override
          public boolean isCellEditable(int row, int column) {
                return false;
          @Override
          public int getColumnCount() {
                return 9;
          @Override
          public int getRowCount() {
                return (transaction!=null) ? transaction.size() : 0;
          @Override
          public Object getValueAt(int rowIndex, int columnIndex) {
              if(rowIndex < 0 || rowIndex>=getRowCount())
                  return" ";
                  Worklist row = (Worklist)transaction.get(rowIndex);
                  switch(columnIndex){
                      //case 0:return "";
                      case 1:return " "+row.getModality();
                      case 2: return row.getStatus();
                      case 3:return row.getName();
                      case 4:return row.getID();
                      case 5:return row.getDOB();
                      case 6:return row.getStudyDate();
                      case 7:return row.getReferringP();
                      case 8:return row.getDescription();
               return " ";
          public Class getColumnClass(int col){
              return getValueAt(0,col).getClass();
          @Override
          public String getColumnName(int columnIndex) {
                return columnNames[ columnIndex ];
          protected void fillmodel(){
              transaction.add(new Worklist("","US","active","Simpson","1232222",new java.util.Date(73,8,12),new Date(18,8,13),"Dr. Francis","Brain"));
              transaction.add(new Worklist("","US","inactive","Dodggy","3498222",new java.util.Date(83,8,12),new Date(16,8,17),"Dr. Francis","Heart"));
              transaction.add(new Worklist("","CT","active","Williams","7892222",new java.util.Date(98,9,5),new Date(19,2,13),"Dr. Evans","Dental"));
              transaction.add(new Worklist("","MR","inactive","Brian","89765412",new java.util.Date(65,5,23),new Date(19,1,18),"Dr. Evans","Brain"));
              Collections.sort( transaction, new Comparator<Worklist>(){
              public int compare( Worklist a, Worklist b) {
                  return a.getName().compareTo( b.getName() );
    }

  • Date and time formatting not responding

    I'm trying to total a column based on a date or date window.  My formula looks like this.
    SUMIF(Date,B1,'$')
    I have 2 tables.  The table with the formula references the other table, and compares Date in table 1 to B1 in table 2.  B1 is a date I enter to see a specific total for that day only.  It only works if all the times of the date window are 12:00:00 AM.  , and the B1 times are the same ..... Even though times are unimportant to the totals I need, and both are formatted to "none" and do. It show.
    So, how do I total a specific date with various times, but all the same date?  I have a sample file if it will make more sense to see it.
    Not that it matters, but I am doing this on an iPad, but the formula still did not respond correctly on Mavericks either.  Unless I set all times equal to B1.
    Sorry if I didn't explain very well.  I'm new at this formula thing. 
    Thanks
    Jeff

    Hi Jeff,
    The entered date in B1 will have it's time part set to 00:00:00 (midnight, at the beginning of that date). To use SUMIF to filter the date and time values in Table 1, you would need to write a single condition that would accept all date and time values falling on the date in BI, and reject all date and time values falling on days before or after that date.
    SUMIFS allows you to specify multiple conditions, all of which must be met to acept a test value and add its associated sum value to the total. Here's an example:
    The formula in B1 of Table 2 is shown below:
    B2: =SUMIFS(Table 1 :: B,Table 1 :: $A,">="&B1,Table 1 :: $A,"<"&(B1+1))
    Syntax: =SUMIFS(sum-values,test-values,condition,test-values,ˆcondition)
    Regards,
    Barry

  • CLI0615E  Error receiving from socket, server is not responding.

    We recently changed a web application using DB2 5.2 tables from ODBC to JDBC. We are using the COM.ibm.db2.jdbc.net.driver. We are using a
    connection pool and running on iPlanet.
    We are getting intermittant "CLI0615E Error receiving from socket, server is not responding errors". We have looked in the JDBC forum and DB2 support and cannot find a reasonable answer to this problem. It is NOT always on sql statements that take a long time to execute, so I don't think it is a timeout issue.
    I read something about "stale connections". Does anyone know how to check to see if this is a problem?
    When we first converted the app, we had a lot of problems also with "invalid handle or statement is closed" which we have determined was being caused by the user submitting the page again before it had time to finish the first time. We have put in javascript code to prevent multiple submits. Could this server not responding problem be caused by double submits that we have not located yet?
    The error is NOT occuring on any one page, and the same page will run correctly once and the next time throw this error.
    Any suggestions would be greatly appreciated.
    Thanks.
    [29/Apr/2003:11:00:20] info (42196): COM.ibm.db2.jdbc.net.DB2Exception: [IBM][JDBC Driver] CLI0615E Error receiving from socket, server is not responding. SQLSTATE=08S01
         at COM.ibm.db2.jdbc.net.SQLExceptionGenerator.throwReceiveError(SQLExceptionGenerator.java(Compiled Code))
         at COM.ibm.db2.jdbc.net.DB2Request.receive(DB2Request.java(Compiled Code))
         at COM.ibm.db2.jdbc.net.DB2Request.sendAndRecv(DB2Request.java(Compiled Code))
         at COM.ibm.db2.jdbc.net.DB2RowObject.next(DB2RowObject.java(Compiled Code))
         at COM.ibm.db2.jdbc.net.DB2ResultSet.next(DB2ResultSet.java(Compiled Code))
         at bom.Bom.getDefs(Bom.java(Compiled Code))
         at jsps.bbapps._eng._ENGJGLT0_jsp._jspService(_ENGJGLT0_jsp.java(Compiled Code))
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:897)
         at com.iplanet.server.http.servlet.NSServletRunner.Service(NSServletRunner.java:464)

    hi,
    lemme try to tell u what i thinkk..i dont think its' a solution
    Usually this error code means that there was some problem while the driver tried establishsing a socket connection to the remote server. You could very well avoid this by tracking out what is preventing the socket connection.. it may be network congestion or some other onfiguration problems with the network, or with the DB2 server...
    But if the same application could work perfectly with jdbc-odbc driver in same environment,then it needs some attention.either the ibm driver isn't throwing the error as expected by the iplanet or iplanet isn't acting as needed when such an error is thrown.
    contact them and they may provide and explanation..
    wishes,
    Jer

  • SSRS Error: The timeout period elapsed prior to completion of the operation or the server is not responding

    Hi, I am using SQL Server 2008 R2 Stored Procedure as my dataset and running yearly sales report in SSRS 2008 R2. The weird thing is in SSMS the stored procedure does not take more than 10 seconds to retrieve data and the report also works
    fine in BIDS, but from ReportServer if I were to pick an year from 1990 - 2014 they all work fine anything prior to 1990 either shows up fine or throws the below error.
    SSRS Error:
    An error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'QueryDS'. (rsErrorExecutingCommand)
    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated.
    I checked ReportServerTemDb tables and no table seems to be really large to cause a problem. This report "KeepTogether" property is TRUE.
    Thanks in advance.............
    Ione

    Was able to fix this with the help of
    msdn documentation. The query dataset was set to 5 and this was somebody else's report I was fixing and I usually have my report template set to 0 so it took me a while to get there.
    Ione

  • ISight V.3 - user did not respond - US to UK

    Hi there, I am beset with the same problems as so many of you are it seems with ISight. I am trying to video conference with someone across the Atlantic with no joy. I use a DSL line here at my office, have bonjour as well as AIM open and can ichat fine with them and video with others in my office (at times), but not with London (I am in NY). It rings , Iaccept and then nothing, and just gently sits there and declares that I did not respond. What should I do? The person I am talking to has one of the new intel MacBook Pros.
    Please anyone? help

    hi Lemaxster,
    Welcome To The Apple Discussion Pages.
    It sounds like there is no porblem with the ports iChat needs to do Bonjour chats if that is what you are describing.
    It looks like it is the other ports the AV side needs to have open that may be causing you problems.
    Do you know if these ports are open in any modem or router ?
    5060, 5190, 5678, 16384-16403 ?
    Do you know what method of opening the ports is being used ?
    Can you get to any of the accounts in TAble 1 here
    http://www.ralphjohnsuk.dsl.pipex.com/ContactTesters.html ?
    What about any of the people in Table 2 ?
    12:17 AM Thursday; May 18, 2006

  • DROID X not responding

    This afternoon I had an unnerving experience with my DROID X. I set it down on the table with about half a charge. I came back a half hour later and tried to wake it up, but it was not responding. No matter how many times I pushed the power button, it would not clear the blank screen, open the slider, and let me wake it up. I plugged it into the charger thinking it may have a dead battery, still no response, no indication that it was charging. I left it that way for 15 min or so, and it came to life. This is what we used to call in the old days before Microsoft - a bug (not a "feature “). Has anyone else seen their DROID X go AWOL without explanation?

    I know this sounds silly, but, if you power it down and take the battery out for 30 seconds it can reset the registers and such, You may want to randomly restart your device before it goes haywire like this. I had similar issues, and surprisingly it actually works.

  • SQL*Plus Not Responding

    I have a query in 8i that sums the pages entered into a database by month as follows:
    SELECT DISTINCT c.study
    , DECODE(r.pass_one_by, NULL, SUBSTR(s.entered_by, 5), SUBSTR(r.pass_one_by, 5)) p1_by
    ,SUM(DECODE(TO_CHAR(TRUNC(r.pass_one_ts),'MON'),'JAN',1,NULL,DECODE(TO_CHAR(TRUNC(s.received_dci_entry_ts),'MON'),'JAN',1),0)) JAN
    ,SUM(DECODE(TO_CHAR(TRUNC(r.pass_one_ts),'MON'),'FEB',1,NULL,DECODE(TO_CHAR(TRUNC(s.received_dci_entry_ts),'MON'),'FEB',1),0)) FEB
    --- etc
    FROM received_dcms r, received_dcis s, clinical_studies c
    WHERE r.clinical_study_id = s.clinical_study_id
    AND s.clinical_study_id = c.clinical_study_id
    AND r.document_number = s.document_number
    ---other obvious joins
    I need the received_dcis table to capture information for blank pages, but this table is heavily used (updated) and the report hangs when it's included. In fact, the Windows Task Manager say that SQL*Plus is "Not Responding". Is there any way around this?
    Thanks,
    Dane

    Hi!
    Quite possible SQL*Plus is working fine, but the problem is with the query itself. When running the report check v$session, v$sql & v$sess_io views. If v$sess_io reports changing consistent_gets & physical_reads, then your query is reading data. Check explain plan, run tkprof, etc. and make sure that query is properly tuned and used best execution plan possible.
    Regards,
    Andrew Velitchko
    BrainBench MVP for Developer/2000
    http://www.brainbench.com

  • FORM NOT RESPONDING AFTER UPGRADING TO ORACLE 10GR2 DATABASE

    Hi All
    We are upgrading from Oracle 9i (single AIX Server) to Oracle 10gR2 on HACMP of 2 AIX 5.3 Server.
    Our application is in Forms 9.0.4 deployed into iAS 10.1.2.0.2.
    There is a custom Login Form that checks for UserID and Password and validate
    to Authentication Table.
    This form works fine in Oracle 9i but doesn't work in Oracle 10g (After
    Upgrading).
    On the Login Form, this happen :
    After user enter UserID the forms query the DB and display UserName succesfully,
    but after enter Password and press OK, it does not responding,
    takes forever to complete..
    Additional information :
    Before :          After :
    Oracle 9i          Oracle 10gR2
    SIngle AIX Server     Two AIX Server in HACMP
    Charset : AL16UTF16     WE8ISO....
    Given the information above, What could possibly cause this problem ?
    Thank you for your help,
    xtanto.

    xtanto,
    not sure what causes the problem, but my suggestion is to check the password query.
    To give you another hint: Your way of authenticating users is not hack safe. As you describe that providing a user ID will show the name first before I have to provide the password, it allows me to fish for valid user accounts. The recommended way of using login screens is to have the user enetring userid and password in teh same screen and use both information to authenticate the user in a single query.
    Frank

Maybe you are looking for

  • Sales order link to MRP run

    Dear gurus, I have one query regarding sales order link to MRP run. I had created sales order by VA01 & also independent requirement in MD61. Both are acknowledged in MRP run.I know the requirement in MD61 transferred for MRP run(MD02/MDBT/MD01). But

  • Issues with loading slideshows

    I have built a site for a client using Muse and the client is experiencing problems with a couple of slideshows that won't load.  I'm not having this issue using either Safari or Firefox, and there doesn't appear to be any problems using separate des

  • LOV Query problem

    I have a very huge and a lenghty LOV Query . I am using 6i builder and when i save the module and try to reopen it , Only 3/4th of the LOV query is available and the remaining disappears . I can compile this in 6i by copying the query again but it cr

  • Question related to SAP Tables

    Hi all,    I am trying to get the list of all tables in my SAP instance by viewing the contents of the table DD02L (List of tables) . I see that the no of entries is more than 3 lakhs when i click on "Number of Entries" button. Since this does not sh

  • Default WBS element

    Hi We have an issue here and any help would be appreicated. The requirement is to default a WBS element whenever there is a posting to a particular GL account in the company code. FI substitution rule has been setup for field BSEG-PROJK and through a