Hybrid queue?

1. I had posted a question on how to do the callback with a sp to auto-dequeue. We have it working with the OEM scheduler and set the deque option's WAIT parm to FOREVER. This leaves an event handler/listener job running out there waiting/listening for more messages to process and call our dequeue job(which parses a clob out to the db). So that works nice but it's single threaded. Is there any parameters to set somewhere to tell it to spawn another thread to process multiple messages at the same time?
2. We were also able to create a 2nd type of queue. This uses the demo_queue example out there on the web to create a true queue. IE: it waits and processes whatever is in the queue automatically every 5 seconds. The interesting thing about this version of a queue is that it seems to spawn 10 threads to handle the processing load of the messages that piled up in this bucket since the last run 5 seconds ago.
What we would like is to combine the best of both worlds: We want a process to wait forever listening for more messages being enqueued and automatically fire off the dequeue like in #1 above but if say 1000 customers enqueue something within a few seconds of each other, have oracle auto-magically spawn say 100 threads so none of them are noticing any wait time. A hybrid if you will.
Is this possible and if so, how?
Thanks in advance for your replies.
Dave

Here's what we are trying to do but the deque procedure parms are not keeping it pinned up in memory "listening"(if that's accurate). It works and opens up 10 threads when we run the TESTER(see section below) but there's a wait delay before whatever it is POLLS the queue to see if it's supposed to fire itself off. The paramaters that we have working in a different version work and keep it up in memory but then its only single threaded....does this make our issue clear to understand? r_dequeue_options.wait := dbms_aq.forever;
VERSION 1 - Oracle polls queue every few seconds then processes en mass via multi-threading:
create or replace type demo_queue_payload_type as object(message varchar2(4000));
create table demo_queue_message_table(message varchar2(4000));
exec dbms_aqadm.create_queue_table(queue_table => 'demo_queue_table', queue_payload_type => 'demo_queue_payload_type', multiple_consumers => true);
exec dbms_aqadm.create_queue(queue_name => 'demo_queue', queue_table => 'demo_queue_table');
exec dbms_aqadm.start_queue (queue_name => 'demo_queue');
exec dbms_aqadm.add_subscriber(queue_name => 'demo_queue', subscriber => sys.aq$_agent('demo_queue_subscriber', null, null));
exec dbms_aq.register(sys.aq$_reg_info_list(sys.aq$_reg_info('demo_queue:demo_queue_subscriber', dbms_aq.namespace_aq, 'plsql://demo_queue_callback_procedure', hextoraw('ff'))), 1);
create or replace procedure demo_queue_callback_procedure
context raw,
reginfo sys.aq$_reg_info,
descr sys.aq$_descriptor,
payload raw,
payloadl number
) as
r_dequeue_options dbms_aq.dequeue_options_t;
r_message_properties dbms_aq.message_properties_t;
v_message_handle raw(16);
o_payload demo_queue_payload_type;
begin
r_dequeue_options.msgid := descr.msg_id;
r_dequeue_options.consumer_name := descr.consumer_name;
r_message_properties.delay := dbms_aq.no_delay;
r_dequeue_options.wait := dbms_aq.forever;
r_dequeue_options.visibility := dbms_aq.immediate;
dbms_aq.dequeue
queue_name => descr.queue_name,
dequeue_options => r_dequeue_options,
message_properties => r_message_properties,
payload => o_payload,
msgid => v_message_handle
insert into demo_queue_message_table (message) values (to_number(to_char(systimestamp,'ss.ff3')) - to_number(o_payload.message));
commit;
end;
TESTER - Run this anonymous block to test the queue created above then notice how all of their DEQUEUED times are delayed several seconds - Due to polling and not staying up in memeory as a listener:
declare
r_enqueue_options dbms_aq.enqueue_options_t;
r_message_properties dbms_aq.message_properties_t;
v_message_handle raw(16);
o_payload demo_queue_payload_type;
counter number := 1;
begin
while counter <= 10000 loop
o_payload := demo_queue_payload_type(to_char(systimestamp, 'ss.ff3'));
dbms_aq.enqueue
queue_name => 'demo_queue',
enqueue_options => r_enqueue_options,
message_properties => r_message_properties,
payload => o_payload,
msgid => v_message_handle
commit;
counter := counter + 1;
end loop;
end;
Does that make sense?
Thanks,
Dave
Message was edited by:
user613052

