Yes, this question has been asked before, but reading the answers didn’t enlighten me much.
I wrote a C program that crashes after a few days of use. An important point is that it does NOT generate a core file, even though everything is set up so that it should (core_pattern, ulimit -c unlimited, etc. I can trigger a core dump fine with kill -SIGQUIT).
The programs extensively logs what it does, but there’s no hint about the crash in the log.
The only message displayed at the crash (or before?) is:
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
after 2322 requests (2322 known processed) with 0 events remaining.
So two questions:
— how is it possible for a program to crash (return $?=1) without core dump.
— what is this error message about and what can I do ?
System is RedHat Enterprise 6.4
Edit:
I managed to force a core dump by calling abort() from inside an atexit() callback:
(gdb) bt
#0 0x00bc8424 in __kernel_vsyscall ()
#1 0x0085a861 in raise () from /lib/libc.so.6
#2 0x0085c13a in abort () from /lib/libc.so.6
#3 0x0808f5cf in Unexpected () at MyCode.c:1378
#4 0x0085de9f in exit () from /lib/libc.so.6
#5 0x00c85701 in _XDefaultIOError () from /usr/lib/libX11.so.6
#6 0x00c85797 in _XIOError () from /usr/lib/libX11.so.6
#7 0x00c84055 in _XReply () from /usr/lib/libX11.so.6
#8 0x00c68b8f in XGetImage () from /usr/lib/libX11.so.6
#9 0x004fd6a7 in ?? () from /usr/local/lib/libcvi.so
#10 0x00478ad5 in ?? () from /usr/local/lib/libcvi.so
...
#29 0x001eed9d in ?? () from /usr/local/lib/libcvi.so
#30 0x001eee41 in RunUserInterface () from /usr/local/lib/libcvi.so
#31 0x0808fab4 in main (argc=2, argv=0xbfbdc984) at MyCode.c:1540
Anyone can enlighten me as to this X11 problem ? libcvi.so is not mine, only MyCode.c (LabWindows/CVI).
Edit 2014-12-05:
Here’s an even more precise backtrace. Things definitely happen in X11, but I’m no X11 programmer, so looking at the source code for X from the provided linestell me only that the X server (?) is temporarily unavailable. Is there any way to simply tell it to ignore this error if it’s only temporary ?
#4 0x00965eaf in __run_exit_handlers (status=1) at exit.c:78
#5 exit (status=1) at exit.c:100
#6 0x00c356b1 in _XDefaultIOError (dpy=0x88aeb80) at XlibInt.c:1292
#7 0x00c35747 in _XIOError (dpy=0x88aeb80) at XlibInt.c:1498
#8 0x00c340a6 in _XReply (dpy=0x88aeb80, rep=0xbf82fa90, extra=0, discard=0) at xcb_io.c:708
#9 0x00c18c0f in XGetImage (dpy=0x88aeb80, d=27263845, x=0, y=0, width=60, height=20, plane_mask=4294967295, format=2) at GetImage.c:75
#10 0x005f46a7 in ?? () from /usr/local/lib/libcvi.so
Corresponding lines:
XlibInt.c: _XDefaultIOError()
1292: exit(1);
XlibInt.c: _XIOError
1498: _XDefaultIOError(dpy);
xcb_io.c: _XReply()
708: if(!reply) _XIOError(dpy);
GetImage.c: XGetImage()
74: if (_XReply (dpy, (xReply *) &rep, 0, xFalse) == 0 || ...
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and
privacy statement. We’ll occasionally send you account related emails.
Already on GitHub?
Sign in
to your account
Closed
sherwinkh opened this issue
Jun 13, 2018
· 7 comments
Comments
I encounter this issue,and FreeRdp disconnected,log as below:
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server «:0.0»
after 92945 requests (92945 known processed) with 0 events remaining.
-
[rdp version: ]
commit dad6b7a
Merge: 73588bc 2d69e36
Author: David Fort rdp.effort@gmail.com
Date: Mon Jun 4 11:29:01 2018 +0200Merge pull request Fixed #4693: Fix integer underflow in encoder loop. #4694 from akallabeth/mic_crash_fix
Fixed microphone issue with alsa and pulse backend commit:-73588bc2b51a722d31acb81f905063cf896294c8 #4693: Fix integer underflow in encoder loop.
This is FreeRDP version 2.0.0-dev3 (dad6b7a)
Build configuration: BUILD_TESTING=OFF BUILTIN_CHANNELS=ON HAVE_AIO_H=1 HAVE_EXECINFO_H=1 HAVE_FCNTL_H=1 HAVE_INTTYPES_H=1 HAVE_MATH_C99_LONG_DOUBLE=1 HAVE_POLL_H=1 HAVE_PTHREAD_MUTEX_TIMEDLOCK=ON HAVE_PTHREAD_MUTEX_TIMEDLOCK_LIB=1 HAVE_PTHREAD_MUTEX_TIMEDLOCK_SYMBOL= HAVE_SYSLOG_H=1 HAVE_SYS_EVENTFD_H=1 HAVE_SYS_FILIO_H= HAVE_SYS_MODEM_H= HAVE_SYS_SELECT_H=1 HAVE_SYS_SOCKIO_H= HAVE_SYS_STRTIO_H= HAVE_SYS_TIMERFD_H=1 HAVE_TM_GMTOFF=1 HAVE_UNISTD_H=1 HAVE_XI_TOUCH_CLASS=1 WITH_ALSA=OFF WITH_CCACHE=ON WITH_CHANNELS=ON WITH_CLIENT=ON WITH_CLIENT_AVAILABLE=1 WITH_CLIENT_CHANNELS=ON WITH_CLIENT_CHANNELS_AVAILABLE=1 WITH_CLIENT_COMMON=ON WITH_CLIENT_INTERFACE=OFF WITH_CUPS=OFF WITH_DEBUG_ALL=OFF WITH_DEBUG_CAPABILITIES=OFF WITH_DEBUG_CERTIFICATE=OFF WITH_DEBUG_CHANNELS=OFF WITH_DEBUG_CLIPRDR=OFF WITH_DEBUG_DVC=OFF WITH_DEBUG_KBD=OFF WITH_DEBUG_LICENSE=OFF WITH_DEBUG_MUTEX=OFF WITH_DEBUG_NEGO=OFF WITH_DEBUG_NLA=OFF WITH_DEBUG_NTLM=OFF WITH_DEBUG_RAIL=OFF WITH_DEBUG_RDP=OFF WITH_DEBUG_RDPDR=OFF WITH_DEBUG_RDPEI=OFF WITH_DEBUG_REDIR=OFF WITH_DEBUG_RFX=OFF WITH_DEBUG_RINGBUFFER=OFF WITH_DEBUG_SCARD=OFF WITH_DEBUG_SND=OFF WITH_DEBUG_SVC=OFF WITH_DEBUG_SYMBOLS=OFF WITH_DEBUG_THREADS=OFF WITH_DEBUG_TIMEZONE=OFF WITH_DEBUG_TRANSPORT=OFF WITH_DEBUG_TSG=OFF WITH_DEBUG_TSMF=OFF WITH_DEBUG_WND=OFF WITH_DEBUG_X11=OFF WITH_DEBUG_X11_CLIPRDR=OFF WITH_DEBUG_X11_LOCAL_MOVESIZE=OFF WITH_DEBUG_XV=OFF WITH_DIRECTFB=OFF WITH_DSP_EXPERIMENTAL=OFF WITH_EVENTFD_READ_WRITE=1 WITH_FAAC=OFF WITH_FAAD2=OFF WITH_FFMPEG=OFF WITH_GFX_H264=OFF WITH_GPROF=OFF WITH_GSM=OFF WITH_GSSAPI=OFF WITH_GSTREAMER_0_10=OFF WITH_GSTREAMER_1_0=OFF WITH_ICU=OFF WITH_JPEG=OFF WITH_LAME=OFF WITH_LIBRARY_VERSIONING=ON WITH_LIBSYSTEMD=OFF WITH_MACAUDIO=OFF WITH_MACAUDIO_AVAILABLE=0 WITH_MANPAGES=OFF WITH_MBEDTLS=OFF WITH_NEON=ON WITH_OPENH264=OFF WITH_OPENSLES=OFF WITH_OPENSSL=ON WITH_OSS=ON WITH_PCSC=OFF WITH_PROFILER=OFF WITH_PULSE=ON WITH_SAMPLE=OFF WITH_SANITIZE_ADDRESS=OFF WITH_SANITIZE_ADDRESS_AVAILABLE=1 WITH_SANITIZE_MEMORY=OFF WITH_SANITIZE_MEMORY_AVAILABLE=1 WITH_SANITIZE_THREAD=OFF WITH_SANITIZE_THREAD_AVAILABLE=1 WITH_SERVER=OFF WITH_SERVER_INTERFACE=ON WITH_SMARTCARD_INSPECT=OFF WITH_SSE2=OFF WITH_THIRD_PARTY=OFF WITH_VALGRIND_MEMCHECK=OFF WITH_VALGRIND_MEMCHECK_AVAILABLE=1 WITH_WAYLAND=OFF WITH_X11=ON WITH_X264=OFF WITH_XCURSOR=ON WITH_XEXT=ON WITH_XFIXES=ON WITH_XI=ON WITH_XINERAMA=ON WITH_XKBFILE=OFF WITH_XRANDR=ON WITH_XRENDER=ON WITH_XSHM=ON WITH_XV=ON WITH_ZLIB=ON
Build type: Release
CFLAGS: -mfloat-abi=hard -march=armv7-a -mfpu=neon -mthumb -Wl,—hash-style=sysv -g -funwind-tables -rdynamic -I/home/r1/r1_rfx/rdp/include -L/home/r1/r1_rfx/rdp/lib -lxcb -lavcodec -lavutil -lasound -lXau -lXrender -lXfixes -lXv -L/home/r1/r1_rfx/lib-msc/libsndfile/lib -lsndfile -L/home/r1/r1_rfx/lib-msc/jsonc12/lib -ljson-c -L/home/r1/r1_rfx/lib-msc/pulse6/lib/pulseaudio -lpulsecommon-6.0 -fPIC -Wall -Wno-unused-result -Wno-unused-but-set-variable -Wno-deprecated-declarations -fvisibility=hidden -Wimplicit-function-declaration -Wredundant-decls
Compiler: GNU,
Target architecture: ARM -
[device: ]
Linux X5 3.0.36+ Fix info_packet misalignment #407 SMP PREEMPT Sun Feb 25 10:00:41 CST 2018 armv7l armv7l armv7l GNU/Linux -
[ server:]
win server 2008 R2 Standard Sp1
someone can help me?
hmm, is your system up to date? only references to this I can find is some x library issues
I have tried this:
git reset —hard commiID(the commitID is 2017/6,2016/6,2015/6)
in the 3 tests, also encounter the same error。
@akallabeth ,BTW,can I get the Remote server version info(xp or win7 or server 2008 and so on)in FreeRDP?Maybe in Capabilities Exchange?
@sherwinkh so, what do you mean with the previous comment? The error suggests some issue with your X11.
as for remote server versions, sorry, there is no (reliable) way to get that info. not part of the protocol.
@akallabeth Thank you for the reply. Could you give me some suggestion for this X11 issue?
@akallabeth instead of starting Xorg,I startup Xfbdev,then start xfreerdp, solve this problem.
- [my cmd of starting Xfbdev]
Xfbdev vt01 -br -mouse /dev/input/mice,5 -fp /work/cc/X11R6/lib/X11/fonts/misc/ -co /work/cc/X11R6/lib/X11/rgb &
2 participants
I am using pci-e passthrough to pass a video card, nic and usb controller to a vm. The vm has never had any issues.
Since i started doing pci-e pass-through i have had X11 crashes on the physical os. I was originally using Linux Mint 19.1 XFCE edition, after trying many different things i figured i messed something up and reinstalled with Linux Mint Cinnamon 19.1. Problem persists
The past install *also* seemed to point to at-spi-bus-launcher as well, but i think this is a downstream effect of X11 crashing and not the cause.
I also disabled the bluetooth service as i saw it fail to load — that didn’t help.
The X11 crashes always seem to happen ~30 seconds after cron runs, the cron jobs never actually do anything it — as shown in this log 0 jobs ran.
During a crash any audio continues to play, but no video updates and no keyboard/mouse movement. After about 10-15 seconds the screen goes black and i’m sent back to the login window. The pc doesn’t crash or reboot, everything else that was running was unaffected (obviously any apps i had open in the X11 session are gone)
I could be just sitting at the desktop or playing a game, or watching youtube, there isn’t anything that specifically triggers it.
It doesn’t seem to happen unless the server has been up around a day which makes me think there is a memory allocation issue. But this pc has 96GB of ECC ram and there aren’t any memory errors in the ipmi logs and there are no oom errors in any linux logs. The previous XFCE install i was using static hugepages, this install i’ve left it at anonymous huge pages.
Just before i reinstalled to Mint 19.1 Cinnamon i updated the to the most recent bios (3.1c), didn’t help.
I am using new 5.1 kernels from ukuu, but i also can boot back into the default linux mint kernels 4.15 and the problem still persists.
The physical os is using the nvidia 1070 card and the vm is using the 770 card, again the vm never has any problems.
During the last install i thought that something was bound to the vm gpu/usb before x11 started so i booted into runlevel 3, started the vm, then elevated to runlevel 5 but the X11 crashes continued.
Does anyone have any ideas?
Code: Select all
System: Host: drac Kernel: 5.1.16-050116-generic x86_64 bits: 64 compiler: gcc v: 8.3.0 Desktop: Cinnamon 4.0.10
Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Machine: Type: Server System: Supermicro product: Super Server v: 0123456789 serial: <filter>
Mobo: Supermicro model: X10SRL-F v: 1.01B serial: <filter> UEFI: American Megatrends v: 3.1c date: 05/02/2019
Battery: Device-1: hidpp_battery_0 model: Logitech Wireless Mouse MX Master charge: 100% status: Discharging
CPU: Topology: 6-Core model: Intel Xeon E5-1650 v4 bits: 64 type: MT MCP arch: Broadwell rev: 1 L2 cache: 15.0 MiB
flags: lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx bogomips: 86398
Speed: 1438 MHz min/max: 1200/4000 MHz Core speeds (MHz): 1: 3541 2: 1902 3: 1345 4: 1537 5: 1953 6: 1960 7: 3341
8: 2335 9: 3784 10: 3690 11: 2860 12: 2565
Graphics: Device-1: NVIDIA GP104 [GeForce GTX 1070] vendor: Micro-Star MSI driver: nvidia v: 430.26 bus ID: 03:00.0
Device-2: NVIDIA GK104 [GeForce GTX 770] vendor: eVga.com. driver: vfio-pci v: 0.2 bus ID: 04:00.0
Device-3: ASPEED Graphics Family vendor: Super Micro driver: ast v: kernel bus ID: 0b:00.0
Display: server: X.Org 1.19.6 driver: nvidia resolution: 1920x1080~60Hz, 1920x1080~60Hz
OpenGL: renderer: GeForce GTX 1070/PCIe/SSE2 v: 4.6.0 NVIDIA 430.26 direct render: Yes
Audio: Device-1: NVIDIA GP104 High Definition Audio vendor: Micro-Star MSI driver: N/A bus ID: 03:00.1
Device-2: NVIDIA GK104 HDMI Audio vendor: eVga.com. driver: vfio-pci v: 0.2 bus ID: 04:00.1
Device-3: C-Media CMI8788 [Oxygen HD Audio] vendor: ASUSTeK CMI8786 driver: snd_oxygen v: kernel bus ID: 07:04.0
Sound Server: ALSA v: k5.1.16-050116-generic
Network: Device-1: Intel 82571EB/82571GB Gigabit Ethernet D0/D1 vendor: Hewlett-Packard NC360T Dual Port Server
driver: e1000e v: 3.2.6-k port: c020 bus ID: 05:00.0
IF: ens7f0 state: down mac: <filter>
Device-2: Intel 82571EB/82571GB Gigabit Ethernet D0/D1 vendor: Hewlett-Packard NC360T Dual Port Server
driver: e1000e v: 3.2.6-k port: c000 bus ID: 05:00.1
IF: ens7f1 state: up speed: 1000 Mbps duplex: full mac: <filter>
Device-3: Intel I210 Gigabit Network vendor: Super Micro driver: igb v: 5.6.0-k port: a000 bus ID: 08:00.0
IF: eno1 state: down mac: <filter>
Device-4: Intel I210 Gigabit Network vendor: Super Micro driver: vfio-pci v: 0.2 port: 9000 bus ID: 09:00.0
Drives: Local Storage: total: 5.24 TiB used: 1.15 TiB (21.9%)
ID-1: /dev/nvme0n1 vendor: Samsung model: SSD 960 EVO 250GB size: 232.89 GiB
ID-2: /dev/sda vendor: Seagate model: ST1000LM024 HN-M101MBB size: 931.51 GiB temp: 24 C
ID-3: /dev/sdb vendor: SanDisk model: SDSSDH3512G size: 476.94 GiB temp: 26 C
ID-4: /dev/sdc vendor: Seagate model: ST4000DM004-2CV104 size: 3.64 TiB
Partition: ID-1: / size: 238.30 GiB used: 84.06 GiB (35.3%) fs: xfs dev: /dev/dm-0
ID-2: /boot size: 961.6 MiB used: 224.7 MiB (23.4%) fs: ext2 dev: /dev/sdb2
Sensors: System Temperatures: cpu: 26.0 C mobo: N/A gpu: nvidia temp: 48 C
Fan Speeds (RPM): N/A gpu: nvidia fan: 0%
Info: Processes: 376 Uptime: 20h 32m Memory: 94.37 GiB used: 20.17 GiB (21.4%) Init: systemd runlevel: 5 Compilers:
gcc: 7.4.0 Shell: bash v: 4.4.20 inxi: 3.0.27
X11 Crash at 09:04:48am
Code: Select all
Jul 17 08:22:30 drac systemd-resolved[1110]: Server returned error NXDOMAIN, mitigating potential DNS violation DVE-2018-0001, retrying transaction with reduced feature level UDP.
Jul 17 08:22:30 drac systemd-resolved[1110]: Server returned error NXDOMAIN, mitigating potential DNS violation DVE-2018-0001, retrying transaction with reduced feature level UDP.
Jul 17 08:26:40 drac systemd-resolved[1110]: Server returned error NXDOMAIN, mitigating potential DNS violation DVE-2018-0001, retrying transaction with reduced feature level UDP.
Jul 17 09:04:17 drac systemd[1]: Started Run anacron jobs.
Jul 17 09:04:17 drac anacron[22748]: Anacron 2.3 started on 2019-07-17
Jul 17 09:04:17 drac anacron[22748]: Normal exit (0 jobs run)
Jul 17 09:04:48 drac xdg-desktop-por[21364]: xdg-desktop-portal-gtk: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Jul 17 09:04:48 drac gnome-terminal-[2294]: gnome-terminal-server: Fatal IO error 104 (Connection reset by peer) on X server :0.
Jul 17 09:04:48 drac polkitd(authority=local)[1253]: Unregistered Authentication Agent for unix-session:c2 (system bus name :1.58, object path /org/gnome/PolicyKit1/AuthenticationAgent, locale
Jul 17 09:04:48 drac at-spi-bus-launcher[1958]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
Jul 17 09:04:48 drac at-spi-bus-launcher[1958]: after 29211 requests (29211 known processed) with 0 events remaining.
Jul 17 09:04:48 drac systemd[1859]: xdg-desktop-portal-gtk.service: Main process exited, code=exited, status=1/FAILURE
Jul 17 09:04:48 drac su[4770]: pam_unix(su:session): session closed for user root
Jul 17 09:04:48 drac systemd[1859]: xdg-desktop-portal-gtk.service: Failed with result 'exit-code'.
Jul 17 09:04:48 drac lightdm[1798]: pam_unix(lightdm:session): session closed for user usernamehidden
Jul 17 09:04:48 drac NetworkManager[1196]: <warn> [1563368688.5453] error requesting auth for org.freedesktop.NetworkManager.wifi.share.protected: Authorization check failed: Failed to open fi
Jul 17 09:04:48 drac NetworkManager[1196]: <warn> [1563368688.5458] error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: Authorization check failed: Failed to open file “/
Jul 17 09:04:48 drac sudo[4765]: pam_unix(sudo:session): session closed for user root
Jul 17 09:04:48 drac systemd-logind[1119]: Removed session c11.
Jul 17 09:04:48 drac su[32140]: pam_unix(su:session): session closed for user root
Jul 17 09:04:48 drac sudo[32131]: pam_unix(sudo:session): session closed for user root
Jul 17 09:04:48 drac systemd-logind[1119]: Removed session c8.
Jul 17 09:04:48 drac systemd[1859]: gnome-terminal-server.service: Main process exited, code=exited, status=1/FAILURE
Jul 17 09:04:48 drac systemd[1859]: gnome-terminal-server.service: Failed with result 'exit-code'.
Jul 17 09:04:48 drac su[10619]: pam_unix(su:session): session closed for user root
Jul 17 09:04:48 drac su[12397]: pam_unix(su:session): session closed for user root
Jul 17 09:04:48 drac sudo[12392]: pam_unix(sudo:session): session closed for user root
Jul 17 09:04:48 drac sudo[10611]: pam_unix(sudo:session): session closed for user root
Jul 17 09:04:48 drac systemd-logind[1119]: Removed session c10.
Jul 17 09:04:48 drac systemd-logind[1119]: Removed session c9.
Jul 17 09:04:49 drac acpid[1198]: client 1429[0:0] has disconnected
Jul 17 09:04:49 drac acpid[1198]: client connected from 22955[0:0]
Jul 17 09:04:49 drac acpid[1198]: 1 client rule loaded
Grub:
Code: Select all
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=7
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
#GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX_DEFAULT="mitigations=on intel_iommu=on vfio-pci.ids=10de:1184,10de:0e0a,8086:8d2d,8086:8d26 modprobe.blacklist=snd_hda_intel,snd_hda_core,snd_hda_codec,snd_hda_codec_hdmi"
The xorg crash dump unpacked (ProcStatus), the other text files just repeat what is in the syslog, ProblemType=Crash, Signal=11
ProcCmdLine: /usr/lib/xorg/Xorg -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
Code: Select all
Name: Xorg
Umask: 0022
State: D (disk sleep)
Tgid: 1429
Ngid: 0
Pid: 1429
PPid: 1367
TracerPid: 0
Uid: 0 0 0 0
Gid: 0 0 0 0
FDSize: 128
Groups:
NStgid: 1429
NSpid: 1429
NSpgid: 1429
NSsid: 1429
VmPeak: 685120 kB
VmSize: 666060 kB
VmLck: 0 kB
VmPin: 0 kB
VmHWM: 177672 kB
VmRSS: 166816 kB
RssAnon: 69964 kB
RssFile: 34768 kB
RssShmem: 62084 kB
VmData: 73328 kB
VmStk: 200 kB
VmExe: 2320 kB
VmLib: 54192 kB
VmPTE: 736 kB
VmSwap: 0 kB
HugetlbPages: 0 kB
CoreDumping: 1
THP_enabled: 1
Threads: 2
SigQ: 0/385924
SigPnd: 0000000000000000
ShdPnd: 0000000000000000
SigBlk: 0000000000000000
SigIgn: 0000000000001000
SigCgt: 00000001c18062ef
CapInh: 0000000000000000
CapPrm: 0000003fffffffff
CapEff: 0000003fffffffff
CapBnd: 0000003fffffffff
CapAmb: 0000000000000000
NoNewPrivs: 0
Seccomp: 0
Speculation_Store_Bypass: thread vulnerable
Cpus_allowed: fff
Cpus_allowed_list: 0-11
Mems_allowed: 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000001
Mems_allowed_list: 0
voluntary_ctxt_switches: 7842991
nonvoluntary_ctxt_switches: 268811
The pci-e devices passed through to the vm are all taken by the vfio driver: 1d.0 [usb]. 04:000 [gtx 770]
Code: Select all
00:00.0 Host bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DMI2
00:01.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 (rev 01)
Kernel driver in use: pcieport
00:01.1 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 1 (rev 01)
Kernel driver in use: pcieport
00:02.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 2 (rev 01)
Kernel driver in use: pcieport
00:03.0 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 (rev 01)
Kernel driver in use: pcieport
00:03.2 PCI bridge: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D PCI Express Root Port 3 (rev 01)
Kernel driver in use: pcieport
00:04.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 0 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 0
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 1 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 1
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 2 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 2
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 3 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 3
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 4 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 4
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 5 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 5
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 6 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 6
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:04.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 7 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Crystal Beach DMA Channel 7
Kernel driver in use: ioatdma
Kernel modules: ioatdma
00:05.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Map/VTd_Misc/System Management
00:05.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO Hot Plug
00:05.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D IIO RAS/Control Status/Global Errors
00:05.4 PIC: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D I/O APIC
00:11.0 Unassigned class [ff00]: Intel Corporation C610/X99 series chipset SPSR (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset SPSR
00:11.4 SATA controller: Intel Corporation C610/X99 series chipset sSATA Controller [AHCI mode] (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset sSATA Controller [AHCI mode]
Kernel driver in use: ahci
Kernel modules: ahci
00:16.0 Communication controller: Intel Corporation C610/X99 series chipset MEI Controller #1 (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset MEI Controller
Kernel modules: mei_me
00:16.1 Communication controller: Intel Corporation C610/X99 series chipset MEI Controller #2 (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset MEI Controller
00:1a.0 USB controller: Intel Corporation C610/X99 series chipset USB Enhanced Host Controller #2 (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset USB Enhanced Host Controller
Kernel driver in use: ehci-pci
00:1c.0 PCI bridge: Intel Corporation C610/X99 series chipset PCI Express Root Port #1 (rev d5)
Kernel driver in use: pcieport
00:1c.4 PCI bridge: Intel Corporation C610/X99 series chipset PCI Express Root Port #5 (rev d5)
Kernel driver in use: pcieport
00:1c.5 PCI bridge: Intel Corporation C610/X99 series chipset PCI Express Root Port #6 (rev d5)
Kernel driver in use: pcieport
00:1c.6 PCI bridge: Intel Corporation C610/X99 series chipset PCI Express Root Port #7 (rev d5)
Kernel driver in use: pcieport
00:1d.0 USB controller: Intel Corporation C610/X99 series chipset USB Enhanced Host Controller #1 (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset USB Enhanced Host Controller
Kernel driver in use: vfio-pci
00:1f.0 ISA bridge: Intel Corporation C610/X99 series chipset LPC Controller (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset LPC Controller
Kernel driver in use: lpc_ich
Kernel modules: lpc_ich
00:1f.2 SATA controller: Intel Corporation C610/X99 series chipset 6-Port SATA Controller [AHCI mode] (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset 6-Port SATA Controller [AHCI mode]
Kernel driver in use: ahci
Kernel modules: ahci
00:1f.3 SMBus: Intel Corporation C610/X99 series chipset SMBus Controller (rev 05)
Subsystem: Super Micro Computer Inc C610/X99 series chipset SMBus Controller
Kernel modules: i2c_i801
02:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961
Subsystem: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961
Kernel driver in use: nvme
Kernel modules: nvme
03:00.0 VGA compatible controller: NVIDIA Corporation GP104 [GeForce GTX 1070] (rev a1)
Subsystem: Micro-Star International Co., Ltd. [MSI] GP104 [GeForce GTX 1070]
Kernel driver in use: nvidia
Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia
03:00.1 Audio device: NVIDIA Corporation GP104 High Definition Audio Controller (rev a1)
Subsystem: Micro-Star International Co., Ltd. [MSI] GP104 High Definition Audio Controller
Kernel modules: snd_hda_intel
04:00.0 VGA compatible controller: NVIDIA Corporation GK104 [GeForce GTX 770] (rev a1)
Subsystem: eVga.com. Corp. GK104 [GeForce GTX 770]
Kernel driver in use: vfio-pci
Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia
04:00.1 Audio device: NVIDIA Corporation GK104 HDMI Audio Controller (rev a1)
Subsystem: eVga.com. Corp. GK104 HDMI Audio Controller
Kernel driver in use: vfio-pci
Kernel modules: snd_hda_intel
05:00.0 Ethernet controller: Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (rev 06)
Subsystem: Hewlett-Packard Company NC360T PCI Express Dual Port Gigabit Server Adapter
Kernel driver in use: e1000e
Kernel modules: e1000e
05:00.1 Ethernet controller: Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (rev 06)
Subsystem: Hewlett-Packard Company NC360T PCI Express Dual Port Gigabit Server Adapter
Kernel driver in use: e1000e
Kernel modules: e1000e
06:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04)
07:04.0 Multimedia audio controller: C-Media Electronics Inc CMI8788 [Oxygen HD Audio]
Subsystem: ASUSTeK Computer Inc. CMI8786 (Xonar DGX)
Kernel driver in use: snd_oxygen
Kernel modules: snd_oxygen
08:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
Subsystem: Super Micro Computer Inc I210 Gigabit Network Connection
Kernel driver in use: igb
Kernel modules: igb
09:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
Subsystem: Super Micro Computer Inc I210 Gigabit Network Connection
Kernel driver in use: vfio-pci
Kernel modules: igb
0a:00.0 PCI bridge: ASPEED Technology, Inc. AST1150 PCI-to-PCI Bridge (rev 03)
0b:00.0 VGA compatible controller: ASPEED Technology, Inc. ASPEED Graphics Family (rev 30)
Subsystem: Super Micro Computer Inc ASPEED Graphics Family
Kernel driver in use: ast
Kernel modules: ast
ff:0b.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1
ff:0b.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1
Kernel driver in use: bdx_uncore
ff:0b.2 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link 0/1
Kernel driver in use: bdx_uncore
ff:0b.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R3 QPI Link Debug (rev 01)
ff:0c.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0c.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0c.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0c.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0c.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0c.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0f.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0f.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0f.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0f.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:0f.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Caching Agent
ff:10.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent
ff:10.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D R2PCIe Agent
Kernel driver in use: bdx_uncore
ff:10.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox
ff:10.6 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox
ff:10.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Ubox
ff:12.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0
ff:12.1 Performance counters: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0 (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Home Agent 0
Kernel driver in use: bdx_uncore
ff:13.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS
ff:13.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Target Address/Thermal/RAS
ff:13.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder
ff:13.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder
ff:13.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder
ff:13.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder
ff:13.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Broadcast (rev 01)
ff:13.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast (rev 01)
ff:14.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Thermal Control
Kernel driver in use: bdx_uncore
ff:14.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Thermal Control
Kernel driver in use: bdx_uncore
ff:14.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 0 Error
ff:14.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 1 Error
ff:14.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 01)
ff:14.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 01)
ff:14.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 01)
ff:14.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 0/1 Interface (rev 01)
ff:15.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Thermal Control (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Thermal Control
Kernel driver in use: bdx_uncore
ff:15.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Thermal Control (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Thermal Control
Kernel driver in use: bdx_uncore
ff:15.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Error (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 2 Error
ff:15.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Error (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel 3 Error
ff:16.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Target Address/Thermal/RAS (rev 01)
ff:16.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Broadcast (rev 01)
ff:16.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Global Broadcast (rev 01)
ff:17.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 1 - Channel 0 Thermal Control (rev 01)
Kernel driver in use: bdx_uncore
ff:17.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface (rev 01)
ff:17.5 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface (rev 01)
ff:17.6 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface (rev 01)
ff:17.7 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D DDRIO Channel 2/3 Interface (rev 01)
ff:1e.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit
ff:1e.1 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit
ff:1e.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit
ff:1e.3 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit
Kernel driver in use: bdx_uncore
ff:1e.4 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Subsystem: Super Micro Computer Inc Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit
ff:1f.0 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
ff:1f.2 System peripheral: Intel Corporation Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Power Control Unit (rev 01)
Memory info
Code: Select all
MemTotal: 98951216 kB
MemFree: 8408096 kB
MemAvailable: 77320652 kB
Buffers: 2572 kB
Cached: 69371436 kB
SwapCached: 0 kB
Active: 24854528 kB
Inactive: 63325704 kB
Active(anon): 17294772 kB
Inactive(anon): 1756560 kB
Active(file): 7559756 kB
Inactive(file): 61569144 kB
Unevictable: 32 kB
Mlocked: 32 kB
SwapTotal: 2097148 kB
SwapFree: 2097148 kB
Dirty: 1728 kB
Writeback: 0 kB
AnonPages: 18806296 kB
Mapped: 624340 kB
Shmem: 245100 kB
KReclaimable: 776140 kB
Slab: 1290784 kB
SReclaimable: 776140 kB
SUnreclaim: 514644 kB
KernelStack: 16848 kB
PageTables: 83292 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 51572756 kB
Committed_AS: 23717732 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 0 kB
VmallocChunk: 0 kB
Percpu: 8000 kB
HardwareCorrupted: 0 kB
AnonHugePages: 16779264 kB
ShmemHugePages: 0 kB
ShmemPmdMapped: 0 kB
CmaTotal: 16384 kB
CmaFree: 0 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
HugePages_Surp: 0
Hugepagesize: 2048 kB
Hugetlb: 0 kB
DirectMap4k: 5493560 kB
DirectMap2M: 61503488 kB
DirectMap1G: 35651584 kB
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Модератор: Bizdelnick
-
JackDaniels
- Сообщения: 1
- ОС: openSuse 11.1
Подскажите пожайлуста «XIO: fatal IO error 11…»
Код: Выделить всё
openSuse:~ # glxgear
25917 frames in 5.0 seconds = 5183.355 FPS
29501 frames in 5.0 seconds = 5900.136 FPS
23692 frames in 5.0 seconds = 4738.336 FPS
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 52 requests (51 known processed) with 0 events remaining.
Код: Выделить всё
openSuse:~ # fgl_glxgears
Using GLX_SGIX_pbuffer
8614 frames in 5.0 seconds = 1722.800 FPS
10107 frames in 5.0 seconds = 2021.400 FPS
9788 frames in 5.0 seconds = 1957.600 FPS
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
after 88750 requests (88748 known processed) with 0 events remaining.
Код: Выделить всё
openSuse:~ # uname -a
Linux openSuse 2.6.27.7-9-pae #1 SMP 2008-12-04 18:10:04 +0100 i686 i686 i386 GNU/Linux
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server «:0.0»
after 88750 requests (88748 known processed) with 0 events remaining.
Как от этого избавиться? подскажите?
openSuse 11.1 / ATI Mobility Radeon X1800 256Mb
openSuse:~ # glxinfo — http://codepaste.ru/1699/
openSuse:~ # glxgears -info — http://codepaste.ru/1704/
xorg.conf — http://codepaste.ru/1702/
/var/log/SaX.log — http://codepaste.ru/1700/
/var/log/Xorg.0.loghttp://codepaste.ru/1703/
А так же буду благодарен за ссылку на хорошую статью или помощь прям здесь как настроить 2-й монитор, мой на ноутбуке 1440х900@60, а второй 1600х1200@60.
Заранее спасибо!
-
VarLog
- Сообщения: 311
- ОС: openSUSE 12.2
Re: Подскажите пожайлуста «XIO: fatal IO error 11…»
Сообщение
VarLog » 19.03.2009 11:44
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server «:0.0»
after 88750 requests (88748 known processed) with 0 events remaining.
Насколько я знаю, от этого не нужно избавляться. Этим Х сервер извещает о потере связи с окном (или процессом), то есть его закрытием. Подобные сообщения появляются довольно часто, и мне кажется ошибкой не являются.
На самом деле всё очень просто…
- Index
- » Programming & Scripting
- » x11 programming: fatal IO error 11 (Resource temporarily unavailable)
Pages: 1
#1 2019-06-29 13:37:19
- Portal
- Member
- Registered: 2019-03-11
- Posts: 48
x11 programming: fatal IO error 11 (Resource temporarily unavailable)
I am a complete noob at x11. I have a simple C program:
#include <stdio.h>
#include <stdlib.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>
int main()
{
Display *dpy;
int screen;
Window win;
XEvent event;
dpy=XOpenDisplay(NULL);
if(dpy==NULL)
{
fprintf(stderr, "cant");
exit(1);
}
screen=DefaultScreen(dpy);
printf("%d %d", XDefaultDepth(dpy, screen), XDisplayPlanes(dpy, screen));
win=XCreateSimpleWindow(dpy,RootWindow(dpy,screen) ,50,50,800,500,10, BlackPixel(dpy,screen), WhitePixel(dpy,screen));
XSelectInput(dpy,win,ExposureMask | KeyPressMask);
XMapWindow(dpy,win);
while(1)
{
XNextEvent(dpy,&event);
}
return 0;
}
On line 21, I tried to display some infos about the screen. However, the program complained:
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
after 9 requests (9 known processed) with 0 events remaining.
#2 2019-06-29 13:49:11
- Trilby
- Inspector Parrot
- Registered: 2011-11-29
- Posts: 27,833
- Website
Re: x11 programming: fatal IO error 11 (Resource temporarily unavailable)
It compiled and ran fine for me. Are you sure that error is actually from the line you think it is? Note that there is no newline in your format string, so the two numbers printed out could easily be covered by a later error (i.e. if you closed the window perhaps).
Last edited by Trilby (2019-06-29 13:50:44)
«UNIX is simple and coherent…» — Dennis Ritchie, «GNU’s Not UNIX» — Richard Stallman
#3 2019-06-30 02:16:08
- Portal
- Member
- Registered: 2019-03-11
- Posts: 48
Re: x11 programming: fatal IO error 11 (Resource temporarily unavailable)
It did work after I added the newlines… shouldn’t it still display even without the newlines? Can you explain more what you meant by
Trilby wrote:
the two numbers printed out could easily be covered by a later error (i.e. if you closed the window perhaps).
#4 2019-06-30 03:03:30
- Trilby
- Inspector Parrot
- Registered: 2011-11-29
- Posts: 27,833
- Website
Re: x11 programming: fatal IO error 11 (Resource temporarily unavailable)
It’s possible that the error output included ansi codes to move the cursor to the start of the line. However, even more likely is that the error message was from a separate thread that caused the program to exit, and due to IO buffering, the numbers were never flushed prior to the exit.
You could see this more directly by removing the newline(s) again, but adding a fflush(stdout) right after the print command.
But this has nothing to do with X, specifically, this is just general IO buffering.
«UNIX is simple and coherent…» — Dennis Ritchie, «GNU’s Not UNIX» — Richard Stallman
#5 2019-06-30 05:20:50
- Portal
- Member
- Registered: 2019-03-11
- Posts: 48
Re: x11 programming: fatal IO error 11 (Resource temporarily unavailable)
that makes sense thanks
Hi
how fix Xorg error on fedora 27 for amdgpu driver ?
[sajjad@localhost ~]$ lspci | grep -e VGA -e 3D
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Juniper XT [Radeon HD 6770]
[sajjad@localhost ~]$ Xorg :0 -configure
/usr/libexec/Xorg.wrap: Only console users are allowed to run the X server
[sajjad@localhost ~]$ lsmod | grep fglrx
[sajjad@localhost ~]$ glxinfo | grep "direct rendering"
direct rendering: Yes
[sajjad@localhost ~]$ dmesg | grep agp
[ 0.635466] Linux agpgart interface v0.103
[sajjad@localhost ~]$ uname -r
4.14.14-300.fc27.x86_64
[sajjad@localhost ~]$ grep EE /var/log/Xorg.0.log
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[sajjad@localhost ~]$ grep WW /var/log/Xorg.0.log
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 43.316] (WW) Falling back to old probe method for modesetting
[ 43.317] (WW) Falling back to old probe method for fbdev
[ 43.369] (WW) Falling back to old probe method for vesa
[sajjad@localhost ~]$ lspci | grep -i vga
01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Juniper XT [Radeon HD 6770]
[sajjad@localhost ~]$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
HDMI-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 475mm x 267mm
1920x1080 60.00*+ 50.00 59.94
1920x1080i 60.00 50.00 59.94
1680x1050 59.88
1280x1024 75.02 60.02
1440x900 74.98 59.90
1280x800 59.91
1152x864 75.00
1280x720 60.00 50.00 59.94
1440x576 50.00
1024x768 75.03 70.07 60.00
1440x480 60.00 59.94
832x624 74.55
800x600 72.19 75.00 60.32 56.25
720x576 50.00
720x480 60.00 59.94
640x480 75.00 72.81 66.67 60.00 59.94
720x400 70.08
DVI-0 disconnected (normal left inverted right x axis y axis)
VGA-0 disconnected (normal left inverted right x axis y axis)
[sajjad@localhost ~]$ glxgears
Running synchronized to the vertical refresh. The framerate should be
approximately the same as the monitor refresh rate.
XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
after 275 requests (42 known processed) with 0 events remaining.
[sajjad@localhost ~]$
https://forums.fedoraforum.org/showthread.php?317131-XIO-fatal-IO-error-11-(Resource-temporarily-unavailable)&p=1802681#post1802681
[sajjad@localhost ~]$ ldd /usr/bin/glxgears
linux-vdso.so.1 (0x00007fff27858000)
libGL.so.1 => /lib64/libGL.so.1 (0x00007f800683d000)
libm.so.6 => /lib64/libm.so.6 (0x00007f80064e8000)
libX11.so.6 => /lib64/libX11.so.6 (0x00007f80061aa000)
libc.so.6 => /lib64/libc.so.6 (0x00007f8005dc7000)
libGLX.so.0 => /lib64/libGLX.so.0 (0x00007f8005b95000)
libXext.so.6 => /lib64/libXext.so.6 (0x00007f8005983000)
libGLdispatch.so.0 => /lib64/libGLdispatch.so.0 (0x00007f80056cd000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f80054c9000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f80052aa000)
/lib64/ld-linux-x86-64.so.2 (0x00007f8006ccf000)
libxcb.so.1 => /lib64/libxcb.so.1 (0x00007f8005082000)
libXau.so.6 => /lib64/libXau.so.6 (0x00007f8004e7e000)
[sajjad@localhost ~]$
Same problem on a Gigabyte GA-MA790X-DS4 motherboard with a AMD Phenom(tm) 9550 Quad-Core Processor and a RV620 LE [Radeon HD 3450] graphics card : Apr 21 09:42:25 localhost at-spi-bus-launcher[22775]: XIO: fatal IO error 11 (R esource temporarily unavailable) on X server ":0" Apr 21 09:42:25 localhost at-spi-bus-launcher[22775]: after 97969 requests (97969 known processed) with 0 events remaining. It happens when the system wakes up after a suspend to RAM ; X is killed, all the sessions closed. Randomly, but since the first day under fc27 -- no problems under fc25 (my previous version). The system is up to date : kernel-4.15.17-300.fc27.x86_64 mesa-dri-drivers-17.3.6-1.fc27.x86 xorg-x11-drv-ati-7.9.0-3.fc27.x86_64
This message is a reminder that Fedora 27 is nearing its end of life. On 2018-Nov-30 Fedora will stop maintaining and issuing updates for Fedora 27. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as EOL if it remains open with a Fedora 'version' of '27'. Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version. Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora 27 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged change the 'version' to a later Fedora version prior this bug is closed as described in the policy above. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete.
Fedora 27 changed to end-of-life (EOL) status on 2018-11-30. Fedora 27 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. If you experience problems, please add a comment to this bug. Thank you for reporting this bug and we are sorry it could not be fixed. |
