Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Problem with copy existing system[SOLVED]
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Wed May 02, 2018 11:58 am    Post subject: Problem with copy existing system[SOLVED] Reply with quote

Hi,
I have a working system, what I'm trying to do is to copy the whole system to another hardware.

Working system Info
processor
Code:
Intel(R) Xeon(R) CPU           X5670


make.conf
Code:
CFLAGS="-march=native -O2 -pipe -fPIE -fstack-protector-all -fPIC -D_FORTIFY_SOURCE=2"


profile is set to
Code:
[14]  default/linux/amd64/17.0/hardened (stable) *

stage
Code:
stage3-amd64-hardened

kernel
Code:
Linux 4.14.23


I rsync mount / wiht -o bind system to new hardware, install grub on new disk , change udev mac address and reboot.
System is starting i see prompt but i cant input any char, network not working. No error at booting , The same thing when i run kernel with single mode.

I try to chroot system and to emerge -e @world to recompile. After reboot the same thing happens, only prompt blinks faster that normal.
new processor
Code:
Intel(R) Xeon(R) Silver 4110


What am I missing?


Last edited by mrhe on Mon May 07, 2018 11:52 am; edited 1 time in total
Back to top
View user's profile Send private message
Zucca
Moderator
Moderator


Joined: 14 Jun 2007
Posts: 3332
Location: Rasi, Finland

PostPosted: Wed May 02, 2018 1:27 pm    Post subject: Reply with quote

You should maybe add -mtune=generic (or even -march=x86_64) to CFLAGS and then emerge -e @world on the old hardware.
Then move the files to the new system. Test it works. Change CFLAGS for the new system and emerge -e @world.
Yes. This method requires rebuilding of each package twice, but it's the safest way I've found.

Alternatively you could change CFLAGS to -mtune=generic -march=<whatever your new CPU likes>. Then emerge -e @world and move the files. On the new system just remove -mtune=generic. Now with every package you update or rebuild the "generic" CPU optimizations are removed.
_________________
..: Zucca :..
Gentoo IRC channels reside on Libera.Chat.
--
Quote:
I am NaN! I am a man!
Back to top
View user's profile Send private message
Torro
n00b
n00b


Joined: 16 Apr 2018
Posts: 18
Location: Western Europe

PostPosted: Thu May 03, 2018 10:22 am    Post subject: Reply with quote

Zucca,

Do you happen to know if it's feasible to install stage3 in/on/over your current system, relocate it, reconfigure, and emerge -e @world?
Back to top
View user's profile Send private message
Zucca
Moderator
Moderator


Joined: 14 Jun 2007
Posts: 3332
Location: Rasi, Finland

PostPosted: Thu May 03, 2018 11:05 am    Post subject: Reply with quote

Torro wrote:
Zucca,

Do you happen to know if it's feasible to install stage3 in/on/over your current system, relocate it, reconfigure, and emerge -e @world?
I really don't have enough knowledge of the internal workings of portage, but...
I think it'll lead into troubles because you need to make sure the portage database is in sync with what's intalled on the system. If you then do emerge -e @world it'll only rebuild those packages which are in the database of the stage3, so only the base system.
If you untar stage3 but exclude overwriting portage database you could make it work, but I think there are some other places too that you need to keep from overwritten.
In short: don't do it.
_________________
..: Zucca :..
Gentoo IRC channels reside on Libera.Chat.
--
Quote:
I am NaN! I am a man!
Back to top
View user's profile Send private message
Torro
n00b
n00b


Joined: 16 Apr 2018
Posts: 18
Location: Western Europe

PostPosted: Thu May 03, 2018 11:17 am    Post subject: Reply with quote

Zucca,

All right, thanks.
Maybe it'd be worthwhile if we (the Gentoo community) could take a look at the feasibility of creating a minimal system migration kit.
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Thu May 03, 2018 11:37 am    Post subject: Reply with quote

I'll have to differ with you, Zucca. This is how I create a new system. However, I do use only AMD processors which are backwards compatible (until Zen). I don't use rsync. I put the new hard drive into the old system, boot with sysrescuecd, mount both drives under /mnt and use "cp -a".
I then return the hard drive to the new system, boot the new system with sysrescuecd, chroot , change things like /etc/fstab and hostname ,rebuild the kernel using menuconfig to account for hardware differences, install the kernel and reboot. I generally do then "emerge -e @world" to tune the new system to the new CPU.
It's pretty much like moving the hard drive to new hardware. No need to do a new install.

Granted, the stage 3 or two emerge -e 's would be required if the new CPU is not backwards compatable.

How tedious and error prone is doing a fresh install, doing all the little things like setting the timezone, creating the users and passwords, installing X, the DE, all the applications et cetera.
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Thu May 03, 2018 11:43 am    Post subject: Re: Problem with copy existing system Reply with quote

mrhe wrote:
What am I missing?


Are there any error messages from OpenRC?
It sounds like your keyboard isn't working. Is the hardware different? Are you using a US keyboard? It sounds like you are locking up.
Or is it the display? Different video card? Are you booting without X? If booting into X, try disabling X.

I gather from your description that sysrescuecd or whatever install medium you are using works. That eliminates hardware failure.
Back to top
View user's profile Send private message
Zucca
Moderator
Moderator


Joined: 14 Jun 2007
Posts: 3332
Location: Rasi, Finland

PostPosted: Thu May 03, 2018 12:39 pm    Post subject: Reply with quote

My method has always been
  1. Adjust make.conf for the new and old system.
  2. emerge -e @world (@system might be enough in most cases)
  3. switch hardware / copy files to new hardware
  4. remove the adjustments for the old system from make.conf
  5. install bootloader if needed
  6. edit /etc/fstab if needed
  7. emerge -e @world (optional, unless you only did "emerge -e @system" earlier)


As I mentioned, I don't have enough knowledge of inner workings of Portage, but afaik untarring stage3 on the current system does install @system binaries which can be run on most hardware. If the portage database isn't a problem then one could skip the first emerge -e -operation by using stage3, I guess.
_________________
..: Zucca :..
Gentoo IRC channels reside on Libera.Chat.
--
Quote:
I am NaN! I am a man!
Back to top
View user's profile Send private message
Hu
Moderator
Moderator


