1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
virtio-pci: can't reserve io 0x0000-0x001f
Before 2012-03-05 I was able to successfully enable a virtio-pci block device from a sPAPR pseries ppc64 Linux guest. With the current git master branch after this date I get the following error:
virtio-pci 0000:00:00.0: device not available (can't reserve [io 0x0000-0x001f])
virtio-pci: probe of 0000:00:00.0 failed with error -22
virtio-pci 0000:00:01.0: device not available (can't reserve [io 0x0000-0x003f])
virtio-pci: probe of 0000:00:01.0 failed with error -22
Full details:
-----------------
command line:
-----------------
./testing/qemu/ppc64-softmmu/qemu-system-ppc64 \
-L ./testing/qemu/pc-bios \
-M pseries \
-m 1024 \
-rtc base=localtime \
-parallel none \
-netdev type=user,id=mynet0,hostfwd=tcp:127.0.0.1:9011-10.0.2.11:22 \
-device virtio-net-pci,netdev=mynet0 \
-drive file=images/suse-ppc.img,if=virtio,index=0,media=disk,cache=unsafe \
-kernel images/iso/suseboot/vmlinux \
-append "root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0" \
-initrd images/iso/suseboot/initrd.img \
-gdb tcp::1234
------------------------------------------------------
BEFORE virtio-pci "bug/user error?" introduced:
------------------------------------------------------
sPAPR memory map:
RTAS : 0x3fff0000..3fff0013
FDT : 0x3ffe0000..3ffeffff
Kernel : 0x00400000..01abad7b
Ramdisk : 0x01ad0000..02053df7
Firmware load : 0x00000000..000d6ec0
Firmware runtime : 0x3d7e0000..3ffe0000
sPAPR reset
SLOF **********************************************************************
QEMU Starting
Build Date = Mar 3 2012 21:46:40
FW Version = git-440e662879c4fc3c
Press "s" to enter Open Firmware.
Populating /vdevice methods
Populating /vdevice/v-scsi@2000
VSCSI: Initializing
VSCSI: Looking for disks
SCSI ID 2 CD-ROM : "QEMU QEMU CD-ROM 1.0."
Populating /vdevice/vty@30000000
Populating /pci@0,0
Adapters on 0000000000000000
00 0000 (D) : 1af4 1000 virtio [ net ]
00 0800 (D) : 1af4 1001 virtio [ block ]
No NVRAM common partition, re-initializing...
Using default console: /vdevice/vty@30000000
Detected RAM kernel at 400000 (16bad7c bytes)
Welcome to Open Firmware
Copyright (c) 2004, 2011 IBM Corporation All rights reserved.
This program and the accompanying materials are made available
under the terms of the BSD License available at
http://www.opensource.org/licenses/bsd-license.php
Booting from memory...
OF stdout device is: /vdevice/vty@30000000
Preparing to boot Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
Detected machine type: 0000000000000101
Max number of cores passed to firmware: 1024 (NR_CPUS = 1024)
Calling ibm,client-architecture-support... not implemented
couldn't open /packages/elf-loader
command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
memory layout at init:
memory_limit : 0000000000000000 (16 MB aligned)
alloc_bottom : 0000000001ad0000
alloc_top : 0000000030000000
alloc_top_hi : 0000000040000000
rmo_top : 0000000030000000
ram_top : 0000000040000000
instantiating rtas at 0x000000002fff0000... done
Querying for OPAL presence... not there.
boot cpu hw idx 0
copying OF device tree...
Building dt strings...
Building dt structure...
Device tree strings 0x00000000020e0000 -> 0x00000000020e0635
Device tree struct 0x00000000020f0000 -> 0x0000000002100000
Calling quiesce...
returning from prom_init
Using pSeries machine description
Using 1TB segments
Found initrd at 0xc000000001ad0000:0xc000000002053df8
bootconsole [udbg0] enabled
CPU maps initialized for 1 thread per core
Starting Linux PPC64 #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
-----------------------------------------------------
ppc64_pft_size = 0x18
physicalMemorySize = 0x40000000
htab_hash_mask = 0x1ffff
-----------------------------------------------------
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
CF000012
Setup Arch[boot]0012 Setup Arch
PCI host bridge /pci@0,0 ranges:
IO 0x0000010080000000..0x000001008000ffff -> 0x0000000000000000
MEM 0x00000100a0000000..0x00000100bfffffff -> 0x0000000080000000
Zone PFN ranges:
DMA 0x00000000 -> 0x00004000
Normal empty
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0x00000000 -> 0x00004000
CF000015
Setup Done[boot]0015 Setup Done
PERCPU: Embedded 2 pages/cpu @c000000002200000 s83840 r0 d47232 u1048576
Built 1 zonelists in Node order, mobility grouping on. Total pages: 16370
Policy zone: DMA
Kernel command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
audit: disabled (until reboot)
PID hash table entries: 4096 (order: -1, 32768 bytes)
freeing bootmem node 0
Memory: 1014336k/1048576k available (18112k kernel code, 34240k reserved, 2048k data, 3115k bss, 6272k init)
Hierarchical RCU implementation.
CONFIG_RCU_FANOUT set to non-default value of 32
RCU dyntick-idle grace-period acceleration is enabled.
NR_IRQS:512 nr_irqs:512 16
clocksource: timebase mult[7d0000] shift[22] registered
Console: colour dummy device 80x25
console [tty0] enabled
Using pSeries machine description
Using 1TB segments
Found initrd at 0xc000000001ad0000:0xc000000002053df8
bootconsole [udbg0] enabled
CPU maps initialized for 1 thread per core
Starting Linux PPC64 #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
-----------------------------------------------------
ppc64_pft_size = 0x18
physicalMemorySize = 0x40000000
htab_hash_mask = 0x1ffff
-----------------------------------------------------
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
[boot]0012 Setup Arch
PCI host bridge /pci@0,0 ranges:
IO 0x0000010080000000..0x000001008000ffff -> 0x0000000000000000
MEM 0x00000100a0000000..0x00000100bfffffff -> 0x0000000080000000
Zone PFN ranges:
DMA 0x00000000 -> 0x00004000
Normal empty
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0x00000000 -> 0x00004000
[boot]0015 Setup Done
PERCPU: Embedded 2 pages/cpu @c000000002200000 s83840 r0 d47232 u1048576
Built 1 zonelists in Node order, mobility grouping on. Total pages: 16370
Policy zone: DMA
Kernel command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
audit: disabled (until reboot)
PID hash table entries: 4096 (order: -1, 32768 bytes)
freeing bootmem node 0
Memory: 1014336k/1048576k available (18112k kernel code, 34240k reserved, 2048k data, 3115k bss, 6272k init)
Hierarchical RCU implementation.
CONFIG_RCU_FANOUT set to non-default value of 32
RCU dyntick-idle grace-period acceleration is enabled.
NR_IRQS:512 nr_irqs:512 16
clocksource: timebase mult[7d0000] shift[22] registered
Console: colour dummy device 80x25
console [tty0] enabled
console [hvc0] enabled
console [hvc0] enabled
allocated 524288 bytes of page_cgroup
allocated 524288 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
please try 'cgroup_disable=memory' option if you don't want memory cgroups
pid_max: default: 32768 minimum: 301
pid_max: default: 32768 minimum: 301
Security Framework initialized
Security Framework initialized
AppArmor: AppArmor disabled by boot time parameter
AppArmor: AppArmor disabled by boot time parameter
Dentry cache hash table entries: 131072 (order: 4, 1048576 bytes)
Dentry cache hash table entries: 131072 (order: 4, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 3, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 3, 524288 bytes)
Mount-cache hash table entries: 4096
Mount-cache hash table entries: 4096
Initializing cgroup subsys cpuacct
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
Initializing cgroup subsys blkio
Initializing cgroup subsys perf_event
Initializing cgroup subsys perf_event
POWER7 performance monitor hardware support registered
POWER7 performance monitor hardware support registered
Brought up 1 CPUs
Brought up 1 CPUs
Enabling Asymmetric SMT scheduling
Enabling Asymmetric SMT scheduling
devtmpfs: initialized
devtmpfs: initialized
print_constraints: dummy:
print_constraints: dummy:
NET: Registered protocol family 16
NET: Registered protocol family 16
IBM eBus Device Driver
IBM eBus Device Driver
nvram: No room to create ibm,rtas-log partition, deleting any obsolete OS partitions...
nvram: No room to create ibm,rtas-log partition, deleting any obsolete OS partitions...
nvram: Failed to find or create ibm,rtas-log partition, err -28
nvram: Failed to find or create ibm,rtas-log partition, err -28
nvram: No room to create lnx,oops-log partition, deleting any obsolete OS partitions...
nvram: No room to create lnx,oops-log partition, deleting any obsolete OS partitions...
nvram: Failed to find or create lnx,oops-log partition, err -28
nvram: Failed to find or create lnx,oops-log partition, err -28
SUSE Linux
#1 SMP Wed Jan 2CPU Hotplug not supported by firmware - disabling.
CPU Hotplug not supported by firmware - disabling.
PCI: Probing PCI hardware
PCI: Probing PCI hardware
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:00.0 dn=/pci@0,0/ethernet@0
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:00.0 dn=/pci@0,0/ethernet@0
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:01.0 dn=/pci@0,0/scsi@1
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:01.0 dn=/pci@0,0/scsi@1
opal: Node not found
opal: Node not found
bio: create slab <bio-0> at 0
bio: create slab <bio-0> at 0
vgaarb: loaded
vgaarb: loaded
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
usbcore: registered new device driver usb
NetLabel: Initializing
NetLabel: Initializing
NetLabel: domain hash size = 128
NetLabel: domain hash size = 128
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: unlabeled traffic allowed by default
NetLabel: unlabeled traffic allowed by default
Switching to clocksource timebase
Switching to clocksource timebase
NET: Registered protocol family 2
NET: Registered protocol family 2
IP route cache hash table entries: 8192 (order: 0, 65536 bytes)
IP route cache hash table entries: 8192 (order: 0, 65536 bytes)
TCP established hash table entries: 32768 (order: 3, 524288 bytes)
TCP established hash table entries: 32768 (order: 3, 524288 bytes)
TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
TCP: Hash tables configured (established 32768 bind 32768)
TCP: Hash tables configured (established 32768 bind 32768)
TCP reno registered
TCP reno registered
UDP hash table entries: 2048 (order: 0, 65536 bytes)
UDP hash table entries: 2048 (order: 0, 65536 bytes)
UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
NET: Registered protocol family 1
NET: Registered protocol family 1
Unpacking initramfs...
Unpacking initramfs...
Freeing initrd memory: 5696k freed
Freeing initrd memory: 5696k freed
rtasd: No event-scan on system
rtasd: No event-scan on system
rtas_flash: no firmware flash support
rtas_flash: no firmware flash support
IOMMU table initialized, virtual merging enabled
IOMMU table initialized, virtual merging enabled
vio 30000000: Warning: IOMMU dma not supported: mask 0xffffffffffffffff, table unavailable
vio 30000000: Warning: IOMMU dma not supported: mask 0xffffffffffffffff, table unavailable
HugeTLB registered 16 MB page size, pre-allocated 0 pages
HugeTLB registered 16 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
msgmni has been set to 1992
msgmni has been set to 1992
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler noop registered
io scheduler deadline registered
io scheduler deadline registered
io scheduler cfq registered (default)
io scheduler cfq registered (default)
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
rpaphp: RPA HOT Plug PCI Controller Driver version: 0.1
rpaphp: RPA HOT Plug PCI Controller Driver version: 0.1
rpadlpar_io_init: partition not DLPAR capable
rpadlpar_io_init: partition not DLPAR capable
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
pmac_zilog: 0.6 (Benjamin Herrenschmidt <email address hidden>)
pmac_zilog: 0.6 (Benjamin Herrenschmidt <email address hidden>)
Fixed MDIO Bus: probed
Fixed MDIO Bus: probed
arcnet loaded.
arcnet loaded.
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
mousedev: PS/2 mouse device common for all mice
mousedev: PS/2 mouse device common for all mice
EDAC MC: Ver: 2.1.0
EDAC MC: Ver: 2.1.0
usbcore: registered new interface driver usbhid
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
usbhid: USB HID core driver
TCP cubic registered
TCP cubic registered
NET: Registered protocol family 10
NET: Registered protocol family 10
NET: Registered protocol family 15
NET: Registered protocol family 15
lib80211: common routines for IEEE802.11 drivers
lib80211: common routines for IEEE802.11 drivers
Registering the dns_resolver key type
Registering the dns_resolver key type
libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
turn off boot console udbg0
turn off boot console udbg0
registered taskstats version 1
/home/abuild/rpmbuild/BUILD/kernel-ppc64-3.2.0/linux-3.2/drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
Freeing unused kernel memory: 6272k freed
doing fast boot
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: <email address hidden>
SCSI subsystem initialized
alua: device handler registered
rdac: device handler registered
hp_sw: device handler registered
emc: device handler registered
Creating device nodes with udev
udevd[78]: starting version 173
virtio-pci 0000:00:00.0: enabling device (0100 -> 0101)
virtio-pci 0000:00:01.0: enabling device (0100 -> 0101)
udevd[95]: failed to execute '/etc/sysconfig/network/scripts/ifup-sysctl' '/etc/sysconfig/network/scripts/ifup-sysctl lo -o hotplug': No such file or directory
vda: [mac] vda1 vda2 vda3 vda4
mount: devpts already mounted or /dev/pts busy
mount: according to mtab, devpts is already mounted on /dev/pts
Boot logging started on /dev/hvc0(/dev/console) at Mon Mar 26 10:04:22 2012
md: linear personality registered for level -1
3 logical volume(s) in volume group "system" now active
3 logical volume(s) in volume group "system" now active
resume device not found (ignoring)
Waiting for device /dev/mapper/system-root to appear: ok
fsck from util-linux 2.21
[/sbin/fsck.ext4 (1) -- /] fsck.ext4 -a /dev/mapper/system-root
[...continues normally...]
------------------------------------------------------
AFTER virtio-pci "bug/user error?" introduced:
------------------------------------------------------
sPAPR memory map:
RTAS : 0x3fff0000..3fff0013
FDT : 0x3ffe0000..3ffeffff
Kernel : 0x00400000..01abad7b
Ramdisk : 0x01ad0000..02053df7
Firmware load : 0x00000000..000d6ec0
Firmware runtime : 0x3d7e0000..3ffe0000
sPAPR reset
SLOF **********************************************************************
QEMU Starting
Build Date = Mar 3 2012 21:46:40
FW Version = git-440e662879c4fc3c
Press "s" to enter Open Firmware.
Populating /vdevice methods
Populating /vdevice/v-scsi@2000
VSCSI: Initializing
VSCSI: Looking for disks
Populating /vdevice/vty@30000000
Populating /pci@800000020000001,0
Adapters on 0800000020000001
00 0000 (D) : 1af4 1000 virtio [ net ]
00 0800 (D) : 1af4 1001 virtio [ block ]
No NVRAM common partition, re-initializing...
Using default console: /vdevice/vty@30000000
Detected RAM kernel at 400000 (16bad7c bytes)
Welcome to Open Firmware
Copyright (c) 2004, 2011 IBM Corporation All rights reserved.
This program and the accompanying materials are made available
under the terms of the BSD License available at
http://www.opensource.org/licenses/bsd-license.php
Booting from memory...
OF stdout device is: /vdevice/vty@30000000
Preparing to boot Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
Detected machine type: 0000000000000101
Max number of cores passed to firmware: 1024 (NR_CPUS = 1024)
Calling ibm,client-architecture-support... not implemented
couldn't open /packages/elf-loader
command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
memory layout at init:
memory_limit : 0000000000000000 (16 MB aligned)
alloc_bottom : 0000000001ad0000
alloc_top : 0000000030000000
alloc_top_hi : 0000000040000000
rmo_top : 0000000030000000
ram_top : 0000000040000000
instantiating rtas at 0x000000002fff0000... done
Querying for OPAL presence... not there.
boot cpu hw idx 0
copying OF device tree...
Building dt strings...
Building dt structure...
Device tree strings 0x00000000020e0000 -> 0x00000000020e062f
Device tree struct 0x00000000020f0000 -> 0x0000000002100000
Calling quiesce...
returning from prom_init
Using pSeries machine description
Using 1TB segments
Found initrd at 0xc000000001ad0000:0xc000000002053df8
bootconsole [udbg0] enabled
CPU maps initialized for 1 thread per core
Starting Linux PPC64 #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
-----------------------------------------------------
ppc64_pft_size = 0x18
physicalMemorySize = 0x40000000
htab_hash_mask = 0x1ffff
-----------------------------------------------------
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
CF000012
Setup Arch[boot]0012 Setup Arch
PCI host bridge /pci@800000020000001,0 ranges:
IO 0x0000000000000100..0x80000000000000ff -> 0xa0fa220000000000
Zone PFN ranges:
DMA 0x00000000 -> 0x00004000
Normal empty
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0x00000000 -> 0x00004000
CF000015
Setup Done[boot]0015 Setup Done
PERCPU: Embedded 2 pages/cpu @c000000002200000 s83840 r0 d47232 u1048576
Built 1 zonelists in Node order, mobility grouping on. Total pages: 16370
Policy zone: DMA
Kernel command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
audit: disabled (until reboot)
PID hash table entries: 4096 (order: -1, 32768 bytes)
freeing bootmem node 0
Memory: 1014336k/1048576k available (18112k kernel code, 34240k reserved, 2048k data, 3115k bss, 6272k init)
Hierarchical RCU implementation.
CONFIG_RCU_FANOUT set to non-default value of 32
RCU dyntick-idle grace-period acceleration is enabled.
NR_IRQS:512 nr_irqs:512 16
clocksource: timebase mult[7d0000] shift[22] registered
Console: colour dummy device 80x25
console [tty0] enabled
Using pSeries machine description
Using 1TB segments
Found initrd at 0xc000000001ad0000:0xc000000002053df8
bootconsole [udbg0] enabled
CPU maps initialized for 1 thread per core
Starting Linux PPC64 #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
-----------------------------------------------------
ppc64_pft_size = 0x18
physicalMemorySize = 0x40000000
htab_hash_mask = 0x1ffff
-----------------------------------------------------
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 3.2.0-2-ppc64 (geeko@buildhost) (gcc version 4.6.2 20111212 [gcc-4_6-branch revision 182222] (SUSE Linux) ) #1 SMP Wed Jan 25 10:51:08 UTC 2012 (2206a5c)
[boot]0012 Setup Arch
PCI host bridge /pci@800000020000001,0 ranges:
IO 0x0000000000000100..0x80000000000000ff -> 0xa0fa220000000000
Zone PFN ranges:
DMA 0x00000000 -> 0x00004000
Normal empty
Movable zone start PFN for each node
early_node_map[1] active PFN ranges
0: 0x00000000 -> 0x00004000
[boot]0015 Setup Done
PERCPU: Embedded 2 pages/cpu @c000000002200000 s83840 r0 d47232 u1048576
Built 1 zonelists in Node order, mobility grouping on. Total pages: 16370
Policy zone: DMA
Kernel command line: root=/dev/mapper/system-root ro audit=0 selinux=0 apparmor=0 console=tty0 console=ttyPZ0
audit: disabled (until reboot)
PID hash table entries: 4096 (order: -1, 32768 bytes)
freeing bootmem node 0
Memory: 1014336k/1048576k available (18112k kernel code, 34240k reserved, 2048k data, 3115k bss, 6272k init)
Hierarchical RCU implementation.
CONFIG_RCU_FANOUT set to non-default value of 32
RCU dyntick-idle grace-period acceleration is enabled.
NR_IRQS:512 nr_irqs:512 16
clocksource: timebase mult[7d0000] shift[22] registered
Console: colour dummy device 80x25
console [tty0] enabled
console [hvc0] enabled
console [hvc0] enabled
allocated 524288 bytes of page_cgroup
allocated 524288 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
please try 'cgroup_disable=memory' option if you don't want memory cgroups
pid_max: default: 32768 minimum: 301
pid_max: default: 32768 minimum: 301
Security Framework initialized
Security Framework initialized
AppArmor: AppArmor disabled by boot time parameter
AppArmor: AppArmor disabled by boot time parameter
Dentry cache hash table entries: 131072 (order: 4, 1048576 bytes)
Dentry cache hash table entries: 131072 (order: 4, 1048576 bytes)
Inode-cache hash table entries: 65536 (order: 3, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 3, 524288 bytes)
Mount-cache hash table entries: 4096
Mount-cache hash table entries: 4096
Initializing cgroup subsys cpuacct
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
Initializing cgroup subsys blkio
Initializing cgroup subsys perf_event
Initializing cgroup subsys perf_event
POWER7 performance monitor hardware support registered
POWER7 performance monitor hardware support registered
Brought up 1 CPUs
Brought up 1 CPUs
Enabling Asymmetric SMT scheduling
Enabling Asymmetric SMT scheduling
devtmpfs: initialized
devtmpfs: initialized
print_constraints: dummy:
print_constraints: dummy:
NET: Registered protocol family 16
NET: Registered protocol family 16
IBM eBus Device Driver
IBM eBus Device Driver
nvram: No room to create ibm,rtas-log partition, deleting any obsolete OS partitions...
nvram: No room to create ibm,rtas-log partition, deleting any obsolete OS partitions...
nvram: Failed to find or create ibm,rtas-log partition, err -28
nvram: Failed to find or create ibm,rtas-log partition, err -28
nvram: No room to create lnx,oops-log partition, deleting any obsolete OS partitions...
nvram: No room to create lnx,oops-log partition, deleting any obsolete OS partitions...
nvram: Failed to find or create lnx,oops-log partition, err -28
nvram: Failed to find or create lnx,oops-log partition, err -28
SUSE Linux
#1 SMP Wed Jan 2CPU Hotplug not supported by firmware - disabling.
CPU Hotplug not supported by firmware - disabling.
PCI: Probing PCI hardware
PCI: Probing PCI hardware
vmap allocation for size 2376249136786767872 failed: use vmalloc=<size> to increase size.
vmap allocation for size 2376249136786767872 failed: use vmalloc=<size> to increase size.
PCI: Memory resource 0 not set for host bridge /pci@800000020000001,0 (domain 0)
PCI: Memory resource 0 not set for host bridge /pci@800000020000001,0 (domain 0)
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:00.0 dn=/pci@800000020000001,0/ethernet@0
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:00.0 dn=/pci@800000020000001,0/ethernet@0
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:01.0 dn=/pci@800000020000001,0/scsi@1
pci_dma_dev_setup_pSeriesLP: no DMA window found for pci dev=0000:00:01.0 dn=/pci@800000020000001,0/scsi@1
PCI: Cannot allocate resource region 0 of device 0000:00:00.0, will remap
PCI: Cannot allocate resource region 0 of device 0000:00:00.0, will remap
PCI: Cannot allocate resource region 6 of device 0000:00:00.0, will remap
PCI: Cannot allocate resource region 6 of device 0000:00:00.0, will remap
PCI: Cannot allocate resource region 0 of device 0000:00:01.0, will remap
PCI: Cannot allocate resource region 0 of device 0000:00:01.0, will remap
opal: Node not found
opal: Node not found
bio: create slab <bio-0> at 0
bio: create slab <bio-0> at 0
vgaarb: loaded
vgaarb: loaded
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
usbcore: registered new device driver usb
NetLabel: Initializing
NetLabel: Initializing
NetLabel: domain hash size = 128
NetLabel: domain hash size = 128
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: protocols = UNLABELED CIPSOv4
NetLabel: unlabeled traffic allowed by default
NetLabel: unlabeled traffic allowed by default
Switching to clocksource timebase
Switching to clocksource timebase
NET: Registered protocol family 2
NET: Registered protocol family 2
IP route cache hash table entries: 8192 (order: 0, 65536 bytes)
IP route cache hash table entries: 8192 (order: 0, 65536 bytes)
TCP established hash table entries: 32768 (order: 3, 524288 bytes)
TCP established hash table entries: 32768 (order: 3, 524288 bytes)
TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
TCP: Hash tables configured (established 32768 bind 32768)
TCP: Hash tables configured (established 32768 bind 32768)
TCP reno registered
TCP reno registered
UDP hash table entries: 2048 (order: 0, 65536 bytes)
UDP hash table entries: 2048 (order: 0, 65536 bytes)
UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
NET: Registered protocol family 1
NET: Registered protocol family 1
Unpacking initramfs...
Unpacking initramfs...
Freeing initrd memory: 5696k freed
Freeing initrd memory: 5696k freed
rtasd: No event-scan on system
rtasd: No event-scan on system
rtas_flash: no firmware flash support
rtas_flash: no firmware flash support
IOMMU table initialized, virtual merging enabled
IOMMU table initialized, virtual merging enabled
vio 30000000: Warning: IOMMU dma not supported: mask 0xffffffffffffffff, table unavailable
vio 30000000: Warning: IOMMU dma not supported: mask 0xffffffffffffffff, table unavailable
HugeTLB registered 16 MB page size, pre-allocated 0 pages
HugeTLB registered 16 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
msgmni has been set to 1992
msgmni has been set to 1992
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
io scheduler noop registered
io scheduler noop registered
io scheduler deadline registered
io scheduler deadline registered
io scheduler cfq registered (default)
io scheduler cfq registered (default)
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
rpaphp: RPA HOT Plug PCI Controller Driver version: 0.1
rpaphp: RPA HOT Plug PCI Controller Driver version: 0.1
rpadlpar_io_init: partition not DLPAR capable
rpadlpar_io_init: partition not DLPAR capable
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
pmac_zilog: 0.6 (Benjamin Herrenschmidt <email address hidden>)
pmac_zilog: 0.6 (Benjamin Herrenschmidt <email address hidden>)
Fixed MDIO Bus: probed
Fixed MDIO Bus: probed
arcnet loaded.
arcnet loaded.
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
mousedev: PS/2 mouse device common for all mice
mousedev: PS/2 mouse device common for all mice
EDAC MC: Ver: 2.1.0
EDAC MC: Ver: 2.1.0
usbcore: registered new interface driver usbhid
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
usbhid: USB HID core driver
TCP cubic registered
TCP cubic registered
NET: Registered protocol family 10
NET: Registered protocol family 10
NET: Registered protocol family 15
NET: Registered protocol family 15
lib80211: common routines for IEEE802.11 drivers
lib80211: common routines for IEEE802.11 drivers
Registering the dns_resolver key type
Registering the dns_resolver key type
libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
turn off boot console udbg0
turn off boot console udbg0
registered taskstats version 1
/home/abuild/rpmbuild/BUILD/kernel-ppc64-3.2.0/linux-3.2/drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
Freeing unused kernel memory: 6272k freed
doing fast boot
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: <email address hidden>
SCSI subsystem initialized
alua: device handler registered
rdac: device handler registered
hp_sw: device handler registered
emc: device handler registered
Creating device nodes with udev
udevd[78]: starting version 173
virtio-pci 0000:00:00.0: device not available (can't reserve [io 0x0000-0x001f])
virtio-pci: probe of 0000:00:00.0 failed with error -22
virtio-pci 0000:00:01.0: device not available (can't reserve [io 0x0000-0x003f])
virtio-pci: probe of 0000:00:01.0 failed with error -22
udevd[98]: failed to execute '/etc/sysconfig/network/scripts/ifup-sysctl' '/etc/sysconfig/network/scripts/ifup-sysctl lo -o hotplug': No such file or directory
mount: devpts already mounted or /dev/pts busy
mount: according to mtab, devpts is already mounted on /dev/pts
Boot logging started on /dev/hvc0(/dev/console) at Mon Mar 26 09:55:36 2012
md: linear personality registered for level -1
Volume group "system" not found
Volume group "system" not found
resume device not found (ignoring)
Waiting for device /dev/mapper/system-root to appear: Reading all physical volumes. This may take a while...
No volume groups found
Volume group "system" not found
Volume group "system" not found
Reading all physical volumes. This may take a while...
[...no virtio-pci block device found, so above scan loops...]
|