Similar Messages

  • Is there throttling going on here? Constantly queued emails on Hybrid Exch 2013 server with error RecipientThreadLimitExceeded in message tracking logs...

    Please let me know if anyone knows an answer to this one... We're in a Hybrid Exchange environment, with 2 x Exchange 2007 servers,  and 1 x Exchange 2013 Hybrid server which is pointing to Office 365 for the purposes of relaying mail to O365 while we
    migrate our users out there.
    We have just finished migrating, but just a couple of days ago we started experiencing delays in email delivery to O365... Not all mail, but some!  Incoming email or locally generated email gets relayed out through the Hybrid server and out to O365, but
    not all email is delayed... only some, but it's constant.  During the busiest part of the day, about 200 messages are sitting in the Queue in Exch2013... but they all eventually resolve between 5 and 45minutes.  The users are not happy.
    The last error in the queue viewer for each hung email reads:  451 4.4.0 Temporary server error.  Please try again later.
    If I look at the message tracking logs, I find an interesting item -- "RecipientThreadLimitExceeded":
    2014-05-15T14:15:51.608Z,192.168.3.11,hydra,207.46.163.215,company-mail-onmicrosoft-com.mail.protection.outlook.com,RecipientThreadLimitExceeded,Outbound
    to Office 365,SMTP,DEFER,10307921510617,<[email protected]>,885ea3ce-a020-41b1-8950-08d13e58d6d3,[email protected],451
    4.4.0 Temporary server error. Please try again later,10117,1,,,Read: This is your generic subject line,[email protected],[email protected],2014-05-15T14:16:51.608Z,Undefined,,,,S:Microsoft.Exchange.Transport.MailRecipient.RequiredTlsAuthLevel=Opportunistic;S:Microsoft.Exchange.Transport.MailRecipient.EffectiveTlsAuthLevel=EncryptionOnly;S:DeliveryPriority=Normal
    I have tried to find some documentation on resolution for this RecipientThreadLimitExceeded error, but I can only come up with some Exchange 2011 documentation which recommends adding some entries to the EdgeTransport.exe.config file to bump up the RecipientThreadLimit
    value... I have not found anything pertaining to 2013.  I cannot even find any powershell commands to see what the current RecipientThreadLimit is on 2013!  Aghg!
    Has anyone seen this before, or have any recommendations?
    Thank you,
    Mike

    After many days of frustration, Microsoft Support finally resolved this issue.  Believe it or not, but the issue was actually on the Office365 side.  Here's the fix:
    Exchange Admin Center -> Mail Flow -> Connectors -> Inbound Connectors
    Open your "Inbound from <guid>" with the "On-premises" connector type
    Click on Scope -> scroll down to "Associated accepted domains"
    We had an entry in there "<organization>.mail.onmicrosoft.com"... Microsoft support had us remove this entry so that the box was completely empty.
    That RESOLVED it... amazing what what little entry could do.  We've had this entry in there for about 2 months, and it had been working fine.  Support acknowledged that several customers have had this issue, that they are working on getting it fixed
    on the back-end.
    Hope this helps somebody... 
    -Mike

  • Problem with Intel/ATI Hybrid Graphics

    Hi, I Just got a new laptop with the intel(hd4400)/ati(hd8670m) hybrid graphics. I followed exactly this https://wiki.archlinux.org/index.php/Hy … ons_So_Far, trying to disable my discrete card, but I did not have vgaswitcheroo under /sys/kernel/debug. Then I did a reboot, it stopped booting after FSCK, no login for me. I did add radeon and i915 to MODULES in /etc/mkinitcpio.conf if that's what you are wondering. I had to chroot with Arch installer and add a basic 20-intel.conf file to be able to boot into my DE.
    dmesg output below shows that I had radeon loaded, but still no vgaswitcheroo directory.
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.6-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Oct 18 23:22:36 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000094d5ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000094d60000-0x0000000095d5ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000095d60000-0x000000009a36efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009a36f000-0x000000009aebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by INSYDE Corp.
    [ 0.000000] efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 SMBIOS=0x9aebef98
    [ 0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
    [ 0.000000] efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
    [ 0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001051000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001051000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f51000) (15MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000002f51000-0x000000003737a000) (836MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x000000003737a000-0x00000000379b5000) (6MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000379b5000-0x000000006d8c0000) (863MB)
    [ 0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000006d8c0000-0x0000000092d70000) (596MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x0000000092d70000-0x0000000092d90000) (0MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000092d90000-0x0000000093ee1000) (17MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x0000000093ee1000-0x0000000094d60000) (14MB)
    [ 0.000000] efi: mem16: type=0, attr=0xf, range=[0x0000000094d60000-0x0000000095d60000) (16MB)
    [ 0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000095d60000-0x0000000095f52000) (1MB)
    [ 0.000000] efi: mem18: type=1, attr=0xf, range=[0x0000000095f52000-0x0000000095f6f000) (0MB)
    [ 0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000095f6f000-0x0000000097260000) (18MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000097260000-0x0000000097262000) (0MB)
    [ 0.000000] efi: mem21: type=7, attr=0xf, range=[0x0000000097262000-0x0000000097272000) (0MB)
    [ 0.000000] efi: mem22: type=2, attr=0xf, range=[0x0000000097272000-0x000000009727c000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x000000009727c000-0x0000000097c77000) (9MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x0000000097c77000-0x0000000097c7a000) (0MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x0000000097c7a000-0x0000000097c81000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x0000000097c81000-0x0000000097c82000) (0MB)
    [ 0.000000] efi: mem27: type=4, attr=0xf, range=[0x0000000097c82000-0x0000000097db2000) (1MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x0000000097db2000-0x0000000097db3000) (0MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x0000000097db3000-0x0000000097e0a000) (0MB)
    [ 0.000000] efi: mem30: type=3, attr=0xf, range=[0x0000000097e0a000-0x0000000097e17000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x0000000097e17000-0x0000000097e1f000) (0MB)
    [ 0.000000] efi: mem32: type=3, attr=0xf, range=[0x0000000097e1f000-0x0000000097e20000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x0000000097e20000-0x0000000097e2c000) (0MB)
    [ 0.000000] efi: mem34: type=3, attr=0xf, range=[0x0000000097e2c000-0x0000000097e34000) (0MB)
    [ 0.000000] efi: mem35: type=4, attr=0xf, range=[0x0000000097e34000-0x0000000097e4c000) (0MB)
    [ 0.000000] efi: mem36: type=7, attr=0xf, range=[0x0000000097e4c000-0x0000000097e4d000) (0MB)
    [ 0.000000] efi: mem37: type=4, attr=0xf, range=[0x0000000097e4d000-0x0000000097e50000) (0MB)
    [ 0.000000] efi: mem38: type=3, attr=0xf, range=[0x0000000097e50000-0x0000000097e57000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000097e57000-0x0000000097e6e000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x0000000097e6e000-0x0000000097ee9000) (0MB)
    [ 0.000000] efi: mem41: type=4, attr=0xf, range=[0x0000000097ee9000-0x0000000097efc000) (0MB)
    [ 0.000000] efi: mem42: type=7, attr=0xf, range=[0x0000000097efc000-0x0000000097efd000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000097efd000-0x0000000097f0b000) (0MB)
    [ 0.000000] efi: mem44: type=7, attr=0xf, range=[0x0000000097f0b000-0x0000000097f0d000) (0MB)
    [ 0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000097f0d000-0x000000009810f000) (2MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x000000009810f000-0x0000000098111000) (0MB)
    [ 0.000000] efi: mem47: type=4, attr=0xf, range=[0x0000000098111000-0x0000000099f6f000) (30MB)
    [ 0.000000] efi: mem48: type=3, attr=0xf, range=[0x0000000099f6f000-0x000000009a36f000) (4MB)
    [ 0.000000] efi: mem49: type=5, attr=0x800000000000000f, range=[0x000000009a36f000-0x000000009a56f000) (2MB)
    [ 0.000000] efi: mem50: type=6, attr=0x800000000000000f, range=[0x000000009a56f000-0x000000009aabf000) (5MB)
    [ 0.000000] efi: mem51: type=0, attr=0xf, range=[0x000000009aabf000-0x000000009aebf000) (4MB)
    [ 0.000000] efi: mem52: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
    [ 0.000000] efi: mem53: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
    [ 0.000000] efi: mem56: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem57: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
    [ 0.000000] efi: mem58: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem59: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
    [ 0.000000] efi: mem60: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
    [ 0.000000] efi: mem61: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem62: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed1c000) (0MB)
    [ 0.000000] efi: mem63: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem64: type=11, attr=0x8000000000000001, range=[0x00000000fed20000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem65: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Dell Inc. Inspiron 3537/028XKX, BIOS A05 08/30/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x15f600 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 uncachable
    [ 0.000000] C0000-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back
    [ 0.000000] 1 base 0080000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 009B000000 mask 7FFF000000 uncachable
    [ 0.000000] 3 base 009C000000 mask 7FFC000000 uncachable
    [ 0.000000] 4 base 00FFC00000 mask 7FFFC00000 write-protect
    [ 0.000000] 5 base 0100000000 mask 7F80000000 write-back
    [ 0.000000] 6 base 015F600000 mask 7FFFE00000 uncachable
    [ 0.000000] 7 base 015F800000 mask 7FFF800000 uncachable
    [ 0.000000] 8 base 0160000000 mask 7FE0000000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
    [ 0.000000] [mem 0x15f400000-0x15f5fffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
    [ 0.000000] [mem 0x15c000000-0x15f3fffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x15bffffff]
    [ 0.000000] [mem 0x100000000-0x13fffffff] page 1G
    [ 0.000000] [mem 0x140000000-0x15bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x94bfffff] page 2M
    [ 0.000000] [mem 0x94c00000-0x94d5ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] [mem 0x95d60000-0x95dfffff] page 4k
    [ 0.000000] [mem 0x95e00000-0x9a1fffff] page 2M
    [ 0.000000] [mem 0x9a200000-0x9a36efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
    [ 0.000000] [mem 0x9afff000-0x9affffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x3737a000-0x379b4fff]
    [ 0.000000] ACPI: RSDP 000000009affe014 00024 (v02 DELL )
    [ 0.000000] ACPI: XSDT 000000009affe210 000AC (v01 DELL CL09 00000001 01000013)
    [ 0.000000] ACPI: FACP 000000009aff8000 0010C (v05 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 000000009afe9000 0B8AC (v01 DELL CL09 00000000 ASL 00040000)
    [ 0.000000] ACPI: FACS 000000009afb8000 00040
    [ 0.000000] ACPI: SLIC 000000009affd000 00176 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: UEFI 000000009affc000 00236 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: FPDT 000000009affa000 00044 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASF! 000000009aff9000 000A5 (v32 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: HPET 000000009aff7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: APIC 000000009aff6000 0008C (v03 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: MCFG 000000009aff5000 0003C (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afe8000 006FE (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 000000009afe6000 00028 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: ASPT 000000009afe4000 00034 (v07 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: DBGP 000000009afe3000 00034 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdd000 00539 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afdc000 00AD8 (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd8000 0343C (v01 COMPAL CRV ORB 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 000000009afd5000 01E3D (v01 COMPAL CRV ORB 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BGRT 000000009afd7000 00038 (v01 DELL CL09 00000001 ASL 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
    [ 0.000000] NODE_DATA [mem 0x15f5f8000-0x15f5fcfff]
    [ 0.000000] [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x15f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0006efff]
    [ 0.000000] node 0: [mem 0x00070000-0x00087fff]
    [ 0.000000] node 0: [mem 0x00100000-0x94d5ffff]
    [ 0.000000] node 0: [mem 0x95d60000-0x9a36efff]
    [ 0.000000] node 0: [mem 0x9afff000-0x9affffff]
    [ 0.000000] node 0: [mem 0x100000000-0x15f5fffff]
    [ 0.000000] On node 0 totalpages: 1018102
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3974 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 9742 pages used for memmap
    [ 0.000000] DMA32 zone: 623472 pages, LIFO batch:31
    [ 0.000000] Normal zone: 6104 pages used for memmap
    [ 0.000000] Normal zone: 390656 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x94d60000-0x95d5ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9a36f000-0x9aebefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
    [ 0.000000] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88015f200000 s86528 r8192 d24064 u262144
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002170
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/vg_tf-lv_root rw quiet radeon.dpm=1
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: 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: 3856592K/4072408K available (5050K kernel code, 799K rwdata, 1696K rodata, 1140K init, 1288K bss, 215816K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] NR_IRQS:8448 nr_irqs:1016 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 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] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2294.570 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4590.35 BogoMIPS (lpj=7648566)
    [ 0.000007] pid_max: default: 32768 minimum: 301
    [ 0.000040] init_memory_mapping: [mem 0x9a36f000-0x9a56efff]
    [ 0.000042] [mem 0x9a36f000-0x9a56efff] page 4k
    [ 0.000064] init_memory_mapping: [mem 0x9a56f000-0x9aabefff]
    [ 0.000066] [mem 0x9a56f000-0x9a5fffff] page 4k
    [ 0.000067] [mem 0x9a600000-0x9a9fffff] page 2M
    [ 0.000069] [mem 0x9aa00000-0x9aabefff] page 4k
    [ 0.059748] Security Framework initialized
    [ 0.059759] AppArmor: AppArmor disabled by boot time parameter
    [ 0.059761] Yama: becoming mindful.
    [ 0.060120] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.061320] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.061810] Mount-cache hash table entries: 256
    [ 0.062052] Initializing cgroup subsys memory
    [ 0.062063] Initializing cgroup subsys devices
    [ 0.062065] Initializing cgroup subsys freezer
    [ 0.062067] Initializing cgroup subsys net_cls
    [ 0.062069] Initializing cgroup subsys blkio
    [ 0.062098] CPU: Physical Processor ID: 0
    [ 0.062100] CPU: Processor Core ID: 0
    [ 0.062105] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.063398] mce: CPU supports 7 MCE banks
    [ 0.063415] CPU0: Thermal monitoring enabled (TM1)
    [ 0.063429] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.063562] Freeing SMP alternatives memory: 20K (ffffffff819e6000 - ffffffff819eb000)
    [ 0.064699] ACPI: Core revision 20130517
    [ 0.077923] ACPI: All ACPI Tables successfully acquired
    [ 0.083767] ftrace: allocating 20100 entries in 79 pages
    [ 0.096243] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.129231] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.129240] TSC deadline timer enabled
    [ 0.129252] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.129261] ... version: 3
    [ 0.129262] ... bit width: 48
    [ 0.129263] ... generic registers: 4
    [ 0.129265] ... value mask: 0000ffffffffffff
    [ 0.129267] ... max period: 0000ffffffffffff
    [ 0.129268] ... fixed-purpose events: 3
    [ 0.129269] ... event mask: 000000070000000f
    [ 0.167457] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.152681] smpboot: Booting Node 0, Processors #1 #2 #3
    [ 0.209878] Brought up 4 CPUs
    [ 0.209882] smpboot: Total of 4 processors activated (18363.41 BogoMIPS)
    [ 0.215147] devtmpfs: initialized
    [ 0.216459] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
    [ 0.217451] RTC time: 2:22:13, date: 11/08/13
    [ 0.217501] NET: Registered protocol family 16
    [ 0.217661] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.217663] ACPI: bus type PCI registered
    [ 0.217666] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.217737] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [ 0.217740] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [ 0.252752] PCI: Using configuration type 1 for base access
    [ 0.252922] dmi type 0xB1 record - unknown flag
    [ 0.253726] bio: create slab <bio-0> at 0
    [ 0.253868] ACPI: Added _OSI(Module Device)
    [ 0.253870] ACPI: Added _OSI(Processor Device)
    [ 0.253872] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.253874] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.256659] ACPI: EC: Look up EC in DSDT
    [ 0.259524] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.272874] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.274013] ACPI: SSDT 000000009ae7dc18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.274706] ACPI: Dynamic OEM Table Load:
    [ 0.274709] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20130117)
    [ 0.282313] ACPI: SSDT 000000009ae7d618 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.283108] ACPI: Dynamic OEM Table Load:
    [ 0.283111] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20130117)
    [ 0.301675] ACPI: SSDT 000000009ae7cd98 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.302368] ACPI: Dynamic OEM Table Load:
    [ 0.302370] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20130117)
    [ 0.431586] ACPI: Interpreter enabled
    [ 0.431597] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.431606] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.431630] ACPI: (supports S0 S3 S4 S5)
    [ 0.431632] ACPI: Using IOAPIC for interrupt routing
    [ 0.431666] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.431855] ACPI: No dock devices found.
    [ 0.634551] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [ 0.634846] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.635302] acpi PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.635816] PCI host bridge to bus 0000:00
    [ 0.635820] pci_bus 0000:00: root bus resource [bus 00-fe]
    [ 0.635823] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.635825] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.635828] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.635830] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.635832] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.635834] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.635836] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.635838] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.635840] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.635842] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.635844] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.635846] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.635848] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.635850] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.635852] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.635854] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.635856] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
    [ 0.635867] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.636037] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.636053] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
    [ 0.636062] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.636069] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
    [ 0.636232] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.636243] pci 0000:00:03.0: reg 0x10: [mem 0xc0810000-0xc0813fff 64bit]
    [ 0.636435] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.636456] pci 0000:00:14.0: reg 0x10: [mem 0xc0800000-0xc080ffff 64bit]
    [ 0.636523] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.636647] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.636693] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.636717] pci 0000:00:16.0: reg 0x10: [mem 0xc0818000-0xc081801f 64bit]
    [ 0.636795] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.636949] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.636965] pci 0000:00:1b.0: reg 0x10: [mem 0xc0814000-0xc0817fff 64bit]
    [ 0.637037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.637182] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.637255] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.637400] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.637446] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.637518] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.637662] pci 0000:00:1c.4: [8086:9c18] type 01 class 0x060400
    [ 0.637734] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.637885] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.638879] pci 0000:00:1d.0: reg 0x10: [mem 0xc081c000-0xc081c3ff]
    [ 0.644729] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.644857] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.644903] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.645161] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
    [ 0.645179] pci 0000:00:1f.2: reg 0x10: [io 0x5088-0x508f]
    [ 0.645188] pci 0000:00:1f.2: reg 0x14: [io 0x5094-0x5097]
    [ 0.645196] pci 0000:00:1f.2: reg 0x18: [io 0x5080-0x5087]
    [ 0.645205] pci 0000:00:1f.2: reg 0x1c: [io 0x5090-0x5093]
    [ 0.645213] pci 0000:00:1f.2: reg 0x20: [io 0x5060-0x507f]
    [ 0.645222] pci 0000:00:1f.2: reg 0x24: [mem 0xc081b000-0xc081b7ff]
    [ 0.645264] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.645401] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.645417] pci 0000:00:1f.3: reg 0x10: [mem 0xc0819000-0xc08190ff 64bit]
    [ 0.645440] pci 0000:00:1f.3: reg 0x20: [io 0x5040-0x505f]
    [ 0.645679] pci 0000:01:00.0: [10ec:8136] type 00 class 0x020000
    [ 0.645710] pci 0000:01:00.0: reg 0x10: [io 0x4000-0x40ff]
    [ 0.645750] pci 0000:01:00.0: reg 0x18: [mem 0xc0700000-0xc0700fff 64bit]
    [ 0.645779] pci 0000:01:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
    [ 0.645873] pci 0000:01:00.0: supports D1 D2
    [ 0.645875] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.652308] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.652312] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.652316] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.652322] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.652414] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
    [ 0.652447] pci 0000:02:00.0: reg 0x10: [mem 0xc0600000-0xc067ffff 64bit]
    [ 0.652527] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
    [ 0.652608] pci 0000:02:00.0: supports D1 D2
    [ 0.652610] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.658964] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.658970] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.659066] pci 0000:03:00.0: [1002:6660] type 00 class 0x038000
    [ 0.659093] pci 0000:03:00.0: reg 0x10: [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.659113] pci 0000:03:00.0: reg 0x18: [mem 0xc0500000-0xc053ffff 64bit]
    [ 0.659127] pci 0000:03:00.0: reg 0x20: [io 0x3000-0x30ff]
    [ 0.659154] pci 0000:03:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    [ 0.659233] pci 0000:03:00.0: supports D1 D2
    [ 0.659235] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
    [ 0.665628] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.665632] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.665636] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.665642] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.665658] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
    [ 0.726347] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726411] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726470] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726529] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726588] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726646] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726705] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.726765] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.727383] ACPI: Enabled 5 GPEs in block 00 to 7F
    [ 0.727392] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.727488] Found 1 acpi root devices
    [ 0.727533] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    [ 0.727642] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.727647] vgaarb: loaded
    [ 0.727648] vgaarb: bridge control possible 0000:00:02.0
    [ 0.727700] PCI: Using ACPI for IRQ routing
    [ 0.734096] PCI: pci_cache_line_size set to 64 bytes
    [ 0.734149] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
    [ 0.734151] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
    [ 0.734152] e820: reserve RAM buffer [mem 0x94d60000-0x97ffffff]
    [ 0.734154] e820: reserve RAM buffer [mem 0x9a36f000-0x9bffffff]
    [ 0.734157] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
    [ 0.734158] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
    [ 0.734265] NetLabel: Initializing
    [ 0.734267] NetLabel: domain hash size = 128
    [ 0.734268] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.734282] NetLabel: unlabeled traffic allowed by default
    [ 0.734302] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.734309] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.736336] Switched to clocksource hpet
    [ 0.741791] pnp: PnP ACPI init
    [ 0.741808] ACPI: bus type PNP registered
    [ 0.741844] pnp 00:00: [dma 4]
    [ 0.741872] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.741898] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.742037] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.742091] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.742094] system 00:03: [io 0xfd60-0xfd63] has been reserved
    [ 0.742096] system 00:03: [io 0xffff] has been reserved
    [ 0.742099] system 00:03: [io 0xffff] has been reserved
    [ 0.742101] system 00:03: [io 0xffff] has been reserved
    [ 0.742103] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.742106] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.742109] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.742169] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.742223] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.742227] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.742290] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.742323] pnp 00:07: Plug and Play ACPI device, IDs DLL05eb PNP0f13 (active)
    [ 0.799825] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.799828] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.799831] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.799833] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.799836] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
    [ 0.799838] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.799840] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.799843] system 00:08: [mem 0xff000000-0xff000fff] has been reserved
    [ 0.799845] system 00:08: [mem 0xff010000-0xffffffff] could not be reserved
    [ 0.799848] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.799850] system 00:08: [mem 0x9fa22000-0x9fa22fff] has been reserved
    [ 0.799853] system 00:08: [mem 0x9fa10000-0x9fa1ffff] has been reserved
    [ 0.799856] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.800510] pnp: PnP ACPI: found 9 devices
    [ 0.800512] ACPI: bus type PNP unregistered
    [ 0.807188] pci 0000:02:00.0: no compatible bridge window for [mem 0xffff0000-0xffffffff pref]
    [ 0.807192] pci 0000:03:00.0: no compatible bridge window for [mem 0xfffe0000-0xffffffff pref]
    [ 0.807227] pci 0000:00:1c.3: BAR 15: assigned [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807230] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.807234] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
    [ 0.807240] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
    [ 0.807244] pci 0000:00:1c.0: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807251] pci 0000:02:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb0ffff pref]
    [ 0.807254] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.807259] pci 0000:00:1c.3: bridge window [mem 0xc0600000-0xc06fffff]
    [ 0.807263] pci 0000:00:1c.3: bridge window [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807270] pci 0000:03:00.0: BAR 6: assigned [mem 0xc0540000-0xc055ffff pref]
    [ 0.807272] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.807275] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
    [ 0.807280] pci 0000:00:1c.4: bridge window [mem 0xc0500000-0xc05fffff]
    [ 0.807285] pci 0000:00:1c.4: bridge window [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807584] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.807586] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.807589] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.807591] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.807593] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.807595] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.807597] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.807599] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.807601] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.807603] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.807605] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.807607] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 0.807609] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 0.807611] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 0.807613] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 0.807615] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
    [ 0.807617] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
    [ 0.807619] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 0.807622] pci_bus 0000:01: resource 1 [mem 0xc0700000-0xc07fffff]
    [ 0.807624] pci_bus 0000:01: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
    [ 0.807626] pci_bus 0000:02: resource 1 [mem 0xc0600000-0xc06fffff]
    [ 0.807628] pci_bus 0000:02: resource 2 [mem 0x9fb00000-0x9fbfffff pref]
    [ 0.807630] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
    [ 0.807632] pci_bus 0000:03: resource 1 [mem 0xc0500000-0xc05fffff]
    [ 0.807635] pci_bus 0000:03: resource 2 [mem 0xa0000000-0xafffffff 64bit pref]
    [ 0.807677] NET: Registered protocol family 2
    [ 0.807890] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808027] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.808127] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.808150] TCP: reno registered
    [ 0.808162] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808181] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.808261] NET: Registered protocol family 1
    [ 0.808274] pci 0000:00:02.0: Boot video device
    [ 0.823082] PCI: CLS 64 bytes, default 64
    [ 0.823122] Unpacking initramfs...
    [ 0.982411] Freeing initrd memory: 6380K (ffff88003737a000 - ffff8800379b5000)
    [ 0.982417] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.982420] software IO TLB [mem 0x8ed70000-0x92d70000] (64MB) mapped at [ffff88008ed70000-ffff880092d6ffff]
    [ 0.982447] Simple Boot Flag at 0x44 set to 0x1
    [ 0.982626] Scanning for low memory corruption every 60 seconds
    [ 0.982970] audit: initializing netlink socket (disabled)
    [ 0.982981] type=2000 audit(1383877333.966:1): initialized
    [ 1.000018] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.001570] zbud: loaded
    [ 1.001748] VFS: Disk quotas dquot_6.5.2
    [ 1.001801] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.001998] msgmni has been set to 7672
    [ 1.002265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.002308] io scheduler noop registered
    [ 1.002311] io scheduler deadline registered
    [ 1.002344] io scheduler cfq registered (default)
    [ 1.002441] pcieport 0000:00:1c.0: irq 56 for MSI/MSI-X
    [ 1.002526] pcieport 0000:00:1c.3: irq 57 for MSI/MSI-X
    [ 1.002598] pcieport 0000:00:1c.4: irq 58 for MSI/MSI-X
    [ 1.002681] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 1.002684] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002688] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 1.002706] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 1.002708] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002712] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 1.002728] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 1.002730] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 1.002734] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 1.002751] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.002769] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.002888] efifb: probing for efifb
    [ 1.003509] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90020e00000, using 4160k, total 4160k
    [ 1.003511] efifb: mode is 1366x768x32, linelength=5504, pages=1
    [ 1.003513] efifb: scrolling: redraw
    [ 1.003515] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 1.007477] Console: switching to colour frame buffer device 170x48
    [ 1.011265] fb0: EFI VGA frame buffer device
    [ 1.011272] intel_idle: MWAIT substates: 0x11142120
    [ 1.011274] intel_idle: v0.4 model 0x45
    [ 1.011275] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.011336] GHES: HEST is not enabled!
    [ 1.011398] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.011946] Linux agpgart interface v0.103
    [ 1.012027] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 1.032274] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.032308] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.032411] mousedev: PS/2 mouse device common for all mice
    [ 1.032672] rtc_cmos 00:04: RTC can wake from S4
    [ 1.032819] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 1.032857] rtc_cmos 00:04: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 1.032871] Intel P-state driver initializing.
    [ 1.032884] Intel pstate controlling: cpu 0
    [ 1.032911] Intel pstate controlling: cpu 1
    [ 1.032923] Intel pstate controlling: cpu 2
    [ 1.032935] Intel pstate controlling: cpu 3
    [ 1.033105] cpuidle: using governor ladder
    [ 1.033295] cpuidle: using governor menu
    [ 1.033356] drop_monitor: Initializing network drop monitor service
    [ 1.033431] TCP: cubic registered
    [ 1.033524] NET: Registered protocol family 10
    [ 1.033688] NET: Registered protocol family 17
    [ 1.033697] Key type dns_resolver registered
    [ 1.033905] PM: Hibernation image not present or could not be loaded.
    [ 1.033915] registered taskstats version 1
    [ 1.034407] Magic number: 5:662:358
    [ 1.034483] rtc_cmos 00:04: setting system clock to 2013-11-08 02:22:14 UTC (1383877334)
    [ 1.035212] Freeing unused kernel memory: 1140K (ffffffff818c9000 - ffffffff819e6000)
    [ 1.035213] Write protecting the kernel read-only data: 8192k
    [ 1.037442] Freeing unused kernel memory: 1084K (ffff8800024f1000 - ffff880002600000)
    [ 1.038163] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 1.045866] systemd-udevd[57]: starting version 208
    [ 1.050291] [drm] Initialized drm 1.1.0 20060810
    [ 1.053926] [drm] radeon kernel modesetting enabled.
    [ 1.053955] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 1.053962] radeon 0000:03:00.0: enabling device (0000 -> 0003)
    [ 1.054153] [drm] initializing kernel modesetting (HAINAN 0x1002:0x6660 0x1028:0x05EA).
    [ 1.054190] [drm] register mmio base: 0xC0500000
    [ 1.054191] [drm] register mmio size: 262144
    [ 1.055856] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.982382] tsc: Refined TSC clocksource calibration: 2294.688 MHz
    [ 2.566653] ATOM BIOS: Dell
    [ 2.566668] [drm] GPU not posted. posting now...
    [ 2.570040] radeon 0000:03:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
    [ 2.570042] radeon 0000:03:00.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
    [ 2.570044] [drm] Detected VRAM RAM=1024M, BAR=256M
    [ 2.570045] [drm] RAM width 64bits DDR
    [ 2.570094] [TTM] Zone kernel: Available graphics memory: 1965320 kiB
    [ 2.570095] [TTM] Initializing pool allocator
    [ 2.570099] [TTM] Initializing DMA pool allocator
    [ 2.570117] [drm] radeon: 1024M of VRAM memory ready
    [ 2.570118] [drm] radeon: 512M of GTT memory ready.
    [ 2.570129] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 2.570456] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 2.570460] [drm] PCIE gen 2 link speeds already enabled
    [ 2.570620] [drm] Loading HAINAN Microcode
    [ 2.981834] Switched to clocksource tsc
    [ 2.993997] [drm] PCIE GART of 512M enabled (table at 0x0000000000040000).
    [ 2.994098] radeon 0000:03:00.0: WB enabled
    [ 2.994100] radeon 0000:03:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880156e63c00
    [ 2.994102] radeon 0000:03:00.0: fence driver on ring 1 use gpu addr 0x0000000040000c04 and cpu addr 0xffff880156e63c04
    [ 2.994103] radeon 0000:03:00.0: fence driver on ring 2 use gpu addr 0x0000000040000c08 and cpu addr 0xffff880156e63c08
    [ 2.994104] radeon 0000:03:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880156e63c0c
    [ 2.994106] radeon 0000:03:00.0: fence driver on ring 4 use gpu addr 0x0000000040000c10 and cpu addr 0xffff880156e63c10
    [ 2.994107] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 2.994108] [drm] Driver supports precise vblank timestamp query.
    [ 2.994126] radeon 0000:03:00.0: irq 59 for MSI/MSI-X
    [ 2.994137] radeon 0000:03:00.0: radeon: using MSI.
    [ 2.994157] [drm] radeon: irq initialized.
    [ 3.013688] [drm] ring test on 0 succeeded in 1 usecs
    [ 3.013694] [drm] ring test on 1 succeeded in 1 usecs
    [ 3.013698] [drm] ring test on 2 succeeded in 1 usecs
    [ 3.013761] [drm] ring test on 3 succeeded in 2 usecs
    [ 3.013770] [drm] ring test on 4 succeeded in 1 usecs
    [ 3.015377] [drm] ib test on ring 0 succeeded in 0 usecs
    [ 3.015424] [drm] ib test on ring 1 succeeded in 0 usecs
    [ 3.015476] [drm] ib test on ring 2 succeeded in 0 usecs
    [ 3.015496] [drm] ib test on ring 3 succeeded in 0 usecs
    [ 3.015517] [drm] ib test on ring 4 succeeded in 1 usecs
    [ 3.015656] [drm] Radeon Display Connectors
    [ 3.015663] [drm] Internal thermal controller without fan control
    [ 3.015712] [drm] probing gen 2 caps for device 8086:9c18 = 5323c42/0
    [ 3.015739] == power state 0 ==
    [ 3.015740] ui class: none
    [ 3.015742] internal class: boot
    [ 3.015744] caps:
    [ 3.015746] uvd vclk: 0 dclk: 0
    [ 3.015748] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.015749] status: c r b
    [ 3.015752] == power state 1 ==
    [ 3.015753] ui class: performance
    [ 3.015754] internal class: none
    [ 3.015756] caps:
    [ 3.015758] uvd vclk: 0 dclk: 0
    [ 3.015760] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015761] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.015763] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.015765] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.015767] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.015768] status:
    [ 3.015769] == power state 2 ==
    [ 3.015771] ui class: battery
    [ 3.015772] internal class: none
    [ 3.015773] caps:
    [ 3.015775] uvd vclk: 0 dclk: 0
    [ 3.015777] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.015778] power level 1 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015780] power level 2 sclk: 40000 mclk: 60000 vddc: 850 vddci: 0 pcie gen: 2
    [ 3.015781] status:
    [ 3.023133] switching from power state:
    [ 3.023135] ui class: none
    [ 3.023136] internal class: boot
    [ 3.023138] caps:
    [ 3.023139] uvd vclk: 0 dclk: 0
    [ 3.023141] power level 0 sclk: 30000 mclk: 29900 vddc: 900 vddci: 0 pcie gen: 2
    [ 3.023142] status: c b
    [ 3.023143] switching to power state:
    [ 3.023144] ui class: performance
    [ 3.023145] internal class: none
    [ 3.023147] caps:
    [ 3.023148] uvd vclk: 0 dclk: 0
    [ 3.023149] power level 0 sclk: 30000 mclk: 30000 vddc: 800 vddci: 0 pcie gen: 2
    [ 3.023151] power level 1 sclk: 40000 mclk: 90000 vddc: 875 vddci: 0 pcie gen: 2
    [ 3.023152] power level 2 sclk: 75000 mclk: 90000 vddc: 950 vddci: 0 pcie gen: 2
    [ 3.023154] power level 3 sclk: 90000 mclk: 90000 vddc: 1025 vddci: 0 pcie gen: 2
    [ 3.023155] power level 4 sclk: 97500 mclk: 90000 vddc: 1075 vddci: 0 pcie gen: 2
    [ 3.023156] status: r
    [ 3.024470] [drm] radeon: dpm initialized
    [ 3.024475] radeon 0000:03:00.0: No connectors reported connected with modes
    [ 3.024477] [drm] Cannot find any crtc or sizes - going 1024x768
    [ 3.026968] [drm] fb mappable at 0xA1150000
    [ 3.026970] [drm] vram apper at 0xA0000000
    [ 3.026971] [drm] size 3145728
    [ 3.026972] [drm] fb depth is 24
    [ 3.026973] [drm] pitch is 4096
    [ 3.026976] checking generic (b0000000 410000) vs hw (a0000000 10000000)
    [ 3.027040] radeon 0000:03:00.0: fb1: radeondrmfb frame buffer device
    [ 3.027042] radeon 0000:03:00.0: registered panic notifier
    [ 3.027053] [drm] Initialized radeon 2.34.0 20080528 for 0000:03:00.0 on minor 0
    [ 3.027978] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0D:00/input/input1
    [ 3.028026] ACPI: Lid Switch [LID0]
    [ 3.028063] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input2
    [ 3.028066] ACPI: Power Button [PWRB]
    [ 3.028114] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 3.028116] ACPI: Power Button [PWRF]
    [ 3.031882] [drm] Memory usable by graphics device = 2048M
    [ 3.031886] checking generic (b0000000 410000) vs hw (b0000000 10000000)
    [ 3.031888] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 3.031900] Console: switching to colour dummy device 80x25
    [ 3.031959] i915 0000:00:02.0: setting latency timer to 64
    [ 3.056716] i915 0000:00:02.0: irq 60 for MSI/MSI-X
    [ 3.056723] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.056724] [drm] Driver supports precise vblank timestamp query.
    [ 3.056784] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.101180] fbcon: inteldrmfb (fb0) is primary device
    [ 4.361087] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
    [ 4.707482] Console: switching to colour frame buffer device 170x48
    [ 4.712160] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 4.712553] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 4.713578] ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20130517/psargs-359)
    [ 4.713584] ACPI Error: Method parse/execution failed [\_SB_.PCI0.RP05.PEGP.DD02._BCL] (Node ffff880159325d98), AE_NOT_FOUND (20130517/psparse-536)
    [ 4.713871] ACPI: Video Device [PEGP] (multi-head: yes rom: no post: no)
    [ 4.713930] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:2f/LNXVIDEO:00/input/input4
    [ 4.715381] acpi device:55: registered as cooling_device0
    [ 4.715415] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 4.715455] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input5
    [ 4.715487] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 1
    [ 4.738967] ACPI: bus type USB registered
    [ 4.738999] usbcore: registered new interface driver usbfs
    [ 4.739016] usbcore: registered new interface driver hub
    [ 4.739050] usbcore: registered new device driver usb
    [ 4.739638] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 4.739642] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.739649] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 4.739721] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 4.739741] xhci_hcd 0000:00:14.0: irq 61 for MSI/MSI-X
    [ 4.740145] xHCI xhci_add_endpoint called for root hub
    [ 4.740148] xHCI xhci_check_bandwidth called for root hub
    [ 4.740208] hub 1-0:1.0: USB hub found
    [ 4.740218] hub 1-0:1.0: 9 ports detected
    [ 4.741007] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.741164] ehci-pci: EHCI PCI platform driver
    [ 4.742756] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 4.742760] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 4.743091] xHCI xhci_add_endpoint called for root hub
    [ 4.743093] xHCI xhci_check_bandwidth called for root hub
    [ 4.743135] hub 2-0:1.0: USB hub found
    [ 4.743141] hub 2-0:1.0: 4 ports detected
    [ 4.743425] SCSI subsystem initialized
    [ 4.745035] ACPI: bus type ATA registered
    [ 4.745122] libata version 3.00 loaded.
    [ 4.747867] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.747875] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.747880] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 4.747891] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.751784] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.751800] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc081c000
    [ 4.760774] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.760925] hub 3-0:1.0: USB hub found
    [ 4.760930] hub 3-0:1.0: 2 ports detected
    [ 4.761082] ahci 0000:00:1f.2: version 3.0
    [ 4.761230] ahci 0000:00:1f.2: irq 62 for MSI/MSI-X
    [ 4.774140] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x3 impl SATA mode
    [ 4.774146] ahci 0000:00:1f.2: flags: 64bit ncq led clo only pio slum part deso sadm sds apst
    [ 4.774151] ahci 0000:00:1f.2: setting latency timer to 64
    [ 4.774614] scsi0 : ahci
    [ 4.774722] scsi1 : ahci
    [ 4.774798] scsi2 : ahci
    [ 4.774868] ata1: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b100 irq 62
    [ 4.774871] ata2: SATA max UDMA/133 abar m2048@0xc081b000 port 0xc081b180 irq 62
    [ 4.774873] ata3: DUMMY
    [ 5.067345] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 5.094002] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 5.094032] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 5.099568] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5HH, SD12, max UDMA/100
    [ 5.100914] ata2.00: configured for UDMA/100
    [ 5.129572] ata1.00: ATA-8: ST500LT012-1DG142, 0001SDM1, max UDMA/133
    [ 5.129577] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 5.191169] hub 3-1:1.0: USB hub found
    [ 5.191237] hub 3-1:1.0: 8 ports detected
    [ 5.255854] ata1.00: configured for UDMA/133
    [ 5.256061] scsi 0:0:0:0: Direct-Access ATA ST500LT012-1DG14 0001 PQ: 0 ANSI: 5
    [ 5.261341] scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DU-8A5HH SD12 PQ: 0 ANSI: 5
    [ 5.263686] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 5.263691] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 5.263724] sd 0:0:0:0: [sda] Write Protect is off
    [ 5.263727] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 5.263737] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 5.269320] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 5.269323] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 5.269521] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 5.332482] sda: sda1 sda2
    [ 5.333235] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 5.457253] usb 3-1.7: new high-speed USB device number 3 using ehci-pci
    [ 5.549500] device-mapper: uevent: version 1.0.3
    [ 5.549652] device-mapper: ioctl: 4.25.0-ioctl (2013-06-26) initialised: [email protected]
    [ 5.554331] bio: create slab <bio-1> at 1
    [ 5.607167] usb 3-1.8: new high-speed USB device number 4 using ehci-pci
    [ 6.510287] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
    [ 7.581705] systemd[1]: systemd 208 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.582431] systemd[1]: Set hostname to <archins3537>.
    [ 8.087615] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 8.087670] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 8.087682] systemd[1]: Starting Login Prompts.
    [ 8.087692] systemd[1]: Reached target Login Prompts.
    [ 8.087700] systemd[1]: Starting Remote File Systems.
    [ 8.087707] systemd[1]: Reached target Remote File Systems.
    [ 8.087715] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 8.087736] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 8.087743] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 8.087762] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 8.087769] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 8.087789] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 8.087796] systemd[1]: Starting Delayed Shutdown Socket.
    [ 8.087813] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 8.087822] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 8.087851] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 8.087858] systemd[1]: Starting Paths.
    [ 8.087865] systemd[1]: Reached target Paths.
    [ 8.087878] systemd[1]: Starting udev Kernel Socket.
    [ 8.087895] systemd[1]: Listening on udev Kernel Socket.
    [ 8.087904] systemd[1]: Starting udev Control Socket.
    [ 8.087920] systemd[1]: Listening on udev Control Socket.
    [ 8.087944] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 8.088034] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 8.088043] systemd[1]: Starting Encrypted Volumes.
    [ 8.088051] systemd[1]: Reached target Encrypted Volumes.
    [ 8.088059] systemd[1]: Starting Journal Socket.
    [ 8.088098] systemd[1]: Listening on Journal Socket.
    [ 8.094096] systemd[1]: Started Set Up Additional Binary Formats.
    [ 8.146808] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 8.147345] systemd[1]: Starting udev Coldplug all Devices...
    [ 8.147641] systemd[1]: Starting Setup Virtual Console...
    [ 8.156662] systemd[1]: Started Load Kernel Modules.
    [ 8.156702] systemd[1]: Mounted FUSE Control File System.
    [ 8.156719] systemd[1]: Mounting Debug File System...
    [ 8.160118] systemd[1]: Starting Apply Kernel Variables...
    [ 8.160456] systemd[1]: Mounting POSIX Message Queue File System...
    [ 8.160770] systemd[1]: Mounting Configuration File System...
    [ 8.161235] systemd[1]: Starting Journal Service...
    [ 8.161549] systemd[1]: Started Journal Service.
    [ 8.407759] systemd-journald[153]: Vacuuming done, freed 0 bytes
    [ 8.622532] EXT4-fs (dm-1): re-mounted. Opts: data=ordered
    [ 8.834003] systemd-udevd[177]: starting version 208
    [ 9.449711] ACPI: Requesting acpi_cpufreq
    [ 9.652388] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
    [ 9.652512] snd_hda_intel 0000:00:1b.0: irq 64 for MSI/MSI-X
    [ 9.703295] ACPI: AC Adapter [ACAD] (off-line)
    [ 9.734702] wmi: Mapper loaded
    [ 9.767167] input: PC Speaker as /devices/platform/pcspkr/input/input6
    [ 9.900528] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15
    [ 9.914682] ACPI: Battery Slot [BAT1] (battery present)
    [ 9.946497] hda_codec: invalid CONNECT_LIST verb 5[1]:0
    [ 9.946555] hda_codec: invalid CONNECT_LIST verb 6[1]:0
    [ 9.946621] hda_codec: invalid CONNECT_LIST verb 7[1]:0
    [ 9.948456] input: HDA Intel MID HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input7
    [ 9.948585] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input8
    [ 9.948656] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
    [ 9.953096] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10
    [ 9.953371] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 9.953378] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953384] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953388] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953394] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 9.953398] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 9.953402] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \IO_D 3 (20130517/utaddress-251)
    [ 9.953406] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 9.953407] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 9.953792] mei_me 0000:00:16.0: setting latency timer to 64
    [ 9.953838] mei_me 0000:00:16.0: irq 65 for MSI/MSI-X
    [ 9.956390] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 9.956608] ACPI Warning: 0x0000000000005040-0x000000000000505f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 9.956615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 10.231648] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    [ 10.250684] cfg80211: Calling CRDA to update world regulatory domain
    [ 10.307646] input: Dell WMI hotkeys as /devices/virtual/input/input11
    [ 10.310649] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313166] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313536] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x15
    [ 10.313923] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 10.347294] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 10.347309] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 10.347544] r8169 0000:01:00.0: irq 66 for MSI/MSI-X
    [ 10.347727] r8169 0000:01:00.0 eth0: RTL8106e at 0xffffc90022cee000, 74:86:7a:50:ce:f4, XID 04900000 IRQ 66
    [ 10.381911] iTCO_vendor_support: vendor-support=0
    [ 10.393283] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 10.393324] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 10.393578] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 10.400848] systemd-udevd[183]: renamed network interface eth0 to enp1s0
    [ 10.416483] ath: EEPROM regdomain: 0x60
    [ 10.416486] ath: EEPROM indicates we should expect a direct regpair map
    [ 10.416489] ath: Country alpha2 being used: 00
    [ 10.416490] ath: Regpair used: 0x60
    [ 10.614808] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
    [ 10.615079] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90035180000, irq=19
    [ 10.643067] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 10.643619] systemd-udevd[189]: renamed network interface wlan0 to wlp2s0
    [ 10.646589] scsi3 : SCSI emulation for RTS5139 USB card reader
    [ 10.646742]

    Cdh wrote:
    You didn't give much information so...
    Blacklisting is now done via /etc/modprobe.d/*.conf files
    For example:
    /etc/modprobe.d/disable-radeon.conf would contain
    install radeon /bin/false
    You can also write "blacklist radeon" instead but that only prevents loading it automatically on itself while booting. You can still modprobe it and if it is a dependency of an automatically loaded module it will still get loaded. With the install ... /bin/false there is no way to load it.
    Also you need to make sure that it is not in the modules array in /etc/mkinitcpio.conf (or that your disable-radeon.conf is in the files array) because the initramfs is its own mini-system that doesn't know about the module configuration otherwise.
    but thats the problem ! i need radeon module to start because vgaswitcheroo needs it ! and then trun it off because 'I' dont need it ! anyway i ll give 'bin/false' method a try !

  • How to get rid of the message Client submission probe stuck in the Exchange Server Queue?

    We have Exchange 2013 in Hybrid with Office 365.
    How to get rid of the message in the Exchange Server Queue?
    Mounting the database fixed it.
    Thanks!!!

    Mounting the database fixed it.

  • What happens to messages after its gone from the queue?

    Hi all,
    just wondering if anyone knows what happens after a Message leaves Message Queue?
    Our scenario is this:
    Hybrid configuration With Exchange online and Exchange 2013 server.All MX records Points to Our on prem server,but Messages sends directly from Exchange online.
    We had one user where remoutrouting address was incorrect,but it is now correct and external mailflow is working again.Seems like old Messages are not delivered,only New ones.
    Wondering if its possible to resend those Messages from the Queue or logs?
    thanks!
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

    Hi ,
    If you run the command Get-TransportPipeline | ft -au , we can able to know what will happen to the messages when it enters it to the transport pipeline.
    Note : Above command output will give you a similar and in-depth back end view of telnet session that happens during the message transport.
    if we don't have the proper route for any of the destination domain then those messages will get queued in exchange till the message expiration time , whereas messages to the domains which has proper route defined in exchange send connector will reach the
    destination domain.In case if the message expiration time is crossed for an particular message then the exchange server will drops the message and send an NDR to the sender mailbox.
    In your case ,In you have any of those messages on the queues we can able to deliver those messages to the destination recipient.In case if the sender has received the NDR due to incorrect recipient address then the final chance would be re sending that
    message again to the recipient from sender's mailbox.
    Thanks & Regards S.Nithyanandham

  • RecipientThreadLimitExceeded in message tracking logs, queuing and holding up local email delivery to office365

    Please let me know if anyone knows an answer to this one... We're in a Hybrid Exchange environment, with 2 x Exchange 2007 servers,  and 1 x Exchange 2013 Hybrid server which is pointing to Office 365 for the purposes of relaying mail to O365 while
    we migrate our users out there.
    We have just finished migrating, but just a couple of days ago we started experiencing delays in email delivery to O365... Not all mail, but some!  Incoming email or locally generated email gets relayed out through the Hybrid server and out to O365,
    but not all email is delayed... only some, but it's constant.  During the busiest part of the day, about 200 messages are sitting in the Queue in Exch2013... but they all eventually resolve between 5 and 45minutes.  The users are not happy.
    The last error in the queue viewer for each hung email reads:  451 4.4.0 Temporary server error.  Please try again later.
    If I look at the message tracking logs, I find an interesting item -- "RecipientThreadLimitExceeded":
    2014-05-15T14:15:51.608Z,192.168.3.11,hydra,207.46.163.215,company-mail-onmicrosoft-com.mail.protection.outlook.com,RecipientThreadLimitExceeded,Outbound to Office 365,SMTP,DEFER,10307921510617,<[email protected]>,885ea3ce-a020-41b1-8950-08d13e58d6d3,[email protected],451
    4.4.0 Temporary server error. Please try again later,10117,1,,,Read: This is your generic subject line,[email protected],[email protected],2014-05-15T14:16:51.608Z,Undefined,,,,S:Microsoft.Exchange.Transport.MailRecipient.RequiredTlsAuthLevel=Opportunistic;S:Microsoft.Exchange.Transport.MailRecipient.EffectiveTlsAuthLevel=EncryptionOnly;S:DeliveryPriority=Normal
    I have tried to find some documentation on resolution for this RecipientThreadLimitExceeded error, but I can only come up with some Exchange 2011 documentation which recommends adding some entries to the EdgeTransport.exe.config file to bump up the RecipientThreadLimit
    value... I have not found anything pertaining to 2013.  I cannot even find any powershell commands to see what the current RecipientThreadLimit is on 2013!  Aghg!
    Has anyone seen this before, or have any recommendations?
    Thank you,
    Mike

    After many days of frustration, Microsoft Support finally resolved this issue.  Believe it or not, but the issue was actually on the Office365 side.  Here's the fix:
    Exchange Admin Center -> Mail Flow -> Connectors -> Inbound Connectors
    Open your "Inbound from <guid>" with the "On-premises" connector type
    Click on Scope -> scroll down to "Associated accepted domains"
    We had an entry in there "<organization>.mail.onmicrosoft.com"... Microsoft support had us remove this entry so that the box was completely empty.
    That RESOLVED it... amazing what what little entry could do.  We've had this entry in there for about 2 months, and it had been working fine.  Support acknowledged that several customers have had this issue, that they are working on getting it
    fixed on the back-end.
    Hope this helps somebody... 
    -Mike

  • MQseries Queue depth

    Hello,
    I am using JMS for accessing MQseries. Can anyone tell me asto how can i find the current depth and maximum depth of a queue using the JMS calls.? I am using IBM java classes for JMS.my MQseries verion is 5.2
    Thanks
    Joe Cherian

    I'm afraid that the JMS spec, for some bizarre reason, do not have any APIs for getting the depth of a queue. So, the only way to find the depth of a queue in JMS is to create a browser and browse every message in the queue, and count them. This is quite a neat solution as long as you only have a few messages. If you have thousands you will spend all your time browsing queues not processing them.
    Also I believe there is also a bug in MQ 5.2 and JMS whereby if you do not browse ALL the messages, but stop halfway through instead, then you will not release some resource that MQ uses. After xx number of doing this ( depends on your maximum open handles for the queue manager ) MQ dies. So if you ARE going to browse an MQ 5.2 queue, browse all of it.
    The way around it we are using is to have JMS adapters for our app, and having mutant/hybrid MQ adapters as well, which use JMS for nearly everything, including transactional gets and puts, and has an MQ queue manager for getting the MQ Series queue depth natively. Not ideal, but it allows us to use JCA/XA etc with MQ Series. I have no idea how you get the max depth of a queue, unless you can find it in the api docs then you may have to use a native call.

  • FCS2- Importing ( AVC HD) from Sony Hybrid HDRSR12

    Hello to all FCS2 users.
    (Please forgive me if this question has already been posted.)
    I have a Mac G5 with Final Cut Studio 2.
    I was in the midst of purchasing the Sony Hybrid HDRSR 12 camcorder, but... unbeknownst to me,
    I discovered that I will not be able to import any video from its digital hard drive via FCS2, due to the fact that this particular SONY (tape-less) product can only work with a Mac that has the Intel chip. (?)
    I spoke to someone at Sony about this enigma and they in turn informed me that there "might be" a plug-in/codec available for the regular Mac G5/Final Cut Pro 6.0.4 (Studio 2) users.
    I hope this makes sense.
    Does anyone know?
    Please let me know before I am forced to purchase a Mini-DV camcorder.

    Here's what I've been doing. I noted you already have the Mac hardware and OS covered; don't know if FCP6 (FCS2) is required for the SR12 as I only picked up FCS2 recently (was using FCE). Anyway,...
    I've got the cradle/dock plugged directly into a USB port on the front of the Mac, not through a hub (don't know if it matters; don't have a hub to try it). With the SR12 docked, turning on the camera automatically brings up the "USB select" screen, at which point I'm choosing the top/left "USB connect" option (the one with the hard drive icon). The SR12 then tells me "Connected" - end of SR12 setup ("that was easy").
    I've launched FCP and selected "Log and Transfer..." from the File menu. This brings up the Log and Transfer window; it briefly shows a "{camera_name} adding..." message, and then a list of clips with the (default) name, first frame still, volume name, media start (00:00:00;00) and media duration for each. If I select the first clip and click on "Add Selection to Queue", it begins transferring the clip. It shows a general status that implies it's transferring, but no elapsed or time remaining (which would be "nice"). Using an HC7 and Firewire, a 30 minute clip would take 30 minutes to "Log and Capture" in realtime; using the SR12, a 27:12;18 clip (recorded in FH mode) took approx. 24 minutes (I'm guessing lower quality/resolution clips would be smaller and consequently faster). Personally, I think the best advantage of the "Log and Transfer" method is that it's a background process; I can do other things (like this) while it's working.
    Note: I didn't see any codec choices during the "Log and Transfer" process, although in the "tasks" menu (pop up menu with gear icon), under "preferences", there are two "sources" listed - both appear to default to the "Apple ProRes 422" option for video. For the "AVCHD Plugin" source (which I'm guessing applies in this case), there's an "Apple Intermediate Codec" transcode option, but selecting it doesn't give me any other sub-options for 50i or anything else, so I'm not sure where that comes in.
    Hope this helps.

  • Getting all values from a queue

    Hi all,
    I have a queue as follows:
    [123] - intital Context
    [sollinger Str]
    [123] - CC
    [Solinger Str]
    [123] - Final context
    An image of the queue looks as follows:
    [http://i42.tinypic.com/hsj052.jpg]
    Iam getting this queue in a userdefined function. I want to get or copy all the values from this queue to a new array as follows without any contexts.
    That is, I want to have a queue as follows from the above queue.
    [123]
    [sollinger Str]
    [123]
    [Solinger Str]
    [123]
    How could that be done...
    Thanks
    P

    Hi guys...thanks 1 more thing
    If My inbound queue "a" is as follows:
    SUPRESS
    AP
    YG
    LF
    contextChange
    YG
    LF
    Final Context
    In my Queue "b" which is as follows
    SUPRESS
    123
    sollinger...
    123
    Sollinger...
    123
    FinalContext
    My requirement is in my "b" queue , I want to put a CC as follows by using a  standard node function if possible
    SUPRESS
    123
    sollinger...
    123
    contextChange
    Sollinger...
    123
    FinalContext
    IF THAT dont work Inside my UDF I want to put thE CC for the b queue.
    How will the loop behave then?
    What will be passed to my input queue "a" and "b" when execute "all values on context" is set.
    "a" has a context and "b" doent have one.
    My UDF
    public static void Test(String[] a,
                                           String[] b,
                                           ResultList result,
                                           Container container){
    //Contains no context change
        String b[] = {ResultList.SUPPRESS,"12","sollinger","12","sollinger","12",
                      ResultList.CC};
    I make the following steps
    copy to an arraylist. add a context change in between.
    copy back to string b.

  • Problem with Queue and threads

    Hello,
    the following is the code :
    public class Tester extends Thread
    private String fname;
    public String getFname()
       return fname;
    public void setFname(String fname)
       this.fname = fname;
    public Tester(String fname){
       super();
      this.fname = fname;
    }Heres another class
    class N {
        Thread r = null;
        public void checkQ()
          Queue q = new ConcurrentLinkedQueue<N>();
          for(int i = 0; i < 13; i++)
             System.out.println("FOR I is "+i);
             r = new Tester("Name" + i);
             q.offer(r);
             processq(q);
        public void processq(Queue queueOfM)
           if(queueOfM.size() > 10)
              System.out.println("size of queueofM is "+queueOfM.size());
            for(int j=0; j < queueOfM.size();j++)
                 System.out.println("J is "+j);
                 this.r = (Thread)queueOfM.poll();
                 this.r.start();
       }When run, the code prints :
    FOR I is 0
    FOR I is 1
    FOR I is 2
    FOR I is 3
    FOR I is 4
    FOR I is 5
    FOR I is 6
    FOR I is 7
    FOR I is 8
    FOR I is 9
    FOR I is 10
    size of queueofm is 11
    J is 0
    J is 1
    J is 2
    J is 3
    J is 4
    J is 5
    FOR I is 11
    FOR I is 12I was expecting the code to print the J till 11.
    Could you please help me find where I went wrong ?

    I think I may have been asking a wrong question.
    class N {
        Thread r = null;
        public void checkQ()
          Queue q = new ConcurrentLinkedQueue<N>();
          for(int i = 0; i < 13; i++)
             System.out.println("FOR I is "+i);
             r = new Tester("Name" + i);
             q.offer(r);
             processq(q);
        public void processq(Queue queueOfM)
           if(queueOfM.size() > 10)
              System.out.println("size of queueofM is "+queueOfM.size());
            for(int j=0; j < queueOfM.size();j++)
                 System.out.println("J is "+j);
                 this.r = (Thread)queueOfM.poll();
                 this.r.start();
              }The if in the processq method will come true when I is 11. so, once in the if, the for loop is executed. The j is checked till it is < 11 and then the value of j is being printed. So, as I was expecting J should print till atleast 10. However it is printing till 5 and quitting the loop, I dont know how or why, for which I was thinking if someone could show me why.

  • Firefox 4 initially worked fine, but after a back-up and restoration (now on a hybrid disk) it cannot find the bookmarks and crashes when I attempt to open the HTML file

    I installed Firefox 4 on my 2010 13" MBP, standard configuration. It worked fine except that it didn't recognize any of the add-ons I was using and, to be frank, I don't like the interface as much as v.3. But ...
    Then I backed up the entire HD, wiped the HD, removed it and replaced it with a Seagate hybrid HD. I then booted from the b/u and installed the entire HD contents on the new hybrid HD. Everything runs fine except for one thing -- Firefox 4 now will not recognize my bookmarks.
    I tried reinstalling FF4 but this made no difference.
    I did the b/u and restoration with Carbon Copy Cloner which I have used successfully for many b/u and restore operations on this and the white MB I previously owned.
    Uh oh! I just tried to save a new bookmark (of this page) and it did not save -- or at least, it did not show in the "Show all Bookmarks" pane.
    HOWEVER, when I start typing in a URL, it FF4 comes up with the completed URL in a flash. e.g. I typed "wiz" and FF4 showed me the completed URL (which should be in my Toolbar bookmarks and which I visit t least once daily).
    Kind regards
    Geoffrey Heard
    Business & Environment Writer, Editor, Publisher
    The Worsley Press

    Do a clean (re)install and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\).
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 10.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible.
    *Do NOT remove personal data when you uninstall the current version or you lose your bookmarks and other data because all profile folders will be removed.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored elsewhere in the Firefox Profile Folder and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Performanc​e and W/R-Queue problems

    I'm new to NICAN programming and I'm in trouble with some weird behaviour:
    To measure bus-load with "KVASER Navigator" i wrote a simple program that sends very quickly a great number of frames.
    The first thing i noticed is the poor performance, reaching only about 70% of bus-load at 100K and at full processor load.
    And the second, (n := number of sent frames) only
    n-WRITE_QUEUE_LENGTH frames are send, the rest still is in the queue until a Queue-Overflow happens and the remaining 10 frames are sent, but at least 1 frame (which causes the Queue-Overflow still remains in the queue).
    Im using Celeron-600MHz, Win2000+SP5, NICAN PCI S2 (1Port) + newest driver 2.1.2 Beta
    My sourcecode: please see file-attachment CanBusLoa
    dTest.cpp
    Attachments:
    CanBusLoadTest.cpp ‏3 KB

    Try setting a larger write buffer. Also see this KnowledgeBase about Optimizing CAN performance:
    http://digital.ni.com/public.nsf/websearch/7076642​EBC9B819986256CEE00805F60?OpenDocument

  • Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time

    Dear all,
    sorry for opening another thread on this.
    I think I have a performance issue with workflows attached to document sets in SharePoint. And I say “I think” because people keep telling me that this is the way it just is.
    The user creates a new document set, which triggers a workflow in which the user has to confirm/review/approve a series of tasks. The time it takes from clicking the OK button on those task form to the workflow status moving to the next step is about 4 seconds.
    And visiting that status page within those 4 seconds brings up the infamous “Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.” message.
    Hitting Refresh in the browser after those 4 seconds will make the new workflow status appear and the red text go away.
    Is that normal? Is that the performance that everyone else is seeing as well?
    I struggle to see why simply moving a workflow from one task to another should take that on a machine that isn’t doing anything else at the time.
    (1)   
    I have a standalone (non-clustered) SharePoint box, 4 CPUs, 8 GB of memory, more than half of that available, acting as application server and wfe; only the database is on different box.
    (2)   
    The CPU only goes up to 18 or 19%, so CPU does not seem to be the bottleneck. Half the RAM is also still free.
    (3)   
    The workflow is designed with Nintex, and has about 9 flexi and review tasks – the last 2 of them in a loop iterating over typically 3 or 4 items.
    (4)   
    Looking at the logs it looks like the processing in Nintex only takes about 1 second – I don’t know where the other 3 seconds are going.
    (5)   
    There is nothing obvious in the logs.
    (6)   
    We’ve looked at all the “theoretical” improvements around throttling and batch sizes etc. – none of them appeared make any difference. And the workflow is so small that it looks like my tasks gets executed straight away. The problem appears
    to be that the execution takes too long(?) and therefore has not finished by the time the page get redrawn.
    (7)   
    I am running perfmon and I can e.g. see one(!) workflow being loaded into memory – as expected as I am the only user.
    (8)   
    I am seeing a total of 3(?) SQL queries being executed(?). I get the Bytes Sent/sec spiking at 25K, and Bytes received at 18K. But is this good or bad or a bottleneck?
    Where do I take it from here?
    I have been told that “[…] most customers have no issue with this as they are used to the way SP operates and it can be slow at times.” Is it really that bad?
    If it is worth watching more performance counters then I’d need to know what to compare them to.
    Is there something else I am missing?
    Thanks
    Martin

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig | Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold 100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig | Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize 200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.

    I have SharePoint 2010 Enterprise running SP1. Configuration is one SharePoint server in the farm and a SQL 2008 R2 database for the backend. Our user environment is 80 users with very little load on the SharePoint server. I have the workflow timer
    set to 1 minute.
    I have a SPD workflow that starts manually on a form library. Whenever I publish a new version of the workflow, the next time I start the workflow it takes the full minute to finish. If I click on the workflow status before it finishes, I see the message
    "Due to heavy load, the latest workflow operation has been queued. It will
    attempt to resume at a later time.". After the minute completes the workflow finishes.
    Here's the weird thing, the next time I start the workflow, it runs in a couple of seconds - almost instantly. I've tried up to 15 times after the inital publishing and everything seems to work fine on initiation.
    Well, that would be fine for me, however, I intermintantly get this heavy load message during task processes that are running inside the workflow. It's probably less than 5% of the time. It's really frustrating though so I appreciate some help. I'm look
    online and haven't found anything that describes my situation.
    Thank you in advance!

    Hi,
    Before considering an additional hardware try to change following configurations for workflow:
    Increase Throttle Size
    Increase Batch Size
    Time Out
    Workflow Timer Interval
    AutoCleanUpDays
    Increase Throttle Size
    The Workflow throttle setting controls how many Workflows can be processing at any one time on the entire server farm. By increasing the throttle it will allow the number of Workflows execution or can be initiated at a time.
    Use below PowerShell command to get the current Throttle Size:
    Get-SPFarmConfig |
    Select WorkflowPostponeThreshold
    Use below PowerShell command to set new Throttle Size:
    Set-SPFarmConfig -WorkflowPostponeThreshold
    100
    Increase Batch Size
    This is the size that determines number of events processed for a single Workflow instance. Default value is 100, but it can be range from 1 to any number.
    Use below PowerShell command to get the current Batch Size:
    Get-SPFarmConfig |
    Select WorkflowBatchSize
    Use below PowerShell command to set new Batch Size:
    Set-SPFarmConfig -WorkflowBatchSize
    200
    Time Out
    This decides the time out of the Workflow event. The default value is 5 and can be any integer. The time is in minute.
    Use below STSADM command to get the current Time Out value:
    stsadm -o getproperty -pn workflow-eventdelivery-timeout
    Use below STSADM command to get the current Time Out value:
    stsadm -o setproperty -pn workflow-eventdelivery-timeout -pv “15″
    Workflow Timer Interval
    This setting is applicable at Web Application level and not the farm level. The workflow timer interval specifies how often the workflow SPTimer job fires to process pending workflow tasks. This interval also represents the granularity of delay timers within
    your workflow. If a timer is set to delay for one minute, but the interval timer fires only every five minutes, the workflow delays for five minutes, not one minute.
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o getproperty -pn job-workflow -url <Web Application Url>
    Use below STSADM command to get the current Workflow Timer Interval value:
    stsadm -o setproperty -pn job-workflow -pv “Every 10 minutes between 0 and 30″ -url <Web Application Url>
    Here is the url for reference :
    http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/

  • How to Get One MQ Message at a time from MQ Queue

    Hi,
    Before posting my query here is the configuration I am using:_
    Weblogic Server 10.3.3
    Soa Server 11.1.1.3.0
    Oracle JDeveloper 11.1.1.3.0
    Till now I have done the following things:_
    1) created an MQ Queue
    2) Producing MQ Messages in the Queue with the help of an Asynchronous BPEL process.
    I can see the message put in the Queue:
    What is my requirement?_
    1) I want to read (Get) only one of the above created MQ Messages in the main BPEL process(Synchronous), then needs to process it
    And based on my Business condition I have to write that message in the Database.
    After successful completion of this instance only my main process should go to consume the next message in the MQ queue.
    What is the problem I am facing?_
    1) The main BPEL process is not reading one message at a time. I.e. if there are 10 messages in the queue, then as soon as the main bpel process gets deployed, 10 instances created automatically, all in running status and Queue gets empty
    2) And if I explicitly test the process, the processes always go in running mode. I.e. Waiting for the messages at the receive activity (this receive is attached to the MQ adapter through operation Get in the main BPEl process)
    I just want to know how I can read the MQ messages one by one, though there may be n number of messages in the MQ queue
    And only after the completion of the first instance (of Reading First MQ message from queue) it would go to initiate the next instance and so on
    Would anyone please help me in this issue?
    Thanks
    Sunil

    Is the MQ Queue local or remote?

Maybe you are looking for

  • After I hit submit, why isn't it compressing?

    I'm new to Compressor. I created "settings" and a "destination" for my project, then I hit submit. The file appears in the history window but it seems to be inactive. Why isn't it compressing?

  • JDeveloper-Questions

    Hello,iam new in JDeveloper(10.1.3) and iam facing some problems during the transition of an application to the web.I will be graceful if somebody could help me. My questions are: 1)How can i display my error or information messages (that i have stor

  • Can't use function in creating record group

    Gurus, This question is for developers. Is this true one can't use function in creating record group. I am using form5. thanks, ZW

  • SAP SD Certification

    Dear Consultants, I would like to do SAP SD Certification, but i would like to directly give exams & not through costly mode of joining Genovate. I have an reasonable expeience (eventhough not in IT company) . Please let me know the process & require

  • Preserve Manual Overrides

    Hi All, I have a script which find  all the paragraph styles in myFind Array and change all the paragraph styles as per in the name of myChange Array. Request: Changing Paragraphs Styles without clear overrides or preserve local overrides like manual