Joined: 06 Mar 2007
Posts: 21586

PostPosted: Fri May 04, 2018 2:01 am    Post subject: Reply with quote

Overwriting files outside Portage, especially when the overwriting package is not the same version, is asking for trouble. Use it only as a last resort to repair severely broken systems, and then only if you are prepared to clean up the inevitable mess. If your package manager is not broken, let it do the work for you.
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Fri May 04, 2018 2:16 am    Post subject: Reply with quote

Back to the original problem:

Mrhe, if I understand your situation correctly, you have copied the system, entered it via chroot, and rebuilt it with emerge -e world. This means that the hardware responded to your keyboard and possibly your mouse. Upon reboot you see a prompt. Is it an X11 DE login prompt or a virtual terminal prompt? At this point the keyboard does not respond. Is this correct?

1. If it's a DE prompt on Virtual Terminal 7, can you get to VT 1 by pressing CTRL-Alt-F1?

2. Is there any indication of error?

3. If you chroot back in, is there any sort of error or warning in /var/log/messages or any other file under /var/log?

4. If the problem involves X, while in the chroot, disable automatically entering X at boot. After rebooting without X, can you log in to Virtual terminal 1?

Don't worry about the network right now. Let's get the keyboard and display working first.
Back to top
View user's profile Send private message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Fri May 04, 2018 8:13 am    Post subject: Re: Problem with copy existing system Reply with quote

Zucca wrote:

You should maybe add -mtune=generic (or even -march=x86_64) to CFLAGS and then emerge -e @world on the old hardware.
Then move the files to the new system. Test it works. Change CFLAGS for the new system and emerge -e @world.
Yes. This method requires rebuilding of each package twice, but it's the safest way I've found.

Alternatively you could change CFLAGS to -mtune=generic -march=likes&gt;. Then emerge -e @world and move the files. On the new system just remove -mtune=generic. Now with every package you update or rebuild the "generic" CPU optimizations are removed.


I will try this, i need week for this.

Tony0945 wrote:
mrhe wrote:
What am I missing?


Are there any error messages from OpenRC?
It sounds like your keyboard isn't working. Is the hardware different? Are you using a US keyboard? It sounds like you are locking up.
Or is it the display? Different video card? Are you booting without X? If booting into X, try disabling X.

I gather from your description that sysrescuecd or whatever install medium you are using works. That eliminates hardware failure.


No error,
I'm using KVM, java virtual kayboard it's working on old system and on sysrescucd. Yes US Keyboard . without X, i see screen on KVM console.

Tony0945 wrote:

Back to the original problem:

Mrhe, if I understand your situation correctly, you have copied the system, entered it via chroot, and rebuilt it with emerge -e world. This means that the hardware responded to your keyboard and possibly your mouse. Upon reboot you see a prompt. Is it an X11 DE login prompt or a virtual terminal prompt? At this point the keyboard does not respond. Is this correct?

1. If it's a DE prompt on Virtual Terminal 7, can you get to VT 1 by pressing CTRL-Alt-F1?

2. Is there any indication of error?

3. If you chroot back in, is there any sort of error or warning in /var/log/messages or any other file under /var/log?

4. If the problem involves X, while in the chroot, disable automatically entering X at boot. After rebooting without X, can you log in to Virtual terminal 1?

Don't worry about the network right now. Let's get the keyboard and display working first.



First I mount system root with bind option.

Code:
mount -o bind / /mnt/bint/


Then on new hardware i boot system from sysrescuecd, creating partition, making filesystem, mounting filesystem, and configuring rsyncd to sync all files with rsync protocol to avoid problems with acl.
Next i rsync with avHA options from old to new
Code:
rsync -avHA /mnt/bind/ test@192.168.10.10::/new/


Then chroot to on new hardware

Code:
mount --types proc /proc /mnt/new/proc
mount --rbind /sys /mnt/new/sys
mount --make-rslave /mnt/new/sys
mount --rbind /dev /mnt/new/dev
mount --make-rslave /mnt/new/dev
chroot /mnt/new/ /bin/bash


and
Code:

emerge -e @world

after that I am make new kernel with

Code:
 make clean
make menuconfig
make bzImage
cp bzImage /boot/vmlinuz-version
make modules && make modules_install
updating grub.cfg and removing ssh_host_key.

There is no X server, no erro on logs, CTRL-Alt-Fn can't change terminal, it's look like freeze but prompt blinking.
This is not the hardware problem, i have this on four identical new machines.
Back to top
View user's profile Send private message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Fri May 04, 2018 9:54 am    Post subject: Re: Problem with copy existing system Reply with quote

Zucca wrote:

You should maybe add -mtune=generic (or even -march=x86_64) to CFLAGS and then emerge -e @world on the old hardware.


Im trying this now i will know in few ahours , correct is -march=x86-64 or i can remove -march I'm think because x86-64 is default ??
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Fri May 04, 2018 1:40 pm    Post subject: Re: Problem with copy existing system Reply with quote

mrhe wrote:
correct is -march=x86-64 or i can remove -march I'm think because x86-64 is default ??

I think that's correct but I don't see it explicitly stated here: https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Fri May 04, 2018 2:18 pm    Post subject: Reply with quote

Emerging @system instead of @world should suffice, once on the new hardware you can do @world with -march=native.
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Sat May 05, 2018 8:03 am    Post subject: Reply with quote

I try on old system
Code:
CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fPIE -fstack-protector-all -fPIC -D_FORTIFY_SOURCE=2"

and on old
Code:
emerge -e @world


after end and sync in chroot on new and run
Code:
emerge -e @world

after reboot, nothing changes.

Now i change on old
Code:
CFLAGS="-O2 -pipe"
and im waitng to end emerge world .

I tested to sync old system to the same hardware and its working i can login.

