Odd Behavior with Segmented Control (iPhone OS 3.1)

I have this method, which is supposed to change the color that a shape is to be drawn in when I change the value of a segmented control:
- (IBAction)changeColor: (id)sender {
UISegmentedControl *control = sender;
NSInteger index = [control selectedSegmentIndex];
QuartzFunView *quartzView = (QuartzFunView *)self.view;
switch (index) {
case kRedColorTab:
quartzView.currentColor = [UIColor redColor];
quartzView.useRandomColor = NO;
break;
case kBlueColorTab:
quartzView.currentColor = [UIColor blueColor];
quartzView.useRandomColor = NO;
case kYellowColorTab:
quartzView.currentColor = [UIColor yellowColor];
quartzView.useRandomColor = NO;
break;
case kGreenColorTab:
quartzView.currentColor = [UIColor greenColor];
quartzView.useRandomColor = NO;
break;
case kRandomColorTab:
quartzView.useRandomColor = YES;
break;
default:
break;
The issue here is that everything works...except for just the blue segment (the second segment).
The drawRect method I'm using is as follows:
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextSetStrokeColorWithColor(context, currentColor.CGColor);
switch (shapeType) {
case kLineShape:
CGContextMoveToPoint(context, firstTouch.x, firstTouch.y);
CGContextAddLineToPoint(context, lastTouch.x, lastTouch.y);
CGContextStrokePath(context);
break;
case kRectShape:
break;
case kImageShape:
break;
default:
break;
and kBlueColorTab is defined as
typedef enum {
kRedColorTab = 0,
kBlueColorTab,
kYellowColorTab,
kGreenColorTab,
kRandomColorTab
} ColorTabIndex;
As I've said before, all the tabs except for that specific one works. I've double checked the connections and syntax as well, and I can't figure out what's wrong. Am I'm just missing something, or is there something else going on here that I'm not aware of?
BTW, this code is from Chapter 12 of Mark and LaMarche's +Beginning iPhone 3 Development+ book, for the sake of a context.
Message was edited by: musicwind95
UPDATE: After filling in the rest of that switch statement, the same issue occurs for rectangles and ellipses. The fill color, which is the same as the stroke, is red for the red segment, yellow for both the blue and yellow segment, and green for the green segment. The random segment works properly as well, just not the blue one.
Message was edited by: musicwind95

You just forgot the break statement at the end of the blue case. Thus execution "falls through" into the yellow case, so the color for kBlueColorTab is yellow. Some C programmers move the break back one tab so it's absence is more visible. E.g.:
switch (index) {
case kRedColorTab:
quartzView.currentColor = [UIColor redColor];
quartzView.useRandomColor = NO;
break;
case kBlueColorTab:
quartzView.currentColor = [UIColor blueColor];
quartzView.useRandomColor = NO;
break
case kYellowColorTab:
quartzView.currentColor = [UIColor yellowColor];
quartzView.useRandomColor = NO;
break;
- Ray

Similar Messages

  • Navigation Bar with Segmented Control

    I've been looking everywhere for this, I just don't get it ...
    I'm completly new to iPhone development and the last few days I've been playing around with it.
    Here's what I want: a navigation bar with Segmented controls (like you would see in the App store with 'New' and 'What's Hot') and when you select a segment, a view will be loaded, Just like it is in the App store, and then you can switch between the segments.
    I've been looking and the only thing i've found is how to change the background color:
    - (IBAction)changeSeg {
    if (segControl.selectedSegmentIndex == 0) {
    self.backgroundColor = [UIColor whiteColor];
    if (segControl.selectedSegmentIndex == 1) {
    self.backgroundColor = [UIColor blueColor];
    if (segControl.selectedSegmentIndex == 2) {
    self.backgroundColor = [UIColor greenColor];
    Thanks in advance! (it's probably very simple but I just can't find it)

    I implemented something similar. In my case the view was a UITableView, so I simply set the data source and delegate to a specified UITableViewController based on the segmented control and then reloaded the table.
    If there is a better solution, I would also like to know about it.

  • Odd Behavior with Multi-page Forums

    I have observed an odd behavior, when navigating multi-page forums.
    As an example, I use the Premiere Elements Tips & Tricks sub-forum often, to link to helpful articles. It is, like most, a multi-page forum.
    As the order of the articles will change, as new replies are added, I often need to navigate to multiple pages, to find the one that I need. My bookmark opens that forum onto Page 1, which is normal. I then scroll that page, looking for what I want. If it is not there, I will use either the Next, or the Page 2 buttons to move on. As I have scrolled to the bottom of Page 1, the Next (or Page 2) page will open at the bottom, rather than at the top, the first time that I do this. Pages 3, and above, will always open at the top. Also, if I go back to Page 2, it now opens at the top. I only see this, when going from Page 1, to Page 2, and then, only the first time. Odd, but no deal breaker, as I just manually scroll back to the top of Page 2, and then scroll down, looking for a particular article.
    I am on Chrome and Win XP-Pro SP-3. I have not yet tried in IE 7 - my latest version.
    Has anyone else experienced this little anomaly?
    Hunt

    Adobe-admin,
    Sorry, but I am out of "points... "
    Thank you for the input. I just found it slightly odd behavior, and all that it means is a bit of scrolling, now that I know what to expect. In most cases, the average user probably does not go to Page 2 of a forum, but many of us do. If it becomes a pain, I'll just jump quickly to Page 3, and then back to Page 2.
    Hey, Adobe never promised to make my life perfect - just better... I can easily live with this, but thought I'd ask, in case it was OE on my part.
    Appreciated,
    Hunt

  • Unexpected  behavior with data control palette after migration to 10.1.3

    I recently migrated my adf/struts app to 10.1.3 from 10.1.2.
    The app compiles and runs fine in jdev, and the migration had no errors.
    When I try to drag and drop attributes from the data control palette onto an existing (or new) page I get the “you can’t drop that here icon” circle with a line through it.
    This happens on all my pages and for every attribute in the data control including actions.
    Is this the intended behavior? In 10.1.2 there was a section that asked if it should be dropped as a label or text field etc, I don’t see that option anymore.
    I can still use the component palette  JSTL 1.0 core “out” and drag that onto the page and then bind the value to binding.attname. this works fine.
    In 10.1.3 faces I see that when I drag and drop I get a popup menu which shows the available type of component to drop the item as.
    Is this the correct behavior or am I missing something?
    I'm using jdev version 10.1.3.0.4 (SU2)
    Thanks

    So as far as I can tell the issue bioled down to having something wrong with my libraries definition. When would go to the project properties the libraries tab would not show correctly, I was able to remove some libraries and then add them back in. This made the libraries tab in the project properties work, and as a side effect fixed the data control drag and drop.
    thx

  • Strange behavior with images from iPhone

    I'm wondering if anyone else has seen this behavior or can replicate.
    Take some pictures using an iPhone 3Gs (can't tell if it happens with other models).
    Bring the images into iPhoto and then drag them out to regular folders.
    Choose Cmd/Ctrl-D to place.
    The image, which is in Portrait orientation, comes into CS5 strangely.
    The frame does not hug the correct orientation of the image. Instead it follows a landscape orientation as if the image was rotated 90 degrees.
    When you let go from dragging the frame, the image appears vertical within the lanscape frame.
    The only way to get the frame any way close to the vertical orientation is to hold the Shift key.
    I have also noticed that these images are added to a video editing program rotated into a landscape mode.

    There's no such thing as a vertical or horizontal image with iPhones or any phone that sports and accelerometer. It's just a tag they add to images that is inconsistently supported. All photos are landscape, just some are tagged to indicate they are portrait. It's like when I was growing up I always thought my dad was Superman only to later find out he was just a drunk wearing a cape.
    If you want to just pull the images directly off the phone or just a generally nice thing for your iPhone/Pod/Pad you can get PhoneDisk. Costs nothing and works great other than my minor user interface complaint that they take advantage of the menubar's menuextras area that is supposed to be Apple only and hardware only at that. Human Interface Guidelines aside, it is a really nice utility.
    http://www.macroplant.com/phonedisk/

  • Odd behavior with linux 2.6.35.6 (ATI, average load and memory)

    hello folks
    have you tried the 2.6.35.6 kernel? 'cause i am having some problems with it.
    when i first upgrated, i compiled my kernel from www.kernel.org and at my first boot i noticed an 50 MB increase on the memory consumption ( the one that you get with "Free -m").
    normally with the 2.6.34.2 kernel i got ~200MB with kde running but with this version i got ~252MB, i also got this stats with the official archlinux's kernel.
    the second thing i notice is that the load average is nearly 0.50 all the time in 2.6.35.6 from archlinux's repos and the compiled by myself , and the system is on idle at that time
    and for last i got odds quirks from the radeon driver, i got a Radeon HD 3300 (integrated nothing fancy ) and it worked right on 2.6.33 and 2.6.34 but with 2.6.35 and 2.6.36-rc5 after some minutes the system kicks me to KDM,
    here i have the logs from the kernel 2.6.36-rc5 and the 2.6.34 ( the last one that worked right), please just check the finals 5 lines of the following log
    Sep 27 19:47:22 localhost kernel: Linux version 2.6.36-rc5-git7 (slack@Soul) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Mon Sep 27 13:05:35 CLT 2010
    Sep 27 19:47:22 localhost kernel: Command line: root=/dev/disk/by-uuid/6448e149-dad3-4aa2-ab86-a71b0ffbfae3 ro
    Sep 27 19:47:22 localhost kernel: BIOS-provided physical RAM map:
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 0000000000100000 - 000000006ffb0000 (usable)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 000000006ffb0000 - 000000006ffbe000 (ACPI data)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 000000006ffbe000 - 000000006ffe0000 (ACPI NVS)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 000000006ffe0000 - 0000000070000000 (reserved)
    Sep 27 19:47:22 localhost kernel: BIOS-e820: 00000000ff700000 - 0000000100000000 (reserved)
    Sep 27 19:47:22 localhost kernel: NX (Execute Disable) protection: active
    Sep 27 19:47:22 localhost kernel: DMI present.
    Sep 27 19:47:22 localhost kernel: AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    Sep 27 19:47:22 localhost kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    Sep 27 19:47:22 localhost kernel: e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    Sep 27 19:47:22 localhost kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    Sep 27 19:47:22 localhost kernel: No AGP bridge found
    Sep 27 19:47:22 localhost kernel: last_pfn = 0x6ffb0 max_arch_pfn = 0x400000000
    Sep 27 19:47:22 localhost kernel: MTRR default type: uncachable
    Sep 27 19:47:22 localhost kernel: MTRR fixed ranges enabled:
    Sep 27 19:47:22 localhost kernel: 00000-9FFFF write-back
    Sep 27 19:47:22 localhost kernel: A0000-EFFFF uncachable
    Sep 27 19:47:22 localhost kernel: F0000-FFFFF write-protect
    Sep 27 19:47:22 localhost kernel: MTRR variable ranges enabled:
    Sep 27 19:47:22 localhost kernel: 0 base 000000000000 mask FFFFC0000000 write-back
    Sep 27 19:47:22 localhost kernel: 1 base 000040000000 mask FFFFE0000000 write-back
    Sep 27 19:47:22 localhost kernel: 2 base 000060000000 mask FFFFF0000000 write-back
    Sep 27 19:47:22 localhost kernel: 3 disabled
    Sep 27 19:47:22 localhost kernel: 4 disabled
    Sep 27 19:47:22 localhost kernel: 5 disabled
    Sep 27 19:47:22 localhost kernel: 6 disabled
    Sep 27 19:47:22 localhost kernel: 7 disabled
    Sep 27 19:47:22 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Sep 27 19:47:22 localhost kernel: initial memory mapped : 0 - 20000000
    Sep 27 19:47:22 localhost kernel: Using GB pages for direct mapping
    Sep 27 19:47:22 localhost kernel: init_memory_mapping: 0000000000000000-000000006ffb0000
    Sep 27 19:47:22 localhost kernel: 0000000000 - 0040000000 page 1G
    Sep 27 19:47:22 localhost kernel: 0040000000 - 006fe00000 page 2M
    Sep 27 19:47:22 localhost kernel: 006fe00000 - 006ffb0000 page 4k
    Sep 27 19:47:22 localhost kernel: kernel direct mapping tables up to 6ffb0000 @ 16000-19000
    Sep 27 19:47:22 localhost kernel: RAMDISK: 37e5a000 - 37ff0000
    Sep 27 19:47:22 localhost kernel: ACPI: RSDP 00000000000f9580 00014 (v00 ACPIAM)
    Sep 27 19:47:22 localhost kernel: ACPI: RSDT 000000006ffb0000 0003C (v01 061209 RSDT1738 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI: FACP 000000006ffb0200 00084 (v01 061209 FACP1738 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20100702/tbfadt-557)
    Sep 27 19:47:22 localhost kernel: ACPI: DSDT 000000006ffb0440 0A5C4 (v01 1AAAA 1AAAA000 00000000 INTL 20051117)
    Sep 27 19:47:22 localhost kernel: ACPI: FACS 000000006ffbe000 00040
    Sep 27 19:47:22 localhost kernel: ACPI: APIC 000000006ffb0390 0006C (v01 061209 APIC1738 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI: MCFG 000000006ffb0400 0003C (v01 061209 OEMMCFG 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI: OEMB 000000006ffbe040 00072 (v01 061209 OEMB1738 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI: HPET 000000006ffbaa10 00038 (v01 061209 OEMHPET 20090612 MSFT 00000097)
    Sep 27 19:47:22 localhost kernel: ACPI: SSDT 000000006ffbaa50 0088C (v01 A M I POWERNOW 00000001 AMD 00000001)
    Sep 27 19:47:22 localhost kernel: ACPI: Local APIC address 0xfee00000
    Sep 27 19:47:22 localhost kernel: [ffffea0000000000-ffffea00019fffff] PMD -> [ffff880001e00000-ffff8800037fffff] on node 0
    Sep 27 19:47:22 localhost kernel: Zone PFN ranges:
    Sep 27 19:47:22 localhost kernel: DMA 0x00000010 -> 0x00001000
    Sep 27 19:47:22 localhost kernel: DMA32 0x00001000 -> 0x00100000
    Sep 27 19:47:22 localhost kernel: Normal empty
    Sep 27 19:47:22 localhost kernel: Movable zone start PFN for each node
    Sep 27 19:47:22 localhost kernel: early_node_map[2] active PFN ranges
    Sep 27 19:47:22 localhost kernel: 0: 0x00000010 -> 0x0000009f
    Sep 27 19:47:22 localhost kernel: 0: 0x00000100 -> 0x0006ffb0
    Sep 27 19:47:22 localhost kernel: On node 0 totalpages: 458559
    Sep 27 19:47:22 localhost kernel: DMA zone: 56 pages used for memmap
    Sep 27 19:47:22 localhost kernel: DMA zone: 0 pages reserved
    Sep 27 19:47:22 localhost kernel: DMA zone: 3927 pages, LIFO batch:0
    Sep 27 19:47:22 localhost kernel: DMA32 zone: 6215 pages used for memmap
    Sep 27 19:47:22 localhost kernel: DMA32 zone: 448361 pages, LIFO batch:31
    Sep 27 19:47:22 localhost kernel: ACPI: PM-Timer IO Port: 0x808
    Sep 27 19:47:22 localhost kernel: ACPI: Local APIC address 0xfee00000
    Sep 27 19:47:22 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Sep 27 19:47:22 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Sep 27 19:47:22 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Sep 27 19:47:22 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Sep 27 19:47:22 localhost kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Sep 27 19:47:22 localhost kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    Sep 27 19:47:22 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Sep 27 19:47:22 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Sep 27 19:47:22 localhost kernel: ACPI: IRQ0 used by override.
    Sep 27 19:47:22 localhost kernel: ACPI: IRQ2 used by override.
    Sep 27 19:47:22 localhost kernel: ACPI: IRQ9 used by override.
    Sep 27 19:47:22 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Sep 27 19:47:22 localhost kernel: ACPI: HPET id: 0x8300 base: 0xfed00000
    Sep 27 19:47:22 localhost kernel: SMP: Allowing 4 CPUs, 0 hotplug CPUs
    Sep 27 19:47:22 localhost kernel: nr_irqs_gsi: 40
    Sep 27 19:47:22 localhost kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Sep 27 19:47:22 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000
    Sep 27 19:47:22 localhost kernel: PM: Registered nosave memory: 00000000000e6000 - 0000000000100000
    Sep 27 19:47:22 localhost kernel: Allocating PCI resources starting at 70000000 (gap: 70000000:8f700000)
    Sep 27 19:47:22 localhost kernel: early_res array is doubled to 64 at [18000 - 187ff]
    Sep 27 19:47:22 localhost kernel: setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
    Sep 27 19:47:22 localhost kernel: PERCPU: Embedded 26 pages/cpu @ffff880001600000 s77696 r8192 d20608 u524288
    Sep 27 19:47:22 localhost kernel: pcpu-alloc: s77696 r8192 d20608 u524288 alloc=1*2097152
    Sep 27 19:47:22 localhost kernel: pcpu-alloc: [0] 0 1 2 3
    Sep 27 19:47:22 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 452288
    Sep 27 19:47:22 localhost kernel: Kernel command line: root=/dev/disk/by-uuid/6448e149-dad3-4aa2-ab86-a71b0ffbfae3 ro
    Sep 27 19:47:22 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Sep 27 19:47:22 localhost kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Sep 27 19:47:22 localhost kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
    Sep 27 19:47:22 localhost kernel: Checking aperture...
    Sep 27 19:47:22 localhost kernel: No AGP bridge found
    Sep 27 19:47:22 localhost kernel: Node 0: aperture @ 5b5a000000 size 32 MB
    Sep 27 19:47:22 localhost kernel: Aperture beyond 4GB. Ignoring.
    Sep 27 19:47:22 localhost kernel: Subtract (44 early reservations)
    Sep 27 19:47:22 localhost kernel: #1 [0001000000 - 000149e660] TEXT DATA BSS
    Sep 27 19:47:22 localhost kernel: #2 [0037e5a000 - 0037ff0000] RAMDISK
    Sep 27 19:47:22 localhost kernel: #3 [000009f000 - 0000100000] BIOS reserved
    Sep 27 19:47:22 localhost kernel: #4 [000149f000 - 000149f13f] BRK
    Sep 27 19:47:22 localhost kernel: #5 [0000010000 - 0000012000] TRAMPOLINE
    Sep 27 19:47:22 localhost kernel: #6 [0000012000 - 0000016000] ACPI WAKEUP
    Sep 27 19:47:22 localhost kernel: #7 [0000016000 - 0000018000] PGTABLE
    Sep 27 19:47:22 localhost kernel: #8 [000149f140 - 00014a0140] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #9 [000149e680 - 000149e760] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #10 [0001ca1000 - 0001ca2000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #11 [0001ca2000 - 0001ca3000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #12 [0001e00000 - 0003800000] MEMMAP 0
    Sep 27 19:47:22 localhost kernel: #13 [00014a0140 - 00014b8140] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #14 [00014b8140 - 00014d0140] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #15 [00014d1000 - 00014d2000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #16 [000149e780 - 000149e7c1] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #17 [000149e800 - 000149e843] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #18 [000149e880 - 000149ea78] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #19 [000149ea80 - 000149eae8] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #20 [000149eb00 - 000149eb68] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #21 [000149eb80 - 000149ebe8] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #22 [000149ec00 - 000149ec68] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #23 [000149ec80 - 000149ece8] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #24 [000149ed00 - 000149ed68] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #25 [000149ed80 - 000149ede8] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #26 [000149ee00 - 000149ee68] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #27 [000149ee80 - 000149eea0] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #28 [000149eec0 - 000149eeff] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #29 [000149ef00 - 000149ef3f] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #30 [0001600000 - 000161a000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #31 [0001680000 - 000169a000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #32 [0001700000 - 000171a000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #33 [0001780000 - 000179a000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #34 [000149ef40 - 000149ef48] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #35 [000149ef80 - 000149ef88] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #36 [000149efc0 - 000149efd0] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #37 [00014d0140 - 00014d0160] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #38 [00014d0180 - 00014d02b0] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #39 [00014d02c0 - 00014d0310] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #40 [00014d0340 - 00014d0390] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #41 [00014d2000 - 00014da000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #42 [000179a000 - 000199a000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: #43 [00014da000 - 00015da000] BOOTMEM
    Sep 27 19:47:22 localhost kernel: Memory: 1797492k/1834688k available (2549k kernel code, 452k absent, 36744k reserved, 1087k data, 376k init)
    Sep 27 19:47:22 localhost kernel: SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Sep 27 19:47:22 localhost kernel: Preemptable hierarchical RCU implementation.
    Sep 27 19:47:22 localhost kernel: RCU-based detection of stalled CPUs is disabled.
    Sep 27 19:47:22 localhost kernel: Verbose stalled-CPUs detection is disabled.
    Sep 27 19:47:22 localhost kernel: NR_IRQS:384
    Sep 27 19:47:22 localhost kernel: Console: colour VGA+ 80x25
    Sep 27 19:47:22 localhost kernel: console [tty0] enabled
    Sep 27 19:47:22 localhost kernel: hpet clockevent registered
    Sep 27 19:47:22 localhost kernel: Fast TSC calibration using PIT
    Sep 27 19:47:22 localhost kernel: Detected 2999.782 MHz processor.
    Sep 27 19:47:22 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5999.55 BogoMIPS (lpj=2999778)
    Sep 27 19:47:22 localhost kernel: pid_max: default: 32768 minimum: 301
    Sep 27 19:47:22 localhost kernel: Mount-cache hash table entries: 256
    Sep 27 19:47:22 localhost kernel: tseg: 0000000000
    Sep 27 19:47:22 localhost kernel: CPU: Physical Processor ID: 0
    Sep 27 19:47:22 localhost kernel: CPU: Processor Core ID: 0
    Sep 27 19:47:22 localhost kernel: mce: CPU supports 6 MCE banks
    Sep 27 19:47:22 localhost kernel: using C1E aware idle routine
    Sep 27 19:47:22 localhost kernel: Performance Events: AMD PMU driver.
    Sep 27 19:47:22 localhost kernel: ... version: 0
    Sep 27 19:47:22 localhost kernel: ... bit width: 48
    Sep 27 19:47:22 localhost kernel: ... generic registers: 4
    Sep 27 19:47:22 localhost kernel: ... value mask: 0000ffffffffffff
    Sep 27 19:47:22 localhost kernel: ... max period: 00007fffffffffff
    Sep 27 19:47:22 localhost kernel: ... fixed-purpose events: 0
    Sep 27 19:47:22 localhost kernel: ... event mask: 000000000000000f
    Sep 27 19:47:22 localhost kernel: ACPI: Core revision 20100702
    Sep 27 19:47:22 localhost kernel: Setting APIC routing to flat
    Sep 27 19:47:22 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Sep 27 19:47:22 localhost kernel: CPU0: AMD Phenom(tm) II X4 945 Processor stepping 02
    Sep 27 19:47:22 localhost kernel: Booting Node 0, Processors #1 #2 #3 Ok.
    Sep 27 19:47:22 localhost kernel: Brought up 4 CPUs
    Sep 27 19:47:22 localhost kernel: Total of 4 processors activated (24000.70 BogoMIPS).
    Sep 27 19:47:22 localhost kernel: devtmpfs: initialized
    Sep 27 19:47:22 localhost kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
    Sep 27 19:47:22 localhost kernel: NET: Registered protocol family 16
    Sep 27 19:47:22 localhost kernel: node 0 link 0: io port [1000, ffffff]
    Sep 27 19:47:22 localhost kernel: TOM: 0000000080000000 aka 2048M
    Sep 27 19:47:22 localhost kernel: Fam 10h mmconf [e0000000, efffffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [a0000, bffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [80000000, cfffffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [f0000000, fe7fffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [fe800000, fe9fffff]
    Sep 27 19:47:22 localhost kernel: node 0 link 0: mmio [fea00000, ffefffff]
    Sep 27 19:47:22 localhost kernel: bus: [00, 07] on node 0 link 0
    Sep 27 19:47:22 localhost kernel: bus: 00 index 0 [io 0x0000-0xffff]
    Sep 27 19:47:22 localhost kernel: bus: 00 index 1 [mem 0x000a0000-0x000bffff]
    Sep 27 19:47:22 localhost kernel: bus: 00 index 2 [mem 0x80000000-0xdfffffff]
    Sep 27 19:47:22 localhost kernel: bus: 00 index 3 [mem 0xf0000000-0xfcffffffff]
    Sep 27 19:47:22 localhost kernel: ACPI: bus type pci registered
    Sep 27 19:47:22 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Sep 27 19:47:22 localhost kernel: PCI: not using MMCONFIG
    Sep 27 19:47:22 localhost kernel: PCI: Using configuration type 1 for base access
    Sep 27 19:47:22 localhost kernel: PCI: Using configuration type 1 for extended access
    Sep 27 19:47:22 localhost kernel: bio: create slab <bio-0> at 0
    Sep 27 19:47:22 localhost kernel: ACPI: EC: Look up EC in DSDT
    Sep 27 19:47:22 localhost kernel: ACPI: Executed 4 blocks of module-level executable AML code
    Sep 27 19:47:22 localhost kernel: ACPI: Interpreter enabled
    Sep 27 19:47:22 localhost kernel: ACPI: (supports S0 S3 S4 S5)
    Sep 27 19:47:22 localhost kernel: ACPI: Using IOAPIC for interrupt routing
    Sep 27 19:47:22 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Sep 27 19:47:22 localhost kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Sep 27 19:47:22 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x70000000-0xdfffffff]
    Sep 27 19:47:22 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 10: [io 0xa000-0xa007]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 14: [io 0x9000-0x9003]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 18: [io 0x8000-0x8007]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 1c: [io 0x7000-0x7003]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 20: [io 0x6000-0x600f]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: reg 24: [mem 0xfe7ffc00-0xfe7fffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.0: reg 10: [mem 0xfe7fe000-0xfe7fefff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.1: reg 10: [mem 0xfe7fd000-0xfe7fdfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.2: reg 10: [mem 0xfe7ff800-0xfe7ff8ff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.2: supports D1 D2
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Sep 27 19:47:22 localhost kernel: pci 0000:00:12.2: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.0: reg 10: [mem 0xfe7fc000-0xfe7fcfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.1: reg 10: [mem 0xfe7fb000-0xfe7fbfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.2: reg 10: [mem 0xfe7ff400-0xfe7ff4ff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.2: supports D1 D2
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Sep 27 19:47:22 localhost kernel: pci 0000:00:13.2: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.1: reg 10: [io 0x0000-0x0007]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.1: reg 14: [io 0x0000-0x0003]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.1: reg 18: [io 0x0000-0x0007]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.1: reg 1c: [io 0x0000-0x0003]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.1: reg 20: [io 0xff00-0xff0f]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.2: reg 10: [mem 0xfe7f4000-0xfe7f7fff 64bit]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.2: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.5: reg 10: [mem 0xfe7fa000-0xfe7fafff]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: reg 14: [io 0xb000-0xb0ff]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: reg 18: [mem 0xfe9f0000-0xfe9fffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: reg 24: [mem 0xfe800000-0xfe8fffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: supports D1 D2
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.1: reg 10: [mem 0xfe9e8000-0xfe9ebfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.1: supports D1 D2
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xfe800000-0xfe9fffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: reg 10: [io 0xc800-0xc8ff]
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: reg 18: [mem 0xfeaff000-0xfeafffff 64bit]
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: reg 20: [mem 0xfdff0000-0xfdffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: reg 30: [mem 0xfeac0000-0xfeadffff pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: supports D1 D2
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Sep 27 19:47:22 localhost kernel: pci 0000:02:00.0: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: PCI bridge to [bus 02-02]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [mem 0xfea00000-0xfeafffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.0: reg 24: [mem 0xfebfe000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.0: PME# supported from D3hot
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.0: PME# disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.1: reg 10: [io 0xe800-0xe807]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.1: reg 14: [io 0xe400-0xe403]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.1: reg 18: [io 0xe000-0xe007]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.1: reg 1c: [io 0xd800-0xd803]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.1: reg 20: [io 0xd400-0xd40f]
    Sep 27 19:47:22 localhost kernel: pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: PCI bridge to [bus 03-03]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [io 0xd000-0xefff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [mem 0xfeb00000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: PCI bridge to [bus 04-04] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [io 0xf000-0x0000] (disabled)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff] (disabled)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0x70000000-0xdfffffff] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: on NUMA node 0
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 *7 10 11 12 14 15)
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 *10 11 12 14 15)
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 10 11 12 14 15) *0, disabled.
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 10 11 12 14 15) *0, disabled.
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs *4 10 11 12 14 15)
    Sep 27 19:47:22 localhost kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 10 11 12 14 15) *0, disabled.
    Sep 27 19:47:22 localhost kernel: vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
    Sep 27 19:47:22 localhost kernel: vgaarb: loaded
    Sep 27 19:47:22 localhost kernel: PCI: Using ACPI for IRQ routing
    Sep 27 19:47:22 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
    Sep 27 19:47:22 localhost kernel: reserve RAM buffer: 000000000009f000 - 000000000009ffff
    Sep 27 19:47:22 localhost kernel: reserve RAM buffer: 000000006ffb0000 - 000000006fffffff
    Sep 27 19:47:22 localhost kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
    Sep 27 19:47:22 localhost kernel: hpet0: 4 comparators, 32-bit 14.318180 MHz counter
    Sep 27 19:47:22 localhost kernel: Switching to clocksource tsc
    Sep 27 19:47:22 localhost kernel: pnp: PnP ACPI init
    Sep 27 19:47:22 localhost kernel: ACPI: bus type pnp registered
    Sep 27 19:47:22 localhost kernel: pnp: PnP ACPI: found 13 devices
    Sep 27 19:47:22 localhost kernel: ACPI: ACPI bus type pnp unregistered
    Sep 27 19:47:22 localhost kernel: system 00:01: [mem 0x70000000-0x7fffffff] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
    Sep 27 19:47:22 localhost kernel: system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x04d0-0x04d1] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x040b] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x04d6] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c00-0x0c01] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c14] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c50-0x0c51] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c52] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c6c] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0c6f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0cd0-0x0cd1] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0cd2-0x0cd3] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0cd4-0x0cd5] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0cd6-0x0cd7] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0cd8-0x0cdf] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0800-0x089f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0b00-0x0b0f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0b20-0x0b3f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0900-0x090f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0x0910-0x091f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [io 0xfe00-0xfefe] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [mem 0xffb80000-0xffbfffff] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:08: [mem 0xfec10000-0xfec1001f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0a: [io 0x0e00-0x0e0f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0a: [io 0x0e80-0x0e8f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0a: [io 0x0f40-0x0f4f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0a: [io 0x0a30-0x0a3f] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0b: [mem 0xe0000000-0xefffffff] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0c: [mem 0x00000000-0x0009ffff] could not be reserved
    Sep 27 19:47:22 localhost kernel: system 00:0c: [mem 0x000c0000-0x000cffff] has been reserved
    Sep 27 19:47:22 localhost kernel: system 00:0c: [mem 0x000e0000-0x000fffff] could not be reserved
    Sep 27 19:47:22 localhost kernel: system 00:0c: [mem 0x00100000-0x6fffffff] could not be reserved
    Sep 27 19:47:22 localhost kernel: system 00:0c: [mem 0xfec00000-0xffffffff] could not be reserved
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [io 0xb000-0xbfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xfe800000-0xfe9fffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: PCI bridge to [bus 02-02]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [io 0xc000-0xcfff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [mem 0xfea00000-0xfeafffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: PCI bridge to [bus 03-03]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [io 0xd000-0xefff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [mem 0xfeb00000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: bridge window [mem pref disabled]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: PCI bridge to [bus 04-04]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [io disabled]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem disabled]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:14.4: bridge window [mem pref disabled]
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:22 localhost kernel: pci 0000:00:06.0: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Sep 27 19:47:22 localhost kernel: pci 0000:00:07.0: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 8 [mem 0x70000000-0xdfffffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:01: resource 0 [io 0xb000-0xbfff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xfe800000-0xfe9fffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:03: resource 0 [io 0xd000-0xefff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xfeb00000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 8 [mem 0x70000000-0xdfffffff]
    Sep 27 19:47:22 localhost kernel: pci_bus 0000:04: resource 9 [mem 0xf0000000-0xfebfffff]
    Sep 27 19:47:22 localhost kernel: NET: Registered protocol family 2
    Sep 27 19:47:22 localhost kernel: IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
    Sep 27 19:47:22 localhost kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    Sep 27 19:47:22 localhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Sep 27 19:47:22 localhost kernel: TCP: Hash tables configured (established 262144 bind 65536)
    Sep 27 19:47:22 localhost kernel: TCP reno registered
    Sep 27 19:47:22 localhost kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 27 19:47:22 localhost kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
    Sep 27 19:47:22 localhost kernel: NET: Registered protocol family 1
    Sep 27 19:47:22 localhost kernel: pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
    Sep 27 19:47:22 localhost kernel: pci 0000:01:05.0: Boot video device
    Sep 27 19:47:22 localhost kernel: PCI: CLS 64 bytes, default 64
    Sep 27 19:47:22 localhost kernel: Unpacking initramfs...
    Sep 27 19:47:22 localhost kernel: Freeing initrd memory: 1624k freed
    Sep 27 19:47:22 localhost kernel: VFS: Disk quotas dquot_6.5.2
    Sep 27 19:47:22 localhost kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Sep 27 19:47:22 localhost kernel: msgmni has been set to 3513
    Sep 27 19:47:22 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Sep 27 19:47:22 localhost kernel: io scheduler noop registered
    Sep 27 19:47:22 localhost kernel: io scheduler cfq registered (default)
    Sep 27 19:47:22 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Sep 27 19:47:22 localhost kernel: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
    Sep 27 19:47:22 localhost kernel: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
    Sep 27 19:47:22 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Sep 27 19:47:22 localhost kernel: mice: PS/2 mouse device common for all mice
    Sep 27 19:47:22 localhost kernel: cpuidle: using governor ladder
    Sep 27 19:47:22 localhost kernel: cpuidle: using governor menu
    Sep 27 19:47:22 localhost kernel: TCP cubic registered
    Sep 27 19:47:22 localhost kernel: PM: Resume from disk failed.
    Sep 27 19:47:22 localhost kernel: Freeing unused kernel memory: 376k freed
    Sep 27 19:47:22 localhost kernel: udev[35]: starting version 162
    Sep 27 19:47:22 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Sep 27 19:47:22 localhost kernel: SCSI subsystem initialized
    Sep 27 19:47:22 localhost kernel: libata version 3.00 loaded.
    Sep 27 19:47:22 localhost kernel: pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: pata_acpi 0000:00:14.1: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: pata_acpi 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: pata_acpi 0000:03:00.1: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: pata_acpi 0000:03:00.1: PCI INT B disabled
    Sep 27 19:47:22 localhost kernel: ahci 0000:00:11.0: version 3.0
    Sep 27 19:47:22 localhost kernel: ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Sep 27 19:47:22 localhost kernel: ahci 0000:00:11.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode
    Sep 27 19:47:22 localhost kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
    Sep 27 19:47:22 localhost kernel: pata_jmicron 0000:03:00.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: pata_jmicron 0000:03:00.1: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: scsi1 : pata_jmicron
    Sep 27 19:47:22 localhost kernel: scsi0 : ahci
    Sep 27 19:47:22 localhost kernel: scsi2 : pata_jmicron
    Sep 27 19:47:22 localhost kernel: ata5: PATA max UDMA/100 cmd 0xe800 ctl 0xe400 bmdma 0xd400 irq 16
    Sep 27 19:47:22 localhost kernel: ata6: PATA max UDMA/100 cmd 0xe000 ctl 0xd800 bmdma 0xd408 irq 16
    Sep 27 19:47:22 localhost kernel: scsi3 : ahci
    Sep 27 19:47:22 localhost kernel: scsi4 : ahci
    Sep 27 19:47:22 localhost kernel: scsi5 : ahci
    Sep 27 19:47:22 localhost kernel: ata1: SATA max UDMA/133 abar m1024@0xfe7ffc00 port 0xfe7ffd00 irq 22
    Sep 27 19:47:22 localhost kernel: ata2: SATA max UDMA/133 abar m1024@0xfe7ffc00 port 0xfe7ffd80 irq 22
    Sep 27 19:47:22 localhost kernel: ata3: SATA max UDMA/133 abar m1024@0xfe7ffc00 port 0xfe7ffe00 irq 22
    Sep 27 19:47:22 localhost kernel: ata4: SATA max UDMA/133 abar m1024@0xfe7ffc00 port 0xfe7ffe80 irq 22
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: JMB361 has only one port
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: forcing port_map 0x3 -> 0x1
    Sep 27 19:47:22 localhost kernel: scsi6 : pata_atiixp
    Sep 27 19:47:22 localhost kernel: scsi7 : pata_atiixp
    Sep 27 19:47:22 localhost kernel: ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
    Sep 27 19:47:22 localhost kernel: ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x1 impl SATA mode
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: flags: 64bit ncq led clo pmp pio
    Sep 27 19:47:22 localhost kernel: ahci 0000:03:00.0: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: scsi8 : ahci
    Sep 27 19:47:22 localhost kernel: scsi9 : ahci
    Sep 27 19:47:22 localhost kernel: ata9: SATA max UDMA/133 abar m8192@0xfebfe000 port 0xfebfe100 irq 19
    Sep 27 19:47:22 localhost kernel: ata10: DUMMY
    Sep 27 19:47:22 localhost kernel: ata8.00: ATA-7: HDS728080PLAT20, PF2OA27A, max UDMA/133
    Sep 27 19:47:22 localhost kernel: ata8.00: 156250000 sectors, multi 16: LBA48
    Sep 27 19:47:22 localhost kernel: ata8.01: ATAPI: HL-DT-ST GCE-8523B, 1.01, max UDMA/33
    Sep 27 19:47:22 localhost kernel: ata8.00: limited to UDMA/33 due to 40-wire cable
    Sep 27 19:47:22 localhost kernel: ata8.00: configured for UDMA/33
    Sep 27 19:47:22 localhost kernel: ata8.01: configured for UDMA/33
    Sep 27 19:47:22 localhost kernel: ata1: SATA link down (SStatus 0 SControl 300)
    Sep 27 19:47:22 localhost kernel: ata4: SATA link down (SStatus 0 SControl 300)
    Sep 27 19:47:22 localhost kernel: ata3: SATA link down (SStatus 0 SControl 300)
    Sep 27 19:47:22 localhost kernel: ata9: SATA link down (SStatus 0 SControl 300)
    Sep 27 19:47:22 localhost kernel: ata2: softreset failed (device not ready)
    Sep 27 19:47:22 localhost kernel: ata2: applying SB600 PMP SRST workaround and retrying
    Sep 27 19:47:22 localhost kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Sep 27 19:47:22 localhost kernel: ata2.00: ATA-8: ST3250318AS, CC38, max UDMA/133
    Sep 27 19:47:22 localhost kernel: ata2.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Sep 27 19:47:22 localhost kernel: ata2.00: configured for UDMA/133
    Sep 27 19:47:22 localhost kernel: scsi 3:0:0:0: Direct-Access ATA ST3250318AS CC38 PQ: 0 ANSI: 5
    Sep 27 19:47:22 localhost kernel: scsi 7:0:0:0: Direct-Access ATA HDS728080PLAT20 PF2O PQ: 0 ANSI: 5
    Sep 27 19:47:22 localhost kernel: scsi 7:0:1:0: CD-ROM HL-DT-ST CD-RW GCE-8523B 1.01 PQ: 0 ANSI: 5
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: [sdb] 156250000 512-byte logical blocks: (80.0 GB/74.5 GiB)
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: [sda] Write Protect is off
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: [sdb] Write Protect is off
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Sep 27 19:47:22 localhost kernel: sdb: sdb1
    Sep 27 19:47:22 localhost kernel: sr0: scsi3-mmc drive: 40x/52x writer cd/rw xa/form2 cdda tray
    Sep 27 19:47:22 localhost kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Sep 27 19:47:22 localhost kernel: sr 7:0:1:0: Attached scsi CD-ROM sr0
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: [sdb] Attached SCSI disk
    Sep 27 19:47:22 localhost kernel: sda: sda1 sda2 < sda5 > sda3
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: [sda] Attached SCSI disk
    Sep 27 19:47:22 localhost kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Sep 27 19:47:22 localhost kernel: rtc_cmos 00:03: RTC can wake from S4
    Sep 27 19:47:22 localhost kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Sep 27 19:47:22 localhost kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Sep 27 19:47:22 localhost kernel: udev[860]: starting version 162
    Sep 27 19:47:22 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Sep 27 19:47:22 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Sep 27 19:47:22 localhost kernel: ACPI: Power Button [PWRB]
    Sep 27 19:47:22 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    Sep 27 19:47:22 localhost kernel: ACPI: Power Button [PWRF]
    Sep 27 19:47:22 localhost kernel: usbcore: registered new interface driver usbfs
    Sep 27 19:47:22 localhost kernel: usbcore: registered new interface driver hub
    Sep 27 19:47:22 localhost kernel: usbcore: registered new device driver usb
    Sep 27 19:47:22 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: EHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: debug port 1
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe7ff800
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Sep 27 19:47:22 localhost kernel: hub 1-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 1-0:1.0: 6 ports detected
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: EHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: debug port 1
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe7ff400
    Sep 27 19:47:22 localhost kernel: sd 3:0:0:0: Attached scsi generic sg0 type 0
    Sep 27 19:47:22 localhost kernel: sd 7:0:0:0: Attached scsi generic sg1 type 0
    Sep 27 19:47:22 localhost kernel: sr 7:0:1:0: Attached scsi generic sg2 type 5
    Sep 27 19:47:22 localhost kernel: ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Sep 27 19:47:22 localhost kernel: hub 2-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 2-0:1.0: 6 ports detected
    Sep 27 19:47:22 localhost kernel: EDAC MC: Ver: 2.1.0 Sep 27 2010
    Sep 27 19:47:22 localhost kernel: EDAC amd64_edac: Ver: 3.3.0 Sep 27 2010
    Sep 27 19:47:22 localhost kernel: EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
    Sep 27 19:47:22 localhost kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Sep 27 19:47:22 localhost kernel: Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    Sep 27 19:47:22 localhost kernel: (Note that use of the override may cause unknown side effects.)
    Sep 27 19:47:22 localhost kernel: amd64_edac: probe of 0000:00:18.2 failed with error -22
    Sep 27 19:47:22 localhost kernel: ACPI: resource piix4_smbus [io 0x0b00-0x0b07] conflicts with ACPI region SOR1 [dma 2816-2831 64bit]
    Sep 27 19:47:22 localhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Sep 27 19:47:22 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 1022 ss_did 9602
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:01.0: Cannot reserve MMIO region
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:06.0: HPC vendor_id 1022 device_id 9606 ss_vid 1019 ss_did 2617
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:06.0: Cannot reserve MMIO region
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:07.0: HPC vendor_id 1022 device_id 9607 ss_vid 1019 ss_did 2617
    Sep 27 19:47:22 localhost kernel: shpchp 0000:00:07.0: Cannot reserve MMIO region
    Sep 27 19:47:22 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Sep 27 19:47:22 localhost kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.0: OHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe7fe000
    Sep 27 19:47:22 localhost kernel: hub 3-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 3-0:1.0: 3 ports detected
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.1: OHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe7fd000
    Sep 27 19:47:22 localhost kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    Sep 27 19:47:22 localhost kernel: r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:22 localhost kernel: r8169 0000:02:00.0: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: r8169 0000:02:00.0: irq 40 for MSI/MSI-X
    Sep 27 19:47:22 localhost kernel: r8169 0000:02:00.0: eth0: RTL8168c/8111c at 0xffffc90010664000, 00:25:11:d8:32:b7, XID 1c4000c0 IRQ 40
    Sep 27 19:47:22 localhost kernel: hub 4-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 4-0:1.0: 3 ports detected
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.0: OHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe7fc000
    Sep 27 19:47:22 localhost kernel: hub 5-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 5-0:1.0: 3 ports detected
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.1: OHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe7fb000
    Sep 27 19:47:22 localhost kernel: hub 6-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 6-0:1.0: 3 ports detected
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:14.5: OHCI Host Controller
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
    Sep 27 19:47:22 localhost kernel: ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe7fa000
    Sep 27 19:47:22 localhost kernel: thermal LNXTHERM:01: registered as thermal_zone0
    Sep 27 19:47:22 localhost kernel: ACPI: Thermal Zone [THRM] (30 C)
    Sep 27 19:47:22 localhost kernel: ACPI: acpi_idle registered with cpuidle
    Sep 27 19:47:22 localhost kernel: hub 7-0:1.0: USB hub found
    Sep 27 19:47:22 localhost kernel: hub 7-0:1.0: 2 ports detected
    Sep 27 19:47:22 localhost kernel: HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Sep 27 19:47:22 localhost kernel: hda_codec: ALC888: BIOS auto-probing.
    Sep 27 19:47:22 localhost kernel: HDA Intel 0000:01:05.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
    Sep 27 19:47:22 localhost kernel: HDA Intel 0000:01:05.1: setting latency timer to 64
    Sep 27 19:47:22 localhost kernel: usb 6-2: new low speed USB device using ohci_hcd and address 2
    Sep 27 19:47:22 localhost kernel: usbcore: registered new interface driver hiddev
    Sep 27 19:47:22 localhost kernel: input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:13.1/usb6/6-2/6-2:1.0/input/input4
    Sep 27 19:47:22 localhost kernel: generic-usb 0003:045E:0040.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:13.1-2/input0
    Sep 27 19:47:22 localhost kernel: usbcore: registered new interface driver usbhid
    Sep 27 19:47:22 localhost kernel: usbhid: USB HID core driver
    Sep 27 19:47:22 localhost kernel: EXT4-fs (sda1): re-mounted. Opts: (null)
    Sep 27 19:47:22 localhost kernel: EXT4-fs (sda1): re-mounted. Opts: (null)
    Sep 27 19:47:22 localhost kernel: EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
    Sep 27 19:47:22 localhost kernel: fuse init (API version 7.15)
    Sep 27 19:47:22 localhost kernel: Adding 337328k swap on /dev/sda5. Priority:-1 extents:1 across:337328k
    Sep 27 19:47:23 localhost kernel: r8169 0000:02:00.0: eth0: link up
    Sep 27 19:47:23 localhost kernel: r8169 0000:02:00.0: eth0: link up
    Sep 27 19:47:24 localhost kernel: NET: Registered protocol family 10
    Sep 27 19:47:24 localhost kernel: lo: Disabled Privacy Extensions
    Sep 27 19:47:24 localhost kernel: NET: Registered protocol family 17
    Sep 27 19:47:25 localhost kernel: pci 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Sep 27 19:47:25 localhost kernel: Linux agpgart interface v0.103
    Sep 27 19:47:25 localhost kernel: [drm] Initialized drm 1.1.0 20060810
    Sep 27 19:47:25 localhost kernel: [drm] radeon defaulting to userspace modesetting.
    Sep 27 19:47:25 localhost kernel: pci 0000:01:05.0: setting latency timer to 64
    Sep 27 19:47:25 localhost kernel: [drm] Initialized radeon 1.33.0 20080528 for 0000:01:05.0 on minor 0
    Sep 27 19:47:25 localhost kernel: [drm] Setting GART location based on new memory map
    Sep 27 19:47:25 localhost kernel: [drm] Loading RS780 CP Microcode
    Sep 27 19:47:25 localhost kernel: [drm] Resetting GPU
    Sep 27 19:47:25 localhost kernel: [drm] writeback test succeeded in 1 usecs
    Sep 27 19:47:29 localhost kernel: r8169: WARNING! Changing of MTU on this NIC may lead to frame reception errors!
    Sep 27 19:47:34 localhost kernel: eth0: no IPv6 routers present
    Sep 27 19:52:54 localhost kernel: start_kdeinit (2066): /proc/2066/oom_adj is deprecated, please use /proc/2066/oom_score_adj instead.
    Sep 27 20:17:35 localhost kernel: [drm] Resetting GPU
    Sep 27 20:17:35 localhost kernel: [drm] Setting GART location based on new memory map
    Sep 27 20:17:35 localhost kernel: [drm] Loading RS780 CP Microcode
    Sep 27 20:17:35 localhost kernel: [drm] Resetting GPU
    Sep 27 20:17:35 localhost kernel: [drm] writeback test succeeded in 1 usecs
    and the ps ouput for compare the memory usage of 2.6.36-rc5
    PID PPID RSS VSZ %CPU %MEM CMD
    1 0 612 3896 0.0 0.0 init [3]
    2 0 0 0 0.0 0.0 [kthreadd]
    3 2 0 0 0.0 0.0 [ksoftirqd/0]
    4 2 0 0 0.0 0.0 [kworker/0:0]
    6 2 0 0 0.0 0.0 [migration/0]
    7 2 0 0 0.0 0.0 [migration/1]
    9 2 0 0 0.0 0.0 [ksoftirqd/1]
    10 2 0 0 0.0 0.0 [kworker/0:1]
    11 2 0 0 0.0 0.0 [migration/2]
    12 2 0 0 0.0 0.0 [kworker/2:0]
    13 2 0 0 0.0 0.0 [ksoftirqd/2]
    14 2 0 0 0.0 0.0 [migration/3]
    15 2 0 0 0.0 0.0 [kworker/3:0]
    16 2 0 0 0.0 0.0 [ksoftirqd/3]
    17 2 0 0 0.0 0.0 [khelper]
    18 2 0 0 0.0 0.0 [pm]
    19 2 0 0 0.0 0.0 [sync_supers]
    20 2 0 0 0.0 0.0 [bdi-default]
    21 2 0 0 0.0 0.0 [kblockd]
    22 2 0 0 0.0 0.0 [kacpid]
    23 2 0 0 0.0 0.0 [kacpi_notify]
    24 2 0 0 0.0 0.0 [kacpi_hotplug]
    25 2 0 0 0.0 0.0 [kseriod]
    26 2 0 0 0.0 0.0 [kswapd0]
    27 2 0 0 0.0 0.0 [fsnotify_mark]
    28 2 0 0 0.0 0.0 [aio]
    598 2 0 0 0.0 0.0 [ata_sff]
    645 2 0 0 0.0 0.0 [scsi_eh_0]
    650 2 0 0 0.0 0.0 [scsi_eh_1]
    657 2 0 0 0.0 0.0 [scsi_eh_2]
    658 2 0 0 0.0 0.0 [scsi_eh_3]
    674 2 0 0 0.0 0.0 [scsi_eh_4]
    684 2 0 0 0.0 0.0 [scsi_eh_5]
    696 2 0 0 0.0 0.0 [scsi_eh_6]
    710 2 0 0 0.0 0.0 [scsi_eh_7]
    732 2 0 0 0.0 0.0 [kworker/u:8]
    764 2 0 0 0.0 0.0 [scsi_eh_8]
    765 2 0 0 0.0 0.0 [scsi_eh_9]
    766 2 0 0 0.0 0.0 [kworker/u:9]
    768 2 0 0 0.0 0.0 [kworker/1:1]
    769 2 0 0 0.0 0.0 [kworker/3:1]
    771 2 0 0 0.0 0.0 [kworker/2:1]
    827 2 0 0 0.0 0.0 [jbd2/sda1-8]
    828 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    860 1 984 6348 0.0 0.0 /sbin/udevd --daemon
    1259 2 0 0 0.0 0.0 [khubd]
    1281 2 0 0 0.0 0.0 [edac-poller]
    1308 2 0 0 0.0 0.0 [hd-audio0]
    1311 2 0 0 0.0 0.0 [hd-audio1]
    1475 2 0 0 0.0 0.0 [usbhid_resumer]
    1508 2 0 0 0.0 0.0 [flush-8:0]
    1512 2 0 0 0.0 0.0 [jbd2/sdb1-8]
    1513 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    1520 1 864 15300 0.0 0.0 /sbin/mount.ntfs-3g /dev/sda3 /media/windows -o rw
    1763 1 540 26144 0.0 0.0 supervising syslog-ng
    1764 1763 2088 28516 0.0 0.1 /usr/sbin/syslog-ng
    1778 1 1168 13156 0.0 0.0 /usr/bin/dbus-daemon --system
    1781 1 5308 38832 0.0 0.2 /usr/sbin/hald
    1782 1781 1292 22288 0.0 0.0 hald-runner
    1811 1782 1132 24404 0.0 0.0 hald-addon-input: Listening on /dev/input/event0 /dev/input/event2 /dev/input/event3
    1825 1782 1136 24400 0.0 0.0 hald-addon-storage: polling /dev/sr0 (every 2 sec)
    1861 1 660 5992 0.0 0.0 /usr/sbin/crond -S -l info
    1870 1782 1120 19896 0.0 0.0 hald-addon-acpi: listening on acpi kernel interface /proc/acpi/event
    1875 860 900 6344 0.0 0.0 /sbin/udevd --daemon
    1877 1 580 6136 0.0 0.0 /usr/sbin/dnsmasq
    1879 1 776 28732 0.0 0.0 /usr/bin/kdm
    1883 1 576 3892 0.0 0.0 /sbin/agetty -8 38400 tty1 linux
    1884 1 572 3892 0.0 0.0 /sbin/agetty -8 38400 tty2 linux
    1885 1 572 3892 0.0 0.0 /sbin/agetty -8 38400 tty3 linux
    1886 1 576 3892 0.0 0.0 /sbin/agetty -8 38400 tty4 linux
    1887 1 576 3892 0.0 0.0 /sbin/agetty -8 38400 tty5 linux
    1888 1 572 3892 0.0 0.0 /sbin/agetty -8 38400 tty6 linux
    1934 1 352 8204 0.0 0.0 /sbin/dhcpcd -q eth0
    1944 1 3252 118404 0.0 0.1 /usr/sbin/console-kit-daemon --no-daemon
    2043 1 564 16760 0.0 0.0 /usr/bin/gpg-agent --daemon --pinentry-program /usr/bin/pinentry-qt4
    2046 1 520 14180 0.0 0.0 /usr/bin/ssh-agent -s
    2079 2 0 0 0.0 0.0 [kworker/1:2]
    2117 1 3336 45120 0.0 0.1 /usr/lib/polkit-1/polkitd
    2453 1879 50424 173688 2.9 2.8 /usr/bin/X :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-eMwXNb
    2457 860 828 6344 0.0 0.0 /sbin/udevd --daemon
    2463 2 0 0 0.0 0.0 [kworker/0:2]
    2464 1879 1824 45476 0.0 0.1 -:0
    2469 1 792 19844 0.0 0.0 dbus-launch --autolaunch 1b3de153c5d2d7ad7915eeec00000a16 --binary-syntax --close-stderr
    2470 1 624 12764 0.0 0.0 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    2484 2464 1696 15148 0.0 0.0 /bin/sh /usr/bin/startkde
    2511 1 564 16760 0.0 0.0 /usr/bin/gpg-agent --daemon --pinentry-program /usr/bin/pinentry-qt4
    2514 1 520 14180 0.0 0.0 /usr/bin/ssh-agent -s
    2528 1 800 19844 0.0 0.0 dbus-launch --sh-syntax --exit-with-session
    2529 1 1388 13408 0.1 0.0 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
    2536 1 76 3740 0.0 0.0 /usr/lib/kde4/libexec/start_kdeinit +kcminit_startup
    2537 1 17828 228556 0.1 0.9 kdeinit4: kdeinit4 Running...
    2538 2537 9508 234956 0.0 0.5 kdeinit4: klauncher [kdeinit] --fd=9
    2540 1 21500 458464 0.3 1.1 kdeinit4: kded4 [kdeinit]
    2547 2 0 0 0.0 0.0 [kworker/1:0]
    2549 1 17240 338940 0.4 0.9 kdeinit4: kglobalaccel [kdeinit]
    2552 2484 292 3876 0.0 0.0 kwrapper4 ksmserver
    2553 2537 18004 421228 0.1 1.0 kdeinit4: ksmserver [kdeinit]
    2555 2553 42020 524068 0.9 2.3 kwin
    2559 1 48428 597456 2.1 2.6 kdeinit4: plasma-desktop [kdeinit]
    2561 1 26876 553388 0.3 1.4 /usr/bin/knotify4
    2564 1 15460 262712 0.0 0.8 /usr/bin/kuiserver
    2566 2537 9632 235728 0.0 0.5 kdeinit4: kio_trash [kdeinit] trash local:/tmp/ksocket-slack/klauncherMT2538.slave-socket local:/tmp/ksocket
    2569 1 16180 340100 0.0 0.8 kdeinit4: kaccess [kdeinit]
    2575 1 40908 518812 0.5 2.2 kdeinit4: krunner [kdeinit]
    2576 2537 9640 131904 0.0 0.5 /usr/bin/kwrited
    2580 1 28720 433816 0.4 1.5 kdeinit4: kmix [kdeinit]
    2582 1 16604 282464 0.0 0.9 /usr/lib/kde4/libexec/polkit-kde-authentication-agent-1
    2583 1 17800 340888 0.1 0.9 kdeinit4: klipper [kdeinit]
    2585 1 29940 368480 0.6 1.6 kdeinit4: konsole [kdeinit]
    2592 2585 5148 33164 0.2 0.2 /bin/zsh
    2593 2537 9632 235728 0.0 0.5 kdeinit4: kio_trash [kdeinit] trash local:/tmp/ksocket-slack/klauncherMT2538.slave-socket local:/tmp/ksocket
    2605 2592 864 10148 0.0 0.0 ps -eo pid,ppid,rss,vsize,pcpu,pmem,cmd -ww --sort=pid
    and from 2.6.34.2
    PID PPID RSS VSZ %CPU %MEM CMD
    1 0 612 3892 0.5 0.0 init [3]
    2 0 0 0 0.0 0.0 [kthreadd]
    3 2 0 0 0.0 0.0 [migration/0]
    4 2 0 0 0.0 0.0 [ksoftirqd/0]
    5 2 0 0 0.0 0.0 [migration/1]
    6 2 0 0 0.0 0.0 [ksoftirqd/1]
    7 2 0 0 0.0 0.0 [migration/2]
    8 2 0 0 0.0 0.0 [ksoftirqd/2]
    9 2 0 0 0.0 0.0 [migration/3]
    10 2 0 0 0.0 0.0 [ksoftirqd/3]
    11 2 0 0 0.0 0.0 [events/0]
    12 2 0 0 0.0 0.0 [events/1]
    13 2 0 0 0.0 0.0 [events/2]
    14 2 0 0 0.0 0.0 [events/3]
    15 2 0 0 0.0 0.0 [khelper]
    16 2 0 0 0.0 0.0 [async/mgr]
    17 2 0 0 0.0 0.0 [pm]
    18 2 0 0 0.0 0.0 [sync_supers]
    19 2 0 0 0.0 0.0 [bdi-default]
    20 2 0 0 0.0 0.0 [kblockd/0]
    21 2 0 0 0.0 0.0 [kblockd/1]
    22 2 0 0 0.0 0.0 [kblockd/2]
    23 2 0 0 0.0 0.0 [kblockd/3]
    24 2 0 0 0.0 0.0 [kacpid]
    25 2 0 0 0.0 0.0 [kacpi_notify]
    26 2 0 0 0.0 0.0 [kacpi_hotplug]
    27 2 0 0 0.0 0.0 [kseriod]
    32 2 0 0 0.0 0.0 [kswapd0]
    33 2 0 0 0.0 0.0 [aio/0]
    34 2 0 0 0.0 0.0 [aio/1]
    35 2 0 0 0.0 0.0 [aio/2]
    36 2 0 0 0.0 0.0 [aio/3]
    406 2 0 0 0.0 0.0 [ata/0]
    487 2 0 0 0.0 0.0 [ata/1]
    537 2 0 0 0.0 0.0 [ata/2]
    565 2 0 0 0.0 0.0 [ata/3]
    604 2 0 0 0.0 0.0 [ata_aux]
    632 2 0 0 0.0 0.0 [scsi_eh_0]
    633 2 0 0 0.0 0.0 [scsi_eh_1]
    641 2 0 0 0.0 0.0 [scsi_eh_2]
    653 2 0 0 0.0 0.0 [scsi_eh_3]
    654 2 0 0 0.0 0.0 [scsi_eh_4]
    658 2 0 0 0.0 0.0 [scsi_eh_5]
    756 2 0 0 0.0 0.0 [scsi_eh_6]
    757 2 0 0 0.0 0.0 [scsi_eh_7]
    768 2 0 0 0.0 0.0 [scsi_eh_8]
    770 2 0 0 0.0 0.0 [scsi_eh_9]
    812 2 0 0 0.0 0.0 [jbd2/sda1-8]
    813 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    814 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    815 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    816 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    849 1 1176 6564 0.0 0.0 /sbin/udevd --daemon
    1155 2 0 0 0.0 0.0 [edac-poller]
    1239 2 0 0 0.0 0.0 [khubd]
    1276 2 0 0 0.0 0.0 [hd-audio0]
    1289 2 0 0 0.0 0.0 [hd-audio1]
    1339 2 0 0 0.0 0.0 [radeon/0]
    1340 2 0 0 0.0 0.0 [radeon/1]
    1341 2 0 0 0.0 0.0 [radeon/2]
    1342 2 0 0 0.0 0.0 [radeon/3]
    1343 2 0 0 0.0 0.0 [ttm_swap]
    1353 2 0 0 0.0 0.0 [usbhid_resumer]
    1510 2 0 0 0.0 0.0 [flush-8:16]
    1514 2 0 0 0.0 0.0 [jbd2/sdb1-8]
    1515 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    1516 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    1517 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    1518 2 0 0 0.0 0.0 [ext4-dio-unwrit]
    1522 849 1100 6584 0.0 0.0 /sbin/udevd --daemon
    1525 1 864 15296 0.0 0.0 /sbin/mount.ntfs-3g /dev/sda3 /media/windows -o rw
    1768 1 548 26140 0.0 0.0 supervising syslog-ng
    1769 1768 2092 28512 0.0 0.1 /usr/sbin/syslog-ng
    1783 1 1240 13156 0.0 0.0 /usr/bin/dbus-daemon --system
    1786 1 5312 38840 0.1 0.2 /usr/sbin/hald
    1787 1786 1292 22284 0.0 0.0 hald-runner
    1816 1787 1132 24400 0.0 0.0 hald-addon-input: Listening on /dev/input/event0 /dev/input/event1 /dev/input/event2
    1830 1787 1132 24396 0.0 0.0 hald-addon-storage: polling /dev/sr0 (every 2 sec)
    1862 1787 1124 19892 0.0 0.0 hald-addon-acpi: listening on acpi kernel interface /proc/acpi/event
    1869 1 656 5988 0.0 0.0 /usr/sbin/crond -S -l info
    1879 849 996 6580 0.0 0.0 /sbin/udevd --daemon
    1881 1 576 6132 0.0 0.0 /usr/s

    I don't see this behaviour neither on the machine with intel video nor on the machine with nvidia.
    No average load changes or memory usage increase. I don't have Arch kernel installed though only custom from sources.
    You can find reports with increased load issues, but I never had this problem. It seems as these were related to specific hardware (AMD?) and kernel bug(?).

  • Odd Behaviors With SuperDrive

    Recently, I tried to burn a DL DVD+R disc and surprisingly, was unable to even start the burning process. Ive used Toast10 and tried Disco to burn the disc but every time, it would get stuck at the Preparing Disc phase. The drive would spin the DL DVD for about 10 second then stop. I know for a fact that i was able to successfully burn them a few months ago but now i'm at a loss at what has happened.
    I tried burning a regular DVD and it burnt without any problems. Ive also noticed that i can no longer read audio CDs but can read normal data CDs just fine. Also, for some odd reason the drive won't read PS2 discs anymore either. I know i was able to play them on the PS2 emulator before but now it doesn't even detect it, like with the audio CDs.
    Ive noticed that my system profile changes too.
    This is what i have before i start the burning process:
    MATSHITA DVD-R UJ-868:
    Firmware Revision: KB19
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -R DL, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: To show the available burn speeds, insert a disc and choose View > Refresh
    And this is what i get while it's stuck at the Preparing Disc phase:
    MATSHITA DVD-R UJ-868:
    Firmware Revision: KB19
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 0 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: To show the available burn speeds, insert a disc and choose View > Refresh
    Any ideas or help would be much appreciated, thanks!

    this is the profile when the dvd is in the drive but not showing up on desktop or in disc utility ...
    so the computer knows there is a disc there, and can tell me stuff, but I cannot get on with using it .... anybody want to take a shot at this with / for me ???
    MATSHITA DVD-R UJ-868:
    Firmware Revision: KB19
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -R DL, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media:
    Type: DVD+R
    ID: CMC MAG M01
    Blank: Yes
    Erasable: No
    Overwritable: Yes
    Appendable: Yes
    Write Speeds: 2.4x, 4x, 8x

  • Odd behavior with distribute centers

    My problem is that the distribute commands are working but ignoring the order of my layers.
    Say for example I have an item in the bottom left of the page, and another in the top right of the page.  I have several other items on their own layers between the other two.  If I select all of those layers and link them, then use the distribute centers options, the horizontal distribution works as expected with the items starting to the left and then moving gradually to the right in ascending layer order.
    However if I use distribute vertical centers, the items will ignore the order of the layers and distribute them in opposite order.  It even takes the bottom layer (bottom left item) and moves it second furthest to the right.  The result is that I end up with a distribution that starts on the right, and moves up and to the left, then takes the top layer and leaves it where it was before.
    What am I doing wrong that causes the distribution process to ignore the relative order of the layers?
    Another note is that I am at work, and only have Photoshop CS2 Available.  I do not have photoshop at home and will not be able to test any additional theories until Monday but I will try and follow up.
    -Brandon

    Photoshop senses that the objects in the first set of 5 actually go downhill slightly, so Photoshop tries to keep that "downhill" arrangement.  Even if they're just one pixel off from perfect alignment, it tries to keep the highest one highest, the second highest one second highest and so on.
    If the objects are all EXACTLY on the same coordinate, then it distributes them by layer order, moving the lowest layer first.
    So the proper way to use the tool is to get the objects close by hand, then use the alignment features to fine tune their positions.
    Examples:
    Note that the A through E bubbles go just slightly downhill here.
    Here the layers are in the same order as above, but the A through E bubbles go slightly uphill.
    In this case, A through E are all exactly on the same pixel vertically, and the layers are ordered A through E, bottom to top:
    Here, A through E are aligned exactly vertically again, but their layer order has been reversed:
    Hope this helps clarify things.
    -Noel

  • Erratic Report Region Behavior with Dynamic SQL Queries

    I'm running HTMLDB v 1.5.1.00.12 and I've noticed some odd behavior with report regions using dynamic SQL queries. Every so often, our testers will run a page containing a dynamic sql report region and get the following error, (despite the fact the query was working only moments ago and no other developer has touched it):
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    or sometimes
    failed to parse SQL query:ORA-01403: no data found
    The only solution I've found so far is to:
    1) Make a copy of the failed report region.
    2) Disable or delete the original failed report region.
    The new copy of the report region runs without issue.
    My search of the forums turned up the following two threads, but neither provided me with a clear explanation of the cause, and how to avoid it:
    ORA-06502:PL/SQL: numeric or value error: character string buffer too small
    Re: Import Export Error (ORA-06502)
    The columns being returned are below the 4000 character limit, and the rows being returned are far less than 32k in size.
    Could this have anything to do with the way HTMLDB is internally storing the PL/SQL used to generate the dynamic SQL Query? Is there any known issue related to this with that version of HTMLDB?
    This problem occurs without any discernable pattern or consistency, making it hard to determine where I should focus my efforts in tracking down the cause.

    Hi all,
    My report seems to be behaving correctly once i set it to "Use Generic Column Names (parse query at runtime only)" :)
    Cheers,
    Joel

  • App-V 5.0 connection group odd behavior

    I am having some odd behavior with an application that I've packaged in App-V 5.0.  We are running App-V for RDS on Server 2012, and I'm on SP2.
    The problem I'm having is with a program called SQL Tools 1.6 (a 3rd party tool, not from MS or Oracle).  It's a fairly straightforward program, and it runs fine on App-V 4.6.  But it requires an Oracle client to run.  On App-V 4.6, we have
    the Oracle client installed locally on the server.  But with App-V 5, I wanted to make use of connection groups, so that we could use multiple Oracle versions, if necessary, and so that updating Oracle would be easier.  So I have a connection group
    that contains SQL Tools and the Oracle client.
    What is happening is that when I try to launch SQL Tools, I get an error saying it can't find OCI.DLL (which is in the Oracle path).  I took apart both packages, trying to make sure that the Oracle path variable was correct. I even added the Oracle
    path to the SQL Tools package (I even tried hard-coding the local path to the Oracle package).  I always get the same error.  I also swapped the priority of the two packages, but it didn't help.  Then I tried launching a command prompt in the
    context of the SQL Tools package.  When I checked the path variable, it was correct, and had the path to oci.dll.  Out of curiosity, I tried running SQL Tools, and it launched no problem.  Then I closed it and tried to launch it from the shortcut
    on the desktop, and got the same error as before.  I've tried launching it from various places (desktop shortcut, direct path to the executable, a command prompt without specifying the context of the SQL Tools package, etc.), checking compatibility mode
    and setting it to various settings (XP SP3, Windows 7, Run as Administrator on and off, etc.), but nothing seems to work except opening a command prompt in the context of the SQL Tools package, and then running SQL Tools from there.  As a workaround,
    I created this short script that launches a command prompt in the context of the SQL Tools package, and then runs SQL Tools from that command prompt: 
    $p = Get-AppvClientPackage -Name "SQL Tools 1.6"
    $cmd = '"C:\ProgramData\App-V\BB0D9EC0-3876-42EB-A5E9-92A149D52FB5\37F941F9-B4BA-425F-9FB4-9B699843E767\Root\VFS\ProgramFilesX86\SQLTools 1.6\SQLTools.exe"'
    Start-AppvVirtualProcess -FilePath cmd.exe -ArgumentList "/k $cmd" -AppvClientObject $p
    It works, but I would rather not have to use this type of workaround for something that should work natively.
    Any help would be greatly appreciated.
    Thanks,
    Sam

    Hello,
    What happens if you launch CMD instead of your tool when starting an application, and from that CMD you start sqltools.exe
    So the command to start the application would be;
    cmd.exe /c sqltools.exe
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • Issues Exiting Sleep Mode and Odd Behavior On Restart with GPU

    I'm running a completely stock HP P7-1240 desktop except for an EVGA GeForce GTX 750 TI SC GPU. The GPU runs fine when the computer is up and running (which is odd because the forums have several other threads mentioning that the 700 series should be incompatible with my BIOS).
    However, there are two main strange problems that have arisen since installing the GPU. One is that, whenever the computer enters sleep mode, it refuses to wake back up properly. It seems to me that the computer activates but does not send any signals out from the back panel (at the very least, no video signal because my monitors stay blank). On a rare occasion, it will wake back up properly, but at least 90% of the time, it needs to be restarted. Upon restart, sometimes the same issue occurs (no video output), and the computer needs to be restarted a second time before it will boot up again.
    This leads to the second problem. When starting, the computer goes to a black screen listing basic computer specs (see attached photo. At this screen, the computer does not respond to any input.  It proceeds to beep 3 times, all the same length and pitch spaced about 30 seconds apart. After the third beep, the screen goes black and then the computer boots up normally with no further odd behavior.
    Without the GPU, none of these issues happen. At the very least, not regularly.
    I have seen another thread mentioning that, although the HP support page for my desktop does not list it, there is a BIOS update for my motherboard that has fixed issues relating to more modern GPU's. By nature of it being a BIOS update that does not (appear to) officially support Windows 7, I'm hesitant to move forward with that potential solution.
    Although I'm planning to build myself a new computer from scratch at some point, I was hoping to at least get another year out of this machine, if not 2.  While this issue doesn't appear to be immediately threatening the stability of the computer, I can't help but think that this is an issue I should iron soon to avoid future issues (not to mention it would save me a fair amount of electricity to be able to enter sleep mode on a regular basis).
    Any suggestions would be greatly appreciated!
    This question was solved.
    View Solution.

    Hello @johnmwalker,
    I understand that you are having some issues with your HP Pavilion p7-1240 Desktop PC waking up from sleep mode. I am not sure how much can be done for the delay on your startup with an OEM BIOS you are limited in what you can do and since your graphic card works I think you would be better off not messing too much with the BIOS at this point. The one thing I would try is going into the BIOS using the HP Support document:BIOS Setup Utility Information and Menu Options, and under Advanced > Power-On Options set POST Messages to Disable and POST Delay (in seconds) to None.
    Now the waking from sleep mode issue  could just be the hybrid sleep setting causing you an issue with sleep mode. Use the following steps to disable hybrid sleep:
    Step 1. Click Start
    Step 2. Click Control Panel.
    Step 3. Click System and Security
    Step 4. Click Power Options
    Step 5. Click High Performance from Power Options
    Step 6. Click Change plan settings
    Step 7. Select Change advanced power settings
    Step 8. Click the plus (+) sign next to Sleep
    Step 9. Click the plus (+) sign next to Allow hybrid sleep
    Step 10. Select Off from the drop-down menu
    Step 11. Click OK
    Please re-post if you require additional support. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Odd open with behavior

    Hi,
    Normally, when right-clicking a file, for example, a pdf, in ID, and selecting a particular program to open that file with (say, AI) would start the chosen program.  Lately, things haven't been working as expected, at least in one document.  Opening a linked file, either with the right-click on the file or from the links dock, results in some really odd behavior, all ending with the wrong program being chosen.  Sometimes, the program is in the list, for whatever reason ID decides that it should be in the list, which is a mystery to me, but sometimes, the program isn't even in the list.  Such as, my GIS program. I've tried another document, and it seems to behave ok.  I tried restarting the computer, etc., still happens.  Any suggestions?  Thanks for the time; you folks are always a tremendous help.
    PS, if I go to Bridge, everything is smooth, like butter.
    db

    I'm using CS4, all up to date on a Windows XP SP3 machine dual-core 2.66ghz  4gig RAM, 500 Gig HD.  The document itself is pretty low-key.  Five placed Word files.  I'm zapping the embedded images and replacing with linked originals.  Very basic graphics.  I'm an archaeologist, so mainly maps and photos, no transparencies, fancy masks, or anything of the like.
    Thanks,
    db

  • Very odd behavior regarding variable naming with DataService.fill()

    I'm experiencing this odd behavior in LCDS 2.5, wich pertains
    to variable naming for the objects returned by a DataService.fill()
    call. I ceated a simple destination with a Java adapter. the Server
    side Java data object is defined as follows)
    package test;
    public class RepositoryObject
    private String m_strObjectId;
    private boolean m_bIsValid;
    private long m_lSize;
    [public setters and getters here]
    On Flex side, the ActionScript value object is defined as
    follows:
    package test
    [Bindable]
    [RemoteClass(alias="test.RepositoryObject")]
    public class RepositoryObject
    public var m_strObjectId:String;
    public var m_bIsValid:Boolean;
    public var m_lSize:Number;
    public function RepositoryObject()
    The FDS destination definition (in
    data-management-config.xml):
    <destination id="testDs">
    <adapter ref="java-dao" />
    <properties>
    <source>test.TestDS</source>
    <scope>application</scope>
    <metadata>
    <identity property="m_strObjectId"/>
    </metadata>
    <network>
    <session-timeout>20</session-timeout>
    <paging enabled="false" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <fill-method>
    <name>getObjects</name>
    </fill-method>
    </server>
    </properties>
    </destination>
    What I figured while debugging into the client was is the
    data returned by the service (I'm using the mx:DataService call)
    returns objects whose variable names
    do not match my definition:
    m_strObjectId becomes objectId
    m_lSize becomes size
    m_bIsValid becomes isValid
    I wonder why that renaming??? Basically "m_str" prefix was
    stripped and capital "O" became lower case "o" for my first
    variable etc.
    For instance, in a datagrid cell renderer I could not
    reference the returned value as {data.m_strObjectId}, but if I use
    {data.objectId}, it works.
    Any ideas why this behavior (which I found confusing and odd)
    would be greately appreciated.
    Robert

    The latter, as "getM_strObjectId " is an ugly name... don't
    tell me that causes issue...ok kidding, I got you. The
    setter/getter names are important in this context.
    Thanks a lot.
    Robert

  • Loop delay when using two VI's with picture controls simultaneously

    Hey all,
    I have observed an odd behavior and I'm not quite sure why it happens. I have two VI's that are mapping GPS coordinates onto XY graphs that are displayed on top of picture controls. When the maps from both of the VI's are visible on screen the loops get delayed by as much as a second, but if you just cover the map portion with another window they go back to looping at twice a second as they should. It took me a little while to figure this part out, let me tell you. There are no computing limitations that should be affecting it since my CPU is only at 10-12% and have 4GB of RAM available. I checked the GPU too just in case and it was sitting at 3% usage, so no hold up there. Anyone have any experience with something like this happening to them? It has me stumped.
    I though it might have to do with how LabVIEW handled them, so I went ahead and made them into EXE's and tried it out with the same results.
    Thanks in advance for any help or suggestions,
    dnorman

    dnorman wrote:
    Is it possible to run the redraw of the picture tiles in parallel, on multiple cores, if they are going into the same control?
    I doubt it. Even if the picture control wasn't pretty old (and it is), I don't know of any mechanism which will give you this level of control.
    Here are potential options. I have no idea if they will help:
    Instead of building separate commands, process the data in such a way that you have a single raster image (i.e. a 2D array) to place into the control. I believe this should be faster.
    Use another type of display (such as a .NET indicator).
    Instead of using the XY graph, overlay the data directly onto the image (there should be some graph VIs in the picture palette which might help).
    Try defering panel updates before updating all the controls and undefering after. I don't think this will help, but it's probably the easiest change to make.
    Try to take over the world!

  • Photoshop CS4 - odd behavior in titling

    All,
    I edit video almost every night and every weekend and have been doing this for several years now.  Suddenly, I'm seeing an odd behavior now that I've never seen before. 
    I created a title that consists only of a red circle and have it as one of my title templates.  I've used the red circle template across many projects without problems  I use it to highlight an athlete in the video.  I use keying so that the circle stays around the athlete for the entire clip so that a coach can focus on the specific athlete during the action.  My videos are used by college coaches for recruiting high school athletes.
    In the last few days, when I select the red circle title and the Motion bar under Video Effects under Effects Control so I can perform the keying, the video will flip to black so that all I see is the red circle on a black background.  If I drag the scrubber a little, the video reappears with the red circle overlayed, but as soon as I release the scrubber, the video goes black again. This makes it impossible to change the key values for the title since I can't see the video.
    For trouble-shooting, I created a new red circle title from scratch but it behaves the same.  I tried using a completely different title but it behaves the same.
    I assume I inadvertantly hit a switch somewhere that has changed the behavior, but I can't figure this out.  If someone can tell me what I'm doing wrong, I would greatly appreciate your help.
    Thanks,
    Dan
    Windows 7 64-bit
    Adobe Production Premium CS4
    Adobe PPro CS4 4.2.1
    Canon AVCHD video with output typically to H.264
    Asus Laptop G74Sx with 8g RAM and Intel Core i7-2630QM CPU @2GHz

    What exaxctly are you talking about? Using the graphic in Premiere? If so, this is probably a more appropriate question for the PPro forum. That aside, why even bother? Premiere's title tool can do circles with transparency no problem and then After Effects has this neat parametric Circle effect and a motio0n tracker, too. Sounds like you love doing things the hard way....
    Mylenium

Maybe you are looking for

  • Why cant i disable mail service ?

    Mail service got enabled when I enabled some other services (don't know which one) i checked a couple and it got enabled, i tried to disable it then but it wouldn't let me, back then i didn't pay much attention to it so of course it's not configured.

  • Can I choose which season artwork is used for display over the whole TV show?

    I have a TV show with multiple seasons and multiple album covers, but iTunes chooses one to display over the whole show list that I don't like. Is there some way to choose which season cover is displayed over my whole show, you know, WITHOUT changing

  • Can I create a dynamic number of inputs during runtime?

    Can I create a dynamic number of inputs during runtime? Oracle 11g Application Express 4.0.2.00.06 Here is my problem: We have a table that holds metadata about files (hardcopy or softcopy files). We expect we may need more columns in the table at so

  • Delete data from internal table

    Hi Experts... I have output like : erdat           matnr 12/2/2007    100000 13/2/2007    100000 14/11/2007  100001 14/6/2007    100001 but i want it like: erdat                 matnr 13/2/2007     100000 14/6/2007     100001 data retriving from tabl

  • Menu will not loop and reverts to a white screen after 30 secs

    I'm using Encore CS4 to create a picture DVD (a la Ken Burns!). I used the generic Beach background under the travel tab for the menus because I thought it was fitting. Anyway the duration of the menu is 30 secs. I can not for the life of me figure o