log when i cant login.
[code:1:33b5233a11]May 5 09:43:01 NewHost kernel: [ 0.657491] pci 0000:03:00.0: [1a03:2000] type 00 class 0x030000
May 5 09:43:01 NewHost kernel: [ 0.657517] pci 0000:03:00.0: reg 0x10: [mem 0x9c000000-0x9cffffff]
May 5 09:43:01 NewHost kernel: [ 0.657529] pci 0000:03:00.0: reg 0x14: [mem 0x9d000000-0x9d01ffff]
May 5 09:43:01 NewHost kernel: [ 0.657540] pci 0000:03:00.0: reg 0x18: [io 0x3000-0x307f]
May 5 09:43:01 NewHost kernel: [ 0.657629] pci 0000:03:00.0: supports D1 D2
May 5 09:43:01 NewHost kernel: [ 0.657630] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.657716] pci 0000:02:00.0: PCI bridge to [bus 03]
May 5 09:43:01 NewHost kernel: [ 0.658006] pci 0000:02:00.0: bridge window [io 0x3000-0x3fff]
May 5 09:43:01 NewHost kernel: [ 0.658010] pci 0000:02:00.0: bridge window [mem 0x9c000000-0x9d0fffff]
May 5 09:43:01 NewHost kernel: [ 0.658031] pci_bus 0000:00: on NUMA node 0
May 5 09:43:01 NewHost kernel: [ 0.658717] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 17-39])
May 5 09:43:01 NewHost kernel: [ 0.659004] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.660046] acpi PNP0A08:01: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.660616] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.661002] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.661720] PCI host bridge to bus 0000:17
May 5 09:43:01 NewHost kernel: [ 0.662002] pci_bus 0000:17: root bus resource [io 0x4000-0x5fff window]
May 5 09:43:01 NewHost kernel: [ 0.662388] pci_bus 0000:17: root bus resource [mem 0x9d800000-0xaaffffff window]
May 5 09:43:01 NewHost kernel: [ 0.663001] pci_bus 0000:17: root bus resource [mem 0x384000000000-0x387fffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.663686] pci_bus 0000:17: root bus resource [bus 17-39]
May 5 09:43:01 NewHost kernel: [ 0.664009] pci 0000:17:00.0: [8086:2030] type 01 class 0x060400
May 5 09:43:01 NewHost kernel: [ 0.664060] pci 0000:17:00.0: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.664143] pci 0000:17:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:05.4: reg 0x10: [mem 0xaaf00000-0xaaf00fff]
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.0: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.1: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.2: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.3: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.4: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.5: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.6: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:08.7: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:09.0: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:09.1: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665012] pci 0000:17:0e.0: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665029] pci 0000:17:0e.1: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665085] pci 0000:17:0e.2: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.665141] pci 0000:17:0e.3: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666010] pci 0000:17:0e.4: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666011] pci 0000:17:0e.5: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666011] pci 0000:17:0e.6: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666011] pci 0000:17:0e.7: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:0f.0: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:0f.1: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1d.0: [8086:2054] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1d.1: [8086:2055] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1d.2: [8086:2056] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1d.3: [8086:2057] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1e.0: [8086:2080] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1e.1: [8086:2081] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1e.2: [8086:2082] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666012] pci 0000:17:1e.3: [8086:2083] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666015] pci 0000:17:1e.4: [8086:2084] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666072] pci 0000:17:1e.5: [8086:2085] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.666129] pci 0000:17:1e.6: [8086:2086] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: [1000:0014] type 00 class 0x010400
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: reg 0x10: [mem 0x387ffff00000-0x387fffffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: reg 0x18: [mem 0x387fffe00000-0x387fffefffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: reg 0x20: [mem 0xaae00000-0xaaefffff]
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: reg 0x24: [io 0x5000-0x50ff]
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: reg 0x30: [mem 0xaad00000-0xaadfffff pref]
May 5 09:43:01 NewHost kernel: [ 0.667011] pci 0000:18:00.0: supports D1 D2
May 5 09:43:01 NewHost kernel: [ 0.670021] pci 0000:17:00.0: PCI bridge to [bus 18]
May 5 09:43:01 NewHost kernel: [ 0.670423] pci 0000:17:00.0: bridge window [io 0x5000-0x5fff]
May 5 09:43:01 NewHost kernel: [ 0.670427] pci 0000:17:00.0: bridge window [mem 0xaad00000-0xaaefffff]
May 5 09:43:01 NewHost kernel: [ 0.670433] pci 0000:17:00.0: bridge window [mem 0x387fffe00000-0x387fffffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.670456] pci_bus 0000:17: on NUMA node 0
May 5 09:43:01 NewHost kernel: [ 0.670541] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 3a-5c])
May 5 09:43:01 NewHost kernel: [ 0.670928] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.672338] acpi PNP0A08:02: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.672895] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.674001] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.674715] PCI host bridge to bus 0000:3a
May 5 09:43:01 NewHost kernel: [ 0.675002] pci_bus 0000:3a: root bus resource [io 0x6000-0x7fff window]
May 5 09:43:01 NewHost kernel: [ 0.675389] pci_bus 0000:3a: root bus resource [mem 0xab000000-0xb87fffff window]
May 5 09:43:01 NewHost kernel: [ 0.676001] pci_bus 0000:3a: root bus resource [mem 0x388000000000-0x38bfffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.676693] pci_bus 0000:3a: root bus resource [bus 3a-5c]
May 5 09:43:01 NewHost kernel: [ 0.677009] pci 0000:3a:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677082] pci 0000:3a:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677151] pci 0000:3a:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.677160] pci 0000:3a:05.4: reg 0x10: [mem 0xb8700000-0xb8700fff]
May 5 09:43:01 NewHost kernel: [ 0.677232] pci 0000:3a:08.0: [8086:2066] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677299] pci 0000:3a:09.0: [8086:2066] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677366] pci 0000:3a:0a.0: [8086:2040] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677429] pci 0000:3a:0a.1: [8086:2041] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677491] pci 0000:3a:0a.2: [8086:2042] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677551] pci 0000:3a:0a.3: [8086:2043] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677612] pci 0000:3a:0a.4: [8086:2044] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677673] pci 0000:3a:0a.5: [8086:2045] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.677735] pci 0000:3a:0a.6: [8086:2046] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678010] pci 0000:3a:0a.7: [8086:2047] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678011] pci 0000:3a:0b.0: [8086:2048] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678011] pci 0000:3a:0b.1: [8086:2049] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678011] pci 0000:3a:0b.2: [8086:204a] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678047] pci 0000:3a:0b.3: [8086:204b] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678109] pci 0000:3a:0c.0: [8086:2040] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678174] pci 0000:3a:0c.1: [8086:2041] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678235] pci 0000:3a:0c.2: [8086:2042] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678297] pci 0000:3a:0c.3: [8086:2043] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678358] pci 0000:3a:0c.4: [8086:2044] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678420] pci 0000:3a:0c.5: [8086:2045] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678481] pci 0000:3a:0c.6: [8086:2046] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678542] pci 0000:3a:0c.7: [8086:2047] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678603] pci 0000:3a:0d.0: [8086:2048] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678667] pci 0000:3a:0d.1: [8086:2049] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.678730] pci 0000:3a:0d.2: [8086:204a] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.679010] pci 0000:3a:0d.3: [8086:204b] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.679010] pci_bus 0000:3a: on NUMA node 0
May 5 09:43:01 NewHost kernel: [ 0.679010] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5d-7f])
May 5 09:43:01 NewHost kernel: [ 0.679010] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.680023] acpi PNP0A08:03: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.680581] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.681001] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.681736] PCI host bridge to bus 0000:5d
May 5 09:43:01 NewHost kernel: [ 0.682002] pci_bus 0000:5d: root bus resource [io 0x8000-0x9fff window]
May 5 09:43:01 NewHost kernel: [ 0.682389] pci_bus 0000:5d: root bus resource [mem 0xb8800000-0xc5ffffff window]
May 5 09:43:01 NewHost kernel: [ 0.684001] pci_bus 0000:5d: root bus resource [mem 0x38c000000000-0x38ffffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.684688] pci_bus 0000:5d: root bus resource [bus 5d-7f]
May 5 09:43:01 NewHost kernel: [ 0.685010] pci 0000:5d:02.0: [8086:2032] type 01 class 0x060400
May 5 09:43:01 NewHost kernel: [ 0.685034] pci 0000:5d:02.0: enabling Extended Tags
May 5 09:43:01 NewHost kernel: [ 0.685446] pci 0000:5d:02.0: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.685497] pci 0000:5d:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.685569] pci 0000:5d:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.685639] pci 0000:5d:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.685648] pci 0000:5d:05.4: reg 0x10: [mem 0xc5f00000-0xc5f00fff]
May 5 09:43:01 NewHost kernel: [ 0.685723] pci 0000:5d:0e.0: [8086:2058] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.685785] pci 0000:5d:0e.1: [8086:2059] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.685847] pci 0000:5d:0f.0: [8086:2058] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.685910] pci 0000:5d:0f.1: [8086:2059] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.686012] pci 0000:5d:12.0: [8086:204c] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.686033] pci 0000:5d:12.1: [8086:204d] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.686082] pci 0000:5d:12.2: [8086:204e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.686135] pci 0000:5d:15.0: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.686189] pci 0000:5d:16.0: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.686242] pci 0000:5d:16.4: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.686326] pci 0000:5e:00.0: [8086:37c0] type 01 class 0x060400
May 5 09:43:01 NewHost kernel: [ 0.686343] pci 0000:5e:00.0: reg 0x10: [mem 0xc5e00000-0xc5e1ffff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.686349] pci 0000:5e:00.0: reg 0x38: [mem 0xc5c00000-0xc5cfffff pref]
May 5 09:43:01 NewHost kernel: [ 0.686392] pci 0000:5e:00.0: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.689018] pci 0000:5d:02.0: PCI bridge to [bus 5e-61]
May 5 09:43:01 NewHost kernel: [ 0.689423] pci 0000:5d:02.0: bridge window [mem 0xc5c00000-0xc5efffff]
May 5 09:43:01 NewHost kernel: [ 0.689426] pci 0000:5d:02.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.689463] pci 0000:5f:03.0: [8086:37c5] type 01 class 0x060400
May 5 09:43:01 NewHost kernel: [ 0.689539] pci 0000:5f:03.0: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.689594] pci 0000:5e:00.0: PCI bridge to [bus 5f-61]
May 5 09:43:01 NewHost kernel: [ 0.689979] pci 0000:5e:00.0: bridge window [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.689983] pci 0000:5e:00.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.690023] pci 0000:60:00.0: [8086:37d1] type 00 class 0x020000
May 5 09:43:01 NewHost kernel: [ 0.690048] pci 0000:60:00.0: reg 0x10: [mem 0xc4000000-0xc4ffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.690066] pci 0000:60:00.0: reg 0x1c: [mem 0xc5808000-0xc580ffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.690080] pci 0000:60:00.0: reg 0x30: [mem 0xc5d80000-0xc5dfffff pref]
May 5 09:43:01 NewHost kernel: [ 0.690087] pci 0000:60:00.0: enabling Extended Tags
May 5 09:43:01 NewHost kernel: [ 0.690528] pci 0000:60:00.0: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.690582] pci 0000:60:00.1: [8086:37d1] type 00 class 0x020000
May 5 09:43:01 NewHost kernel: [ 0.690607] pci 0000:60:00.1: reg 0x10: [mem 0xc3000000-0xc3ffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.690625] pci 0000:60:00.1: reg 0x1c: [mem 0xc5800000-0xc5807fff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.690639] pci 0000:60:00.1: reg 0x30: [mem 0xc5d00000-0xc5d7ffff pref]
May 5 09:43:01 NewHost kernel: [ 0.690645] pci 0000:60:00.1: enabling Extended Tags
May 5 09:43:01 NewHost kernel: [ 0.691061] pci 0000:60:00.1: PME# supported from D0 D3hot D3cold
May 5 09:43:01 NewHost kernel: [ 0.691131] pci 0000:5f:03.0: PCI bridge to [bus 60-61]
May 5 09:43:01 NewHost kernel: [ 0.691513] pci 0000:5f:03.0: bridge window [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.691518] pci 0000:5f:03.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.691532] pci_bus 0000:5d: on NUMA node 0
May 5 09:43:01 NewHost kernel: [ 0.691654] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-84])
May 5 09:43:01 NewHost kernel: [ 0.692003] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.692877] acpi PNP0A08:06: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.693135] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.693819] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.694060] PCI host bridge to bus 0000:80
May 5 09:43:01 NewHost kernel: [ 0.694437] pci_bus 0000:80: root bus resource [io 0xa000-0xbfff window]
May 5 09:43:01 NewHost kernel: [ 0.694824] pci_bus 0000:80: root bus resource [mem 0xc6000000-0xd37fffff window]
May 5 09:43:01 NewHost kernel: [ 0.696002] pci_bus 0000:80: root bus resource [mem 0x390000000000-0x393fffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.696685] pci_bus 0000:80: root bus resource [bus 80-84]
May 5 09:43:01 NewHost kernel: [ 0.697010] pci 0000:80:04.0: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697023] pci 0000:80:04.0: reg 0x10: [mem 0x393ffff1c000-0x393ffff1ffff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.697109] pci 0000:80:04.1: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697121] pci 0000:80:04.1: reg 0x10: [mem 0x393ffff18000-0x393ffff1bfff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.697201] pci 0000:80:04.2: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697213] pci 0000:80:04.2: reg 0x10: [mem 0x393ffff14000-0x393ffff17fff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.697292] pci 0000:80:04.3: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697304] pci 0000:80:04.3: reg 0x10: [mem 0x393ffff10000-0x393ffff13fff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.697384] pci 0000:80:04.4: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697396] pci 0000:80:04.4: reg 0x10: [mem 0x393ffff0c000-0x393ffff0ffff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.697475] pci 0000:80:04.5: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.697487] pci 0000:80:04.5: reg 0x10: [mem 0x393ffff08000-0x393ffff0bfff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.698009] pci 0000:80:04.6: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698009] pci 0000:80:04.6: reg 0x10: [mem 0x393ffff04000-0x393ffff07fff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.698010] pci 0000:80:04.7: [8086:2021] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698010] pci 0000:80:04.7: reg 0x10: [mem 0x393ffff00000-0x393ffff03fff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.698012] pci 0000:80:05.0: [8086:2024] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698012] pci 0000:80:05.2: [8086:2025] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698012] pci 0000:80:05.4: [8086:2026] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.698012] pci 0000:80:05.4: reg 0x10: [mem 0xd3700000-0xd3700fff]
May 5 09:43:01 NewHost kernel: [ 0.698012] pci 0000:80:08.0: [8086:2014] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698047] pci 0000:80:08.1: [8086:2015] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.698101] pci 0000:80:08.2: [8086:2016] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.698171] pci_bus 0000:80: on NUMA node 1
May 5 09:43:01 NewHost kernel: [ 0.698239] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 85-ad])
May 5 09:43:01 NewHost kernel: [ 0.698626] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.699341] acpi PNP0A08:07: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.699902] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.701001] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.701736] PCI host bridge to bus 0000:85
May 5 09:43:01 NewHost kernel: [ 0.702002] pci_bus 0000:85: root bus resource [io 0xc000-0xdfff window]
May 5 09:43:01 NewHost kernel: [ 0.702389] pci_bus 0000:85: root bus resource [mem 0xd3800000-0xe0ffffff window]
May 5 09:43:01 NewHost kernel: [ 0.711002] pci_bus 0000:85: root bus resource [mem 0x394000000000-0x397fffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.711689] pci_bus 0000:85: root bus resource [bus 85-ad]
May 5 09:43:01 NewHost kernel: [ 0.712010] pci 0000:85:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.712095] pci 0000:85:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.712177] pci 0000:85:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.712186] pci 0000:85:05.4: reg 0x10: [mem 0xe0f00000-0xe0f00fff]
May 5 09:43:01 NewHost kernel: [ 0.712270] pci 0000:85:08.0: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.712336] pci 0000:85:08.1: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713011] pci 0000:85:08.2: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713011] pci 0000:85:08.3: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:08.4: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:08.5: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:08.6: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:08.7: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:09.0: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:09.1: [8086:208d] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:0e.0: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:0e.1: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713012] pci 0000:85:0e.2: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713059] pci 0000:85:0e.3: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713118] pci 0000:85:0e.4: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713177] pci 0000:85:0e.5: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713236] pci 0000:85:0e.6: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713295] pci 0000:85:0e.7: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.713356] pci 0000:85:0f.0: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714009] pci 0000:85:0f.1: [8086:208e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1d.0: [8086:2054] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1d.1: [8086:2055] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1d.2: [8086:2056] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1d.3: [8086:2057] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1e.0: [8086:2080] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1e.1: [8086:2081] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1e.2: [8086:2082] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1e.3: [8086:2083] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714011] pci 0000:85:1e.4: [8086:2084] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714038] pci 0000:85:1e.5: [8086:2085] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714098] pci 0000:85:1e.6: [8086:2086] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.714158] pci_bus 0000:85: on NUMA node 1
May 5 09:43:01 NewHost kernel: [ 0.714252] ACPI: PCI Root Bridge [PC08] (domain 0000 [bus ae-d6])
May 5 09:43:01 NewHost kernel: [ 0.714640] acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.716342] acpi PNP0A08:08: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.716900] acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.717001] acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.717735] PCI host bridge to bus 0000:ae
May 5 09:43:01 NewHost kernel: [ 0.718002] pci_bus 0000:ae: root bus resource [io 0xe000-0xefff window]
May 5 09:43:01 NewHost kernel: [ 0.718388] pci_bus 0000:ae: root bus resource [mem 0xe1000000-0xee7fffff window]
May 5 09:43:01 NewHost kernel: [ 0.719001] pci_bus 0000:ae: root bus resource [mem 0x398000000000-0x39bfffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.719684] pci_bus 0000:ae: root bus resource [bus ae-d6]
May 5 09:43:01 NewHost kernel: [ 0.720009] pci 0000:ae:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.720088] pci 0000:ae:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.720162] pci 0000:ae:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.720171] pci 0000:ae:05.4: reg 0x10: [mem 0xee700000-0xee700fff]
May 5 09:43:01 NewHost kernel: [ 0.720249] pci 0000:ae:08.0: [8086:2066] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721010] pci 0000:ae:09.0: [8086:2066] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.0: [8086:2040] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.1: [8086:2041] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.2: [8086:2042] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.3: [8086:2043] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.4: [8086:2044] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.5: [8086:2045] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.6: [8086:2046] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0a.7: [8086:2047] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0b.0: [8086:2048] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721012] pci 0000:ae:0b.1: [8086:2049] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721054] pci 0000:ae:0b.2: [8086:204a] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721119] pci 0000:ae:0b.3: [8086:204b] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.721191] pci 0000:ae:0c.0: [8086:2040] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722011] pci 0000:ae:0c.1: [8086:2041] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722011] pci 0000:ae:0c.2: [8086:2042] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0c.3: [8086:2043] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0c.4: [8086:2044] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0c.5: [8086:2045] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0c.6: [8086:2046] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0c.7: [8086:2047] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0d.0: [8086:2048] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0d.1: [8086:2049] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0d.2: [8086:204a] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci 0000:ae:0d.3: [8086:204b] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.722012] pci_bus 0000:ae: on NUMA node 1
May 5 09:43:01 NewHost kernel: [ 0.722087] ACPI: PCI Root Bridge [PC09] (domain 0000 [bus d7-ff])
May 5 09:43:01 NewHost kernel: [ 0.722478] acpi PNP0A08:09: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 5 09:43:01 NewHost kernel: [ 0.723335] acpi PNP0A08:09: _OSC: platform does not support [AER]
May 5 09:43:01 NewHost kernel: [ 0.723888] acpi PNP0A08:09: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
May 5 09:43:01 NewHost kernel: [ 0.725001] acpi PNP0A08:09: FADT indicates ASPM is unsupported, using BIOS configuration
May 5 09:43:01 NewHost kernel: [ 0.725737] PCI host bridge to bus 0000:d7
May 5 09:43:01 NewHost kernel: [ 0.726002] pci_bus 0000:d7: root bus resource [io 0xf000-0xffff window]
May 5 09:43:01 NewHost kernel: [ 0.726388] pci_bus 0000:d7: root bus resource [mem 0xee800000-0xfbffffff window]
May 5 09:43:01 NewHost kernel: [ 0.727001] pci_bus 0000:d7: root bus resource [mem 0x39c000000000-0x39ffffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.727688] pci_bus 0000:d7: root bus resource [bus d7-ff]
May 5 09:43:01 NewHost kernel: [ 0.728010] pci 0000:d7:05.0: [8086:2034] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.728088] pci 0000:d7:05.2: [8086:2035] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.728162] pci 0000:d7:05.4: [8086:2036] type 00 class 0x080020
May 5 09:43:01 NewHost kernel: [ 0.728172] pci 0000:d7:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
May 5 09:43:01 NewHost kernel: [ 0.728253] pci 0000:d7:0e.0: [8086:2058] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:0e.1: [8086:2059] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:0f.0: [8086:2058] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:0f.1: [8086:2059] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:12.0: [8086:204c] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:12.1: [8086:204d] type 00 class 0x110100
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:12.2: [8086:204e] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:15.0: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729011] pci 0000:d7:16.0: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729013] pci 0000:d7:16.4: [8086:2018] type 00 class 0x088000
May 5 09:43:01 NewHost kernel: [ 0.729013] pci_bus 0000:d7: on NUMA node 1
May 5 09:43:01 NewHost kernel: [ 0.729188] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.729619] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.730039] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.730467] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.730891] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.732038] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.732462] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.732888] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 *11 12 14 15)
May 5 09:43:01 NewHost kernel: [ 0.733278] pci 0000:03:00.0: vgaarb: setting as boot VGA device
May 5 09:43:01 NewHost kernel: [ 0.733400] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 5 09:43:01 NewHost kernel: [ 0.734026] pci 0000:03:00.0: vgaarb: bridge control possible
May 5 09:43:01 NewHost kernel: [ 0.734452] vgaarb: loaded
May 5 09:43:01 NewHost kernel: [ 0.735008] SCSI subsystem initialized
May 5 09:43:01 NewHost kernel: [ 0.736054] libata version 3.00 loaded.
May 5 09:43:01 NewHost kernel: [ 0.736054] ACPI: bus type USB registered
May 5 09:43:01 NewHost kernel: [ 0.736442] usbcore: registered new interface driver usbfs
May 5 09:43:01 NewHost kernel: [ 0.736829] usbcore: registered new interface driver hub
May 5 09:43:01 NewHost kernel: [ 0.737088] usbcore: registered new device driver usb
May 5 09:43:01 NewHost kernel: [ 0.737491] pps_core: LinuxPPS API ver. 1 registered
May 5 09:43:01 NewHost kernel: [ 0.737868] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 5 09:43:01 NewHost kernel: [ 0.738005] PTP clock support registered
May 5 09:43:01 NewHost kernel: [ 0.739058] EDAC MC: Ver: 3.0.0
May 5 09:43:01 NewHost kernel: [ 0.740035] Advanced Linux Sound Architecture Driver Initialized.
May 5 09:43:01 NewHost kernel: [ 0.740434] PCI: Using ACPI for IRQ routing
May 5 09:43:01 NewHost kernel: [ 0.743809] PCI: pci_cache_line_size set to 64 bytes
May 5 09:43:01 NewHost kernel: [ 0.744022] e820: reserve RAM buffer [mem 0x0009a000-0x0009ffff]
May 5 09:43:01 NewHost kernel: [ 0.744024] e820: reserve RAM buffer [mem 0x6a6a0000-0x6bffffff]
May 5 09:43:01 NewHost kernel: [ 0.744025] e820: reserve RAM buffer [mem 0x6c90c000-0x6fffffff]
May 5 09:43:01 NewHost kernel: [ 0.744026] e820: reserve RAM buffer [mem 0x6f800000-0x6fffffff]
May 5 09:43:01 NewHost kernel: [ 0.745010] NetLabel: Initializing
May 5 09:43:01 NewHost kernel: [ 0.745385] NetLabel: domain hash size = 128
May 5 09:43:01 NewHost kernel: [ 0.745761] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
May 5 09:43:01 NewHost kernel: [ 0.746017] NetLabel: unlabeled traffic allowed by default
May 5 09:43:01 NewHost kernel: [ 0.746411] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 5 09:43:01 NewHost kernel: [ 0.746450] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
May 5 09:43:01 NewHost kernel: [ 0.749088] clocksource: Switched to clocksource hpet
May 5 09:43:01 NewHost kernel: [ 0.760041] VFS: Disk quotas dquot_6.6.0
May 5 09:43:01 NewHost kernel: [ 0.760480] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 5 09:43:01 NewHost kernel: [ 0.760949] pnp: PnP ACPI init
May 5 09:43:01 NewHost kernel: [ 0.761737] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
May 5 09:43:01 NewHost kernel: [ 0.761849] system 00:01: [io 0x0500-0x053f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.762269] system 00:01: [io 0x0400-0x047f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.762653] system 00:01: [io 0x0540-0x057f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.763060] system 00:01: [io 0x0600-0x061f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.763464] system 00:01: [io 0x0880-0x0883] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.763846] system 00:01: [io 0x0800-0x081f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.764256] system 00:01: [mem 0xfed1c000-0xfed3ffff] could not be reserved
May 5 09:43:01 NewHost kernel: [ 0.764640] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.765050] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.765435] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.765820] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.766232] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.766620] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.767026] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
May 5 09:43:01 NewHost kernel: [ 0.767311] system 00:02: [io 0x0a00-0x0a0f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.767707] system 00:02: [io 0x0a10-0x0a1f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.768116] system 00:02: [io 0x0a20-0x0a2f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.768500] system 00:02: [io 0x0a30-0x0a3f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.768884] system 00:02: [io 0x0a40-0x0a4f] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.769296] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
May 5 09:43:01 NewHost kernel: [ 0.769536] pnp 00:03: [dma 0 disabled]
May 5 09:43:01 NewHost kernel: [ 0.769572] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
May 5 09:43:01 NewHost kernel: [ 0.769797] pnp 00:04: [dma 0 disabled]
May 5 09:43:01 NewHost kernel: [ 0.769829] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
May 5 09:43:01 NewHost kernel: [ 0.769962] system 00:05: [mem 0xfd000000-0xfdabffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.770380] system 00:05: [mem 0xfdad0000-0xfdadffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.770769] system 00:05: [mem 0xfdb00000-0xfdffffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.771183] system 00:05: [mem 0xfe000000-0xfe00ffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.771569] system 00:05: [mem 0xfe011000-0xfe01ffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.771956] system 00:05: [mem 0xfe036000-0xfe03bfff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.772369] system 00:05: [mem 0xfe03d000-0xfe3fffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.772756] system 00:05: [mem 0xfe410000-0xfe7fffff] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.773173] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
May 5 09:43:01 NewHost kernel: [ 0.773403] system 00:06: [io 0x0f00-0x0ffe] has been reserved
May 5 09:43:01 NewHost kernel: [ 0.773801] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
May 5 09:43:01 NewHost kernel: [ 0.774464] pnp: PnP ACPI: found 7 devices
May 5 09:43:01 NewHost kernel: [ 0.781589] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 5 09:43:01 NewHost kernel: [ 0.782321] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
May 5 09:43:01 NewHost kernel: [ 0.782323] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
May 5 09:43:01 NewHost kernel: [ 0.782324] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
May 5 09:43:01 NewHost kernel: [ 0.782344] pci 0000:00:1c.0: BAR 8: assigned [mem 0x90000000-0x901fffff]
May 5 09:43:01 NewHost kernel: [ 0.782734] pci 0000:00:1c.0: BAR 9: assigned [mem 0x380000000000-0x3800001fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.783451] pci 0000:00:1c.0: BAR 7: assigned [io 0x1000-0x1fff]
May 5 09:43:01 NewHost kernel: [ 0.783841] pci 0000:00:1f.4: BAR 0: assigned [mem 0x380000200000-0x3800002000ff 64bit]
May 5 09:43:01 NewHost kernel: [ 0.784563] pci 0000:00:1c.0: PCI bridge to [bus 01]
May 5 09:43:01 NewHost kernel: [ 0.784945] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
May 5 09:43:01 NewHost kernel: [ 0.785358] pci 0000:00:1c.0: bridge window [mem 0x90000000-0x901fffff]
May 5 09:43:01 NewHost kernel: [ 0.785748] pci 0000:00:1c.0: bridge window [mem 0x380000000000-0x3800001fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.786462] pci 0000:02:00.0: PCI bridge to [bus 03]
May 5 09:43:01 NewHost kernel: [ 0.786845] pci 0000:02:00.0: bridge window [io 0x3000-0x3fff]
May 5 09:43:01 NewHost kernel: [ 0.787260] pci 0000:02:00.0: bridge window [mem 0x9c000000-0x9d0fffff]
May 5 09:43:01 NewHost kernel: [ 0.787656] pci 0000:00:1c.5: PCI bridge to [bus 02-03]
May 5 09:43:01 NewHost kernel: [ 0.788066] pci 0000:00:1c.5: bridge window [io 0x3000-0x3fff]
May 5 09:43:01 NewHost kernel: [ 0.788457] pci 0000:00:1c.5: bridge window [mem 0x9c000000-0x9d0fffff]
May 5 09:43:01 NewHost kernel: [ 0.788848] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
May 5 09:43:01 NewHost kernel: [ 0.788849] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
May 5 09:43:01 NewHost kernel: [ 0.788850] pci_bus 0000:00: resource 6 [io 0x03b0-0x03bb window]
May 5 09:43:01 NewHost kernel: [ 0.788851] pci_bus 0000:00: resource 7 [io 0x03c0-0x03df window]
May 5 09:43:01 NewHost kernel: [ 0.788852] pci_bus 0000:00: resource 8 [io 0x1000-0x3fff window]
May 5 09:43:01 NewHost kernel: [ 0.788853] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff window]
May 5 09:43:01 NewHost kernel: [ 0.788854] pci_bus 0000:00: resource 10 [mem 0x000c4000-0x000c7fff window]
May 5 09:43:01 NewHost kernel: [ 0.788855] pci_bus 0000:00: resource 11 [mem 0xfe010000-0xfe010fff window]
May 5 09:43:01 NewHost kernel: [ 0.788856] pci_bus 0000:00: resource 12 [mem 0x90000000-0x9d7fffff window]
May 5 09:43:01 NewHost kernel: [ 0.788857] pci_bus 0000:00: resource 13 [mem 0x380000000000-0x383fffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.788858] pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
May 5 09:43:01 NewHost kernel: [ 0.788859] pci_bus 0000:01: resource 1 [mem 0x90000000-0x901fffff]
May 5 09:43:01 NewHost kernel: [ 0.788860] pci_bus 0000:01: resource 2 [mem 0x380000000000-0x3800001fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.788861] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
May 5 09:43:01 NewHost kernel: [ 0.788862] pci_bus 0000:02: resource 1 [mem 0x9c000000-0x9d0fffff]
May 5 09:43:01 NewHost kernel: [ 0.788863] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
May 5 09:43:01 NewHost kernel: [ 0.788864] pci_bus 0000:03: resource 1 [mem 0x9c000000-0x9d0fffff]
May 5 09:43:01 NewHost kernel: [ 0.788951] pci 0000:17:00.0: PCI bridge to [bus 18]
May 5 09:43:01 NewHost kernel: [ 0.789359] pci 0000:17:00.0: bridge window [io 0x5000-0x5fff]
May 5 09:43:01 NewHost kernel: [ 0.789750] pci 0000:17:00.0: bridge window [mem 0xaad00000-0xaaefffff]
May 5 09:43:01 NewHost kernel: [ 0.790163] pci 0000:17:00.0: bridge window [mem 0x387fffe00000-0x387fffffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.790863] pci_bus 0000:17: resource 4 [io 0x4000-0x5fff window]
May 5 09:43:01 NewHost kernel: [ 0.790864] pci_bus 0000:17: resource 5 [mem 0x9d800000-0xaaffffff window]
May 5 09:43:01 NewHost kernel: [ 0.790865] pci_bus 0000:17: resource 6 [mem 0x384000000000-0x387fffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.790866] pci_bus 0000:18: resource 0 [io 0x5000-0x5fff]
May 5 09:43:01 NewHost kernel: [ 0.790867] pci_bus 0000:18: resource 1 [mem 0xaad00000-0xaaefffff]
May 5 09:43:01 NewHost kernel: [ 0.790868] pci_bus 0000:18: resource 2 [mem 0x387fffe00000-0x387fffffffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.790886] pci_bus 0000:3a: resource 4 [io 0x6000-0x7fff window]
May 5 09:43:01 NewHost kernel: [ 0.790887] pci_bus 0000:3a: resource 5 [mem 0xab000000-0xb87fffff window]
May 5 09:43:01 NewHost kernel: [ 0.790888] pci_bus 0000:3a: resource 6 [mem 0x388000000000-0x38bfffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.790915] pci 0000:5f:03.0: PCI bridge to [bus 60-61]
May 5 09:43:01 NewHost kernel: [ 0.791328] pci 0000:5f:03.0: bridge window [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.791720] pci 0000:5f:03.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.792468] pci 0000:5e:00.0: PCI bridge to [bus 5f-61]
May 5 09:43:01 NewHost kernel: [ 0.792850] pci 0000:5e:00.0: bridge window [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.793266] pci 0000:5e:00.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.793947] pci 0000:5d:02.0: PCI bridge to [bus 5e-61]
May 5 09:43:01 NewHost kernel: [ 0.794353] pci 0000:5d:02.0: bridge window [mem 0xc5c00000-0xc5efffff]
May 5 09:43:01 NewHost kernel: [ 0.794738] pci 0000:5d:02.0: bridge window [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.795445] pci_bus 0000:5d: resource 4 [io 0x8000-0x9fff window]
May 5 09:43:01 NewHost kernel: [ 0.795446] pci_bus 0000:5d: resource 5 [mem 0xb8800000-0xc5ffffff window]
May 5 09:43:01 NewHost kernel: [ 0.795447] pci_bus 0000:5d: resource 6 [mem 0x38c000000000-0x38ffffffffff window]
May 5 09:43:01 NewHost kernel: [ 0.795448] pci_bus 0000:5e: resource 1 [mem 0xc5c00000-0xc5efffff]
May 5 09:43:01 NewHost kernel: [ 0.795449] pci_bus 0000:5e: resource 2 [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.795450] pci_bus 0000:5f: resource 1 [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.795451] pci_bus 0000:5f: resource 2 [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kernel: [ 0.795452] pci_bus 0000:60: resource 1 [mem 0xc5d00000-0xc5dfffff]
May 5 09:43:01 NewHost kernel: [ 0.795453] pci_bus 0000:60: resource 2 [mem 0xc3000000-0xc59fffff 64bit pref]
May 5 09:43:01 NewHost kern


Last edited by mrhe on Mon May 07, 2018 6:58 am; edited 3 times in total
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Sat May 05, 2018 2:01 pm    Post subject: Reply with quote

I think your problems are related to the virtualization not your kernel or software. Try installing a standard Ubuntu to the virtual machine and see if it acts the same.
Back to top
View user's profile Send private message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Mon May 07, 2018 6:53 am    Post subject: Reply with quote

Tony0945 wrote:
I think your problems are related to the virtualization not your kernel or software. Try installing a standard Ubuntu to the virtual machine and see if it acts the same.



What virtualization? This is phisical machine, i only see screen thru "KVM Console". Supermicro board with managment iterface like IMM in IBM and iLO in HP.
Back to top
View user's profile Send private message
mrhe
n00b
n00b


Joined: 07 Aug 2012
Posts: 38
Location: Kraków

PostPosted: Mon May 07, 2018 11:52 am    Post subject: Reply with quote

It's a bit embarrassing but xhci was missing in the kernel. Thank You for Your help. To close
Back to top
View user's profile Send private message
Tony0945
Watchman
Watchman


Joined: 25 Jul 2006
Posts: 5127
Location: Illinois, USA

PostPosted: Mon May 07, 2018 2:25 pm    Post subject: Reply with quote

mrhe wrote:
What virtualization? This is phisical machine, i only see screen thru "KVM Console". Supermicro board with managment iterface like IMM in IBM and iLO in HP.

Upstream you said "I'm using KVM"
KVM=Kernel Virtual Machine.
Back to top
View user's profile Send private message
Hu
Moderator
Moderator


Joined: 06 Mar 2007
Posts: 21586

PostPosted: Tue May 08, 2018 1:50 am    Post subject: Reply with quote

I always thought Kernel-Virtual-Machine was a terrible name for that Linux project, since the acronym collides with the much older Keyboard-Video-Mouse (multiplexer) usage, which is itself not a great name, but at least it was unique when it became popular.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum