public inbox for fortran@gcc.gnu.org
 help / color / mirror / Atom feed
* Problem setting  buffer size for gfortran ( v 11.2)
@ 2022-02-23 16:10 Bertini, Denis Dr.
  2022-02-23 18:26 ` Harald Anlauf
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-23 16:10 UTC (permalink / raw)
  To: fortran

Hi
Investigating some sporadical performance drop when using Fortran IO on our Lustre
shared file system, we realized that the buffer size used as default by the gnu fortran
compiler is 8 kiB only.
We wanted to change this default and according to the documentation, one has just to set
the environment variables:

 GFORTRAN_UNFORMATTED_BUFFER_SIZE
 GFORTRAN_FORMATTED_BUFFER_SIZE=
 GFORTRAN_UNBUFFERED_ALL=n

to increase the buffer size  during runtime.

Unfortunately isetting these variables  does not  change the default buffer size.
I tried with gfortran 8, 10, and the new 11.2.
Looking a the code, i found in
 io/unix.c
 that the default is set to the following value,

static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;

Of course, changing the default value and recompiling works and change accordingly the buffer size
It should nevertheless be possible to change these values without recompiling.
Is there something one should be aware of when setting these variables?

Best regards,
Denis

---------
Denis Bertini
Abteilung: CIT
Ort: SB3 2.265a

Tel: +49 6159 71 2240
Fax: +49 6159 71 2986
E-Mail: d.bertini@gsi.de

GSI Helmholtzzentrum für Schwerionenforschung GmbH
Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de

Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
Managing Directors / Geschäftsführung:
Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
Ministerialdirigent Dr. Volkmar Dietz

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 16:10 Problem setting buffer size for gfortran ( v 11.2) Bertini, Denis Dr.
@ 2022-02-23 18:26 ` Harald Anlauf
  2022-02-23 18:26   ` Harald Anlauf
  2022-02-23 20:28   ` Bertini, Denis Dr.
  0 siblings, 2 replies; 20+ messages in thread
From: Harald Anlauf @ 2022-02-23 18:26 UTC (permalink / raw)
  To: Bertini, Denis Dr., fortran

Hi Denis,

Am 23.02.22 um 17:10 schrieb Bertini, Denis Dr. via Fortran:
> Hi
> Investigating some sporadical performance drop when using Fortran IO on our Lustre
> shared file system, we realized that the buffer size used as default by the gnu fortran
> compiler is 8 kiB only.
> We wanted to change this default and according to the documentation, one has just to set
> the environment variables:
>
>   GFORTRAN_UNFORMATTED_BUFFER_SIZE
>   GFORTRAN_FORMATTED_BUFFER_SIZE=
>   GFORTRAN_UNBUFFERED_ALL=n
>
> to increase the buffer size  during runtime.

this works for me on gcc-12 development for the following
test program on Linux/x86:

open(10,file="bigfile")
write(10,*) "data"
close(10)
end

Compile, link, and run under strace with

GFORTRAN_FORMATTED_BUFFER_SIZE=4194304 strace ./a.out

[...]
openat(AT_FDCWD, "bigfile", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
mmap(NULL, 4198400, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0x146b69b1c000
write(3, " data\n", 6)                  = 6
ftruncate(3, 6)                         = 0
munmap(0x146b69b1c000, 4198400)         = 0
close(3)                                = 0

> Unfortunately isetting these variables  does not  change the default buffer size.
> I tried with gfortran 8, 10, and the new 11.2.
> Looking a the code, i found in
>   io/unix.c
>   that the default is set to the following value,
>
> static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
> static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;
>
> Of course, changing the default value and recompiling works and change accordingly the buffer size
> It should nevertheless be possible to change these values without recompiling.
> Is there something one should be aware of when setting these variables?

You said you're using Lustre.  I guess you use the default
blocksize (4MB).  Does your Lustre client support mmap?
What does strace report?

I remember I once saw a system where we had to disable the use
of mmap in a library.

Cheers,
Harald

> Best regards,
> Denis
>
> ---------
> Denis Bertini
> Abteilung: CIT
> Ort: SB3 2.265a
>
> Tel: +49 6159 71 2240
> Fax: +49 6159 71 2986
> E-Mail: d.bertini@gsi.de
>
> GSI Helmholtzzentrum für Schwerionenforschung GmbH
> Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de
>
> Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
> Managing Directors / Geschäftsführung:
> Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
> Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
> Ministerialdirigent Dr. Volkmar Dietz
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 18:26 ` Harald Anlauf
@ 2022-02-23 18:26   ` Harald Anlauf
  2022-02-23 20:28   ` Bertini, Denis Dr.
  1 sibling, 0 replies; 20+ messages in thread
From: Harald Anlauf @ 2022-02-23 18:26 UTC (permalink / raw)
  To: fortran

Hi Denis,

Am 23.02.22 um 17:10 schrieb Bertini, Denis Dr. via Fortran:
> Hi
> Investigating some sporadical performance drop when using Fortran IO on our Lustre
> shared file system, we realized that the buffer size used as default by the gnu fortran
> compiler is 8 kiB only.
> We wanted to change this default and according to the documentation, one has just to set
> the environment variables:
> 
>   GFORTRAN_UNFORMATTED_BUFFER_SIZE
>   GFORTRAN_FORMATTED_BUFFER_SIZE=
>   GFORTRAN_UNBUFFERED_ALL=n
> 
> to increase the buffer size  during runtime.

this works for me on gcc-12 development for the following
test program on Linux/x86:

open(10,file="bigfile")
write(10,*) "data"
close(10)
end

Compile, link, and run under strace with

GFORTRAN_FORMATTED_BUFFER_SIZE=4194304 strace ./a.out

[...]
openat(AT_FDCWD, "bigfile", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
mmap(NULL, 4198400, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 
0) = 0x146b69b1c000
write(3, " data\n", 6)                  = 6
ftruncate(3, 6)                         = 0
munmap(0x146b69b1c000, 4198400)         = 0
close(3)                                = 0

> Unfortunately isetting these variables  does not  change the default buffer size.
> I tried with gfortran 8, 10, and the new 11.2.
> Looking a the code, i found in
>   io/unix.c
>   that the default is set to the following value,
> 
> static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
> static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;
> 
> Of course, changing the default value and recompiling works and change accordingly the buffer size
> It should nevertheless be possible to change these values without recompiling.
> Is there something one should be aware of when setting these variables?

You said you're using Lustre.  I guess you use the default
blocksize (4MB).  Does your Lustre client support mmap?
What does strace report?

I remember I once saw a system where we had to disable the use
of mmap in a library.

Cheers,
Harald

> Best regards,
> Denis
> 
> ---------
> Denis Bertini
> Abteilung: CIT
> Ort: SB3 2.265a
> 
> Tel: +49 6159 71 2240
> Fax: +49 6159 71 2986
> E-Mail: d.bertini@gsi.de
> 
> GSI Helmholtzzentrum für Schwerionenforschung GmbH
> Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de
> 
> Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
> Managing Directors / Geschäftsführung:
> Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
> Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
> Ministerialdirigent Dr. Volkmar Dietz
> 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 18:26 ` Harald Anlauf
  2022-02-23 18:26   ` Harald Anlauf
@ 2022-02-23 20:28   ` Bertini, Denis Dr.
  2022-02-23 20:57     ` Harald Anlauf
  2022-02-23 20:59     ` Bertini, Denis Dr.
  1 sibling, 2 replies; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-23 20:28 UTC (permalink / raw)
  To: Harald Anlauf, fortran

Hi Harald,

In attachment you will find a typical strace output when running with

gfortran8 on lustre filsystem.

As i said for gfortran version 8.x, 10.x, 11.2 setting the runtime

env. variable to change buffer size did not work for me as you could

see in the strace output.

You could also see that "mmap" is used by the lustre client.

The optimal blocksize given back by the STAT() routine indeed

favor a 4 MiB buffer size.


Best

Denis


________________________________
From: Harald Anlauf <anlauf@gmx.de>
Sent: Wednesday, February 23, 2022 7:26 PM
To: Bertini, Denis Dr.; fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

Am 23.02.22 um 17:10 schrieb Bertini, Denis Dr. via Fortran:
> Hi
> Investigating some sporadical performance drop when using Fortran IO on our Lustre
> shared file system, we realized that the buffer size used as default by the gnu fortran
> compiler is 8 kiB only.
> We wanted to change this default and according to the documentation, one has just to set
> the environment variables:
>
>   GFORTRAN_UNFORMATTED_BUFFER_SIZE
>   GFORTRAN_FORMATTED_BUFFER_SIZE=
>   GFORTRAN_UNBUFFERED_ALL=n
>
> to increase the buffer size  during runtime.

this works for me on gcc-12 development for the following
test program on Linux/x86:

open(10,file="bigfile")
write(10,*) "data"
close(10)
end

Compile, link, and run under strace with

GFORTRAN_FORMATTED_BUFFER_SIZE=4194304 strace ./a.out

[...]
openat(AT_FDCWD, "bigfile", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
mmap(NULL, 4198400, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
0) = 0x146b69b1c000
write(3, " data\n", 6)                  = 6
ftruncate(3, 6)                         = 0
munmap(0x146b69b1c000, 4198400)         = 0
close(3)                                = 0

> Unfortunately isetting these variables  does not  change the default buffer size.
> I tried with gfortran 8, 10, and the new 11.2.
> Looking a the code, i found in
>   io/unix.c
>   that the default is set to the following value,
>
> static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
> static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;
>
> Of course, changing the default value and recompiling works and change accordingly the buffer size
> It should nevertheless be possible to change these values without recompiling.
> Is there something one should be aware of when setting these variables?

You said you're using Lustre.  I guess you use the default
blocksize (4MB).  Does your Lustre client support mmap?
What does strace report?

I remember I once saw a system where we had to disable the use
of mmap in a library.

Cheers,
Harald

> Best regards,
> Denis
>
> ---------
> Denis Bertini
> Abteilung: CIT
> Ort: SB3 2.265a
>
> Tel: +49 6159 71 2240
> Fax: +49 6159 71 2986
> E-Mail: d.bertini@gsi.de
>
> GSI Helmholtzzentrum für Schwerionenforschung GmbH
> Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de
>
> Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
> Managing Directors / Geschäftsführung:
> Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
> Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
> Ministerialdirigent Dr. Volkmar Dietz
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 20:28   ` Bertini, Denis Dr.
@ 2022-02-23 20:57     ` Harald Anlauf
  2022-02-23 20:57       ` Harald Anlauf
  2022-02-23 20:59     ` Bertini, Denis Dr.
  1 sibling, 1 reply; 20+ messages in thread
From: Harald Anlauf @ 2022-02-23 20:57 UTC (permalink / raw)
  To: Bertini, Denis Dr., fortran

Hi Denis,

Am 23.02.22 um 21:28 schrieb Bertini, Denis Dr. via Fortran:
> Hi Harald,
>
> In attachment you will find a typical strace output when running with
>
> gfortran8 on lustre filsystem.

unfortunately I do not see any attachment to your mail.

Note: GFORTRAN_FORMATTED_BUFFER_SIZE & friends was added in 10.1,
and possibly backported to some 9.y, but *not* to 8.x.

> As i said for gfortran version 8.x, 10.x, 11.2 setting the runtime
>
> env. variable to change buffer size did not work for me as you could
>
> see in the strace output.
>
> You could also see that "mmap" is used by the lustre client.
>
> The optimal blocksize given back by the STAT() routine indeed
>
> favor a 4 MiB buffer size.

It might make sense to show your issue to the vendor of your system.

Parallel file systems - not only Lustre - require special handling
not only to get optimum performance, but also correct behavior.
(E.g. the HDF5 library is known to hit bugs in our Lustre.)

Cheers,
Harald

>
> Best
>
> Denis
>
>
> ________________________________
> From: Harald Anlauf <anlauf@gmx.de>
> Sent: Wednesday, February 23, 2022 7:26 PM
> To: Bertini, Denis Dr.; fortran@gcc.gnu.org
> Subject: Re: Problem setting buffer size for gfortran ( v 11.2)
>
> Hi Denis,
>
> Am 23.02.22 um 17:10 schrieb Bertini, Denis Dr. via Fortran:
>> Hi
>> Investigating some sporadical performance drop when using Fortran IO on our Lustre
>> shared file system, we realized that the buffer size used as default by the gnu fortran
>> compiler is 8 kiB only.
>> We wanted to change this default and according to the documentation, one has just to set
>> the environment variables:
>>
>>    GFORTRAN_UNFORMATTED_BUFFER_SIZE
>>    GFORTRAN_FORMATTED_BUFFER_SIZE=
>>    GFORTRAN_UNBUFFERED_ALL=n
>>
>> to increase the buffer size  during runtime.
>
> this works for me on gcc-12 development for the following
> test program on Linux/x86:
>
> open(10,file="bigfile")
> write(10,*) "data"
> close(10)
> end
>
> Compile, link, and run under strace with
>
> GFORTRAN_FORMATTED_BUFFER_SIZE=4194304 strace ./a.out
>
> [...]
> openat(AT_FDCWD, "bigfile", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3
> fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
> mmap(NULL, 4198400, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
> 0) = 0x146b69b1c000
> write(3, " data\n", 6)                  = 6
> ftruncate(3, 6)                         = 0
> munmap(0x146b69b1c000, 4198400)         = 0
> close(3)                                = 0
>
>> Unfortunately isetting these variables  does not  change the default buffer size.
>> I tried with gfortran 8, 10, and the new 11.2.
>> Looking a the code, i found in
>>    io/unix.c
>>    that the default is set to the following value,
>>
>> static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
>> static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;
>>
>> Of course, changing the default value and recompiling works and change accordingly the buffer size
>> It should nevertheless be possible to change these values without recompiling.
>> Is there something one should be aware of when setting these variables?
>
> You said you're using Lustre.  I guess you use the default
> blocksize (4MB).  Does your Lustre client support mmap?
> What does strace report?
>
> I remember I once saw a system where we had to disable the use
> of mmap in a library.
>
> Cheers,
> Harald
>
>> Best regards,
>> Denis
>>
>> ---------
>> Denis Bertini
>> Abteilung: CIT
>> Ort: SB3 2.265a
>>
>> Tel: +49 6159 71 2240
>> Fax: +49 6159 71 2986
>> E-Mail: d.bertini@gsi.de
>>
>> GSI Helmholtzzentrum für Schwerionenforschung GmbH
>> Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de
>>
>> Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
>> Managing Directors / Geschäftsführung:
>> Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
>> Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
>> Ministerialdirigent Dr. Volkmar Dietz
>>
>
>


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 20:57     ` Harald Anlauf
@ 2022-02-23 20:57       ` Harald Anlauf
  0 siblings, 0 replies; 20+ messages in thread
From: Harald Anlauf @ 2022-02-23 20:57 UTC (permalink / raw)
  To: fortran

Hi Denis,

Am 23.02.22 um 21:28 schrieb Bertini, Denis Dr. via Fortran:
> Hi Harald,
> 
> In attachment you will find a typical strace output when running with
> 
> gfortran8 on lustre filsystem.

unfortunately I do not see any attachment to your mail.

Note: GFORTRAN_FORMATTED_BUFFER_SIZE & friends was added in 10.1,
and possibly backported to some 9.y, but *not* to 8.x.

> As i said for gfortran version 8.x, 10.x, 11.2 setting the runtime
> 
> env. variable to change buffer size did not work for me as you could
> 
> see in the strace output.
> 
> You could also see that "mmap" is used by the lustre client.
> 
> The optimal blocksize given back by the STAT() routine indeed
> 
> favor a 4 MiB buffer size.

It might make sense to show your issue to the vendor of your system.

Parallel file systems - not only Lustre - require special handling
not only to get optimum performance, but also correct behavior.
(E.g. the HDF5 library is known to hit bugs in our Lustre.)

Cheers,
Harald

> 
> Best
> 
> Denis
> 
> 
> ________________________________
> From: Harald Anlauf <anlauf@gmx.de>
> Sent: Wednesday, February 23, 2022 7:26 PM
> To: Bertini, Denis Dr.; fortran@gcc.gnu.org
> Subject: Re: Problem setting buffer size for gfortran ( v 11.2)
> 
> Hi Denis,
> 
> Am 23.02.22 um 17:10 schrieb Bertini, Denis Dr. via Fortran:
>> Hi
>> Investigating some sporadical performance drop when using Fortran IO on our Lustre
>> shared file system, we realized that the buffer size used as default by the gnu fortran
>> compiler is 8 kiB only.
>> We wanted to change this default and according to the documentation, one has just to set
>> the environment variables:
>>
>>    GFORTRAN_UNFORMATTED_BUFFER_SIZE
>>    GFORTRAN_FORMATTED_BUFFER_SIZE=
>>    GFORTRAN_UNBUFFERED_ALL=n
>>
>> to increase the buffer size  during runtime.
> 
> this works for me on gcc-12 development for the following
> test program on Linux/x86:
> 
> open(10,file="bigfile")
> write(10,*) "data"
> close(10)
> end
> 
> Compile, link, and run under strace with
> 
> GFORTRAN_FORMATTED_BUFFER_SIZE=4194304 strace ./a.out
> 
> [...]
> openat(AT_FDCWD, "bigfile", O_RDWR|O_CREAT|O_CLOEXEC, 0666) = 3
> fstat(3, {st_mode=S_IFREG|0644, st_size=6, ...}) = 0
> mmap(NULL, 4198400, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1,
> 0) = 0x146b69b1c000
> write(3, " data\n", 6)                  = 6
> ftruncate(3, 6)                         = 0
> munmap(0x146b69b1c000, 4198400)         = 0
> close(3)                                = 0
> 
>> Unfortunately isetting these variables  does not  change the default buffer size.
>> I tried with gfortran 8, 10, and the new 11.2.
>> Looking a the code, i found in
>>    io/unix.c
>>    that the default is set to the following value,
>>
>> static const int FORMATTED_BUFFER_SIZE_DEFAULT = 8192;
>> static const int UNFORMATTED_BUFFER_SIZE_DEFAULT = 128*1024;
>>
>> Of course, changing the default value and recompiling works and change accordingly the buffer size
>> It should nevertheless be possible to change these values without recompiling.
>> Is there something one should be aware of when setting these variables?
> 
> You said you're using Lustre.  I guess you use the default
> blocksize (4MB).  Does your Lustre client support mmap?
> What does strace report?
> 
> I remember I once saw a system where we had to disable the use
> of mmap in a library.
> 
> Cheers,
> Harald
> 
>> Best regards,
>> Denis
>>
>> ---------
>> Denis Bertini
>> Abteilung: CIT
>> Ort: SB3 2.265a
>>
>> Tel: +49 6159 71 2240
>> Fax: +49 6159 71 2986
>> E-Mail: d.bertini@gsi.de
>>
>> GSI Helmholtzzentrum für Schwerionenforschung GmbH
>> Planckstraße 1, 64291 Darmstadt, Germany, www.gsi.de
>>
>> Commercial Register / Handelsregister: Amtsgericht Darmstadt, HRB 1528
>> Managing Directors / Geschäftsführung:
>> Professor Dr. Paolo Giubellino, Dr. Ulrich Breuer, Jörg Blaurock
>> Chairman of the GSI Supervisory Board / Vorsitzender des GSI-Aufsichtsrats:
>> Ministerialdirigent Dr. Volkmar Dietz
>>
> 
> 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 20:28   ` Bertini, Denis Dr.
  2022-02-23 20:57     ` Harald Anlauf
@ 2022-02-23 20:59     ` Bertini, Denis Dr.
       [not found]       ` <trinity-9bf94afe-e773-4366-b0b2-ae398de80664-1645651097363@3c-app-gmx-bs49>
  1 sibling, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-23 20:59 UTC (permalink / raw)
  To: Harald Anlauf, fortran

[-- Attachment #1: Type: text/plain, Size: 105 bytes --]

Hi Harald,


I do not know why the attachment was not sent with my email
I try again
Best
Denis


[-- Attachment #2: strace-lxbk0775.73766 --]
[-- Type: application/octet-stream, Size: 2390077 bytes --]

execve("../bin/fio", ["../bin/fio", "--size", "50", "--iter", "2"], 0x7fffb5861588 /* 160 vars */) = 0
brk(NULL)                               = 0xef5000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44a000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44b000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44c000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44d000
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/tls/x86_64", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/tls", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/x86_64", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=6, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/tls/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/tls/x86_64", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/tls/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/tls", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/x86_64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/x86_64", 0x7ffc05e479d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\272\10\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=12217728, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44e000
mmap(NULL, 3682528, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b383f64c000
mprotect(0x2b383f7c0000, 2097152, PROT_NONE) = 0
mmap(0x2b383f9c0000, 49152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x174000) = 0x2b383f9c0000
mmap(0x2b383f9cc000, 12512, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b383f9cc000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/tls/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/tls/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/tls/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/tls", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=102, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/tls/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/tls/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/tls/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/tls", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=832, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/tls/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/tls/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/tls/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/tls", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=276, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/tls/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/tls/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/tls/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/tls", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/x86_64/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/x86_64", 0x7ffc05e479a0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libmpi_usempif08.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260u\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=323424, ...}) = 0
mmap(NULL, 2329928, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b383f9d0000
mprotect(0x2b383fa08000, 2093056, PROT_NONE) = 0
mmap(0x2b383fc07000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x37000) = 0x2b383fc07000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libmpi_usempi_ignore_tkr.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200Y\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=75176, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f44f000
mmap(NULL, 2154728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b383fc09000
mprotect(0x2b383fc17000, 2093056, PROT_NONE) = 0
mmap(0x2b383fe16000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xd000) = 0x2b383fe16000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libmpi_mpifh.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0!\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=603424, ...}) = 0
mmap(NULL, 2481432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b383fe18000
mprotect(0x2b383fe75000, 2093056, PROT_NONE) = 0
mmap(0x2b3840074000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5c000) = 0x2b3840074000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libmpi.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libmpi.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libmpi.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libmpi.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libmpi.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libmpi.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\322\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=2847160, ...}) = 0
mmap(NULL, 4635384, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3840076000
mprotect(0x2b38402af000, 2097152, PROT_NONE) = 0
mmap(0x2b38404af000, 114688, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x239000) = 0x2b38404af000
mmap(0x2b38404cb000, 92920, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b38404cb000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libmpi_cxx.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\f\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=149464, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f450000
mmap(NULL, 2210664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38404e2000
mprotect(0x2b38404fb000, 2097152, PROT_NONE) = 0
mmap(0x2b38406fb000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x19000) = 0x2b38406fb000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=90, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=86, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=94, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=154, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=210, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/tls/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/tls/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/tls/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/tls", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/x86_64/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/x86_64", 0x7ffc05e478b0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5_hl_fortran.so.100", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \264\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=433968, ...}) = 0
mmap(NULL, 2191816, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38406fe000
mprotect(0x2b3840715000, 2093056, PROT_NONE) = 0
mmap(0x2b3840914000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x2b3840914000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5_fortran.so.102", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \340\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=747824, ...}) = 0
mmap(NULL, 2308752, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3840916000
mprotect(0x2b3840947000, 2097152, PROT_NONE) = 0
mmap(0x2b3840b47000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x31000) = 0x2b3840b47000
mmap(0x2b3840b49000, 2704, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3840b49000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5_hl_f90cstub.so.100", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P9\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=173008, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f451000
mmap(NULL, 2130552, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3840b4a000
mprotect(0x2b3840b52000, 2093056, PROT_NONE) = 0
mmap(0x2b3840d51000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x2b3840d51000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5_hl.so.100", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0w\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=580392, ...}) = 0
mmap(NULL, 2234448, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3840d53000
mprotect(0x2b3840d73000, 2093056, PROT_NONE) = 0
mmap(0x2b3840f72000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1f000) = 0x2b3840f72000
mmap(0x2b3840f74000, 2128, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3840f74000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5_f90cstub.so.102", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\351\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=625616, ...}) = 0
mmap(NULL, 2218872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3840f75000
mprotect(0x2b3840f92000, 2093056, PROT_NONE) = 0
mmap(0x2b3841191000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c000) = 0x2b3841191000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libhdf5.so.103", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\301\4\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=18582048, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f452000
mmap(NULL, 5957056, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3841193000
mprotect(0x2b384152d000, 2093056, PROT_NONE) = 0
mmap(0x2b384172c000, 77824, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x399000) = 0x2b384172c000
mmap(0x2b384173f000, 9664, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b384173f000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=332, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=154, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=110, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=154, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=104, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64", {st_mode=S_IFDIR|S_ISGID|0755, st_size=138, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=612, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=130, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=112, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=136, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=244, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=254, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=130, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=132, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=96, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=590, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64", {st_mode=S_IFDIR|S_ISGID|0755, st_size=86, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=18, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=680, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=112, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=112, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=112, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=178, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=1684, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=146, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=90, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=112, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=220, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=154, ...}) = 0
open("/.singularity.d/libs/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/.singularity.d/libs/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/.singularity.d/libs/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/.singularity.d/libs/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/.singularity.d/libs", {st_mode=S_IFDIR|0755, st_size=3, ...}) = 0
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/tls/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/tls/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/tls/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/tls", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/x86_64/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/x86_64", 0x7ffc05e47790) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/lustre/rz/dbertini/soft/valgrind/lib/valgrind", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=71918, ...}) = 0
mmap(NULL, 71918, PROT_READ, MAP_PRIVATE, 3, 0) = 0x2b383f453000
close(3)                                = 0
open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=19248, ...}) = 0
mmap(NULL, 2109744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3841742000
mprotect(0x2b3841744000, 2097152, PROT_NONE) = 0
mmap(0x2b3841944000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x2b3841944000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libgfortran.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libgfortran.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\273\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=10488240, ...}) = 0
mmap(NULL, 4654200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3841946000
mprotect(0x2b3841bb4000, 2097152, PROT_NONE) = 0
mmap(0x2b3841db4000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26e000) = 0x2b3841db4000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0PS\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1136944, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f465000
mmap(NULL, 3150136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3841db7000
mprotect(0x2b3841eb8000, 2093056, PROT_NONE) = 0
mmap(0x2b38420b7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x100000) = 0x2b38420b7000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300-\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=853056, ...}) = 0
mmap(NULL, 2192464, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38420b9000
mprotect(0x2b38420d0000, 2093056, PROT_NONE) = 0
mmap(0x2b38422cf000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x2b38422cf000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libquadmath.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libquadmath.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360&\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1053712, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f466000
mmap(NULL, 2356368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38422d1000
mprotect(0x2b3842310000, 2093056, PROT_NONE) = 0
mmap(0x2b384250f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3e000) = 0x2b384250f000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200m\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=142144, ...}) = 0
mmap(NULL, 2208904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3842511000
mprotect(0x2b3842528000, 2093056, PROT_NONE) = 0
mmap(0x2b3842727000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x2b3842727000
mmap(0x2b3842729000, 13448, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3842729000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`&\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=2156592, ...}) = 0
mmap(NULL, 3985920, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b384272d000
mprotect(0x2b38428f1000, 2093056, PROT_NONE) = 0
mmap(0x2b3842af0000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c3000) = 0x2b3842af0000
mmap(0x2b3842af6000, 16896, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3842af6000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f467000
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libopen-rte.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libopen-rte.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libopen-rte.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\241\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1638088, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f468000
mmap(NULL, 3425440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3842afb000
mprotect(0x2b3842c30000, 2093056, PROT_NONE) = 0
mmap(0x2b3842e2f000, 57344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x134000) = 0x2b3842e2f000
mmap(0x2b3842e3d000, 9376, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3842e3d000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libopen-pal.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libopen-pal.so.40", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libopen-pal.so.40", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\355\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1410992, ...}) = 0
mmap(NULL, 3382824, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3842e40000
mprotect(0x2b3842f64000, 2093056, PROT_NONE) = 0
mmap(0x2b3843163000, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x123000) = 0x2b3843163000
mmap(0x2b3843173000, 28200, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3843173000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/tls/x86_64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/tls/x86_64", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/tls/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/tls", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/x86_64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/x86_64", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib64", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/tls/x86_64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/tls/x86_64", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/tls/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/tls", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/x86_64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/x86_64", 0x7ffc05e472e0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0", {st_mode=S_IFDIR|S_ISGID|0755, st_size=380, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/librdmacm.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P4\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=92016, ...}) = 0
mmap(NULL, 2187880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b384317a000
mprotect(0x2b384318f000, 2093056, PROT_NONE) = 0
mmap(0x2b384338e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x2b384338e000
mmap(0x2b3843390000, 616, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3843390000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libibverbs.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300]\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=105704, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f469000
mmap(NULL, 2197104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3843391000
mprotect(0x2b38433a9000, 2093056, PROT_NONE) = 0
mmap(0x2b38435a8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x2b38435a8000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libpmix.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220i\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1525840, ...}) = 0
mmap(NULL, 3529616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38435aa000
mprotect(0x2b38436fe000, 2097152, PROT_NONE) = 0
mmap(0x2b38438fe000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x154000) = 0x2b38438fe000
mmap(0x2b3843906000, 7056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3843906000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/librt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/librt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\"\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=43712, ...}) = 0
mmap(NULL, 2128952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3843908000
mprotect(0x2b384390f000, 2093056, PROT_NONE) = 0
mmap(0x2b3843b0e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x2b3843b0e000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\16\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=14424, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46a000
mmap(NULL, 2105616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3843b10000
mprotect(0x2b3843b12000, 2093056, PROT_NONE) = 0
mmap(0x2b3843d11000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x2b3843d11000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20%\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=101360, ...}) = 0
mmap(NULL, 2187664, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3843d13000
mprotect(0x2b3843d29000, 2093056, PROT_NONE) = 0
mmap(0x2b3843f28000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x2b3843f28000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libhwloc.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000h\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1334104, ...}) = 0
mmap(NULL, 2361912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3843f2a000
mprotect(0x2b3843f69000, 2097152, PROT_NONE) = 0
mmap(0x2b3844169000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3f000) = 0x2b3844169000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libevent-2.1.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\360\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1496664, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46b000
mmap(NULL, 2446888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b384416b000
mprotect(0x2b38441be000, 2097152, PROT_NONE) = 0
mmap(0x2b38443be000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x53000) = 0x2b38443be000
mmap(0x2b38443c0000, 1576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b38443c0000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libevent_pthreads-2.1.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=26472, ...}) = 0
mmap(NULL, 2105560, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38443c1000
mprotect(0x2b38443c3000, 2093056, PROT_NONE) = 0
mmap(0x2b38445c2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x2b38445c2000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46c000
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libnl-route-3.so.200", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260\221\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=444816, ...}) = 0
mmap(NULL, 2540992, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38445c4000
mprotect(0x2b3844628000, 2093056, PROT_NONE) = 0
mmap(0x2b3844827000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x63000) = 0x2b3844827000
mmap(0x2b384482f000, 5568, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b384482f000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/gcc/x86_64-pc-linux-gnu/8.1.0/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/zlib-1.2.11-y7ojc3yjt2zfof5ntgwkerhw3eojtyed/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpc-1.1.0-t7q4u2qxpzjyba4jd5vxb6rnr65rhtld/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/mpfr-3.1.6-ij7i5ewhwicuz6btw3uzap7v4ricroet/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/isl-0.18-bf2jf2ikqc63milhk4pfvvgd3sdq7jzn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gmp-6.2.1-rw2ikt3b5d6jl6w7h6v2o2gluhtmr6di/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hdf5-1.10.7-egbz5gi3bgvwuz4bx5vgg2kbhosafwhn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/slurm-18-08-9-1-lqrsfjfrstghe3gyljliccue76uiaee4/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/munge-0.5.13-w6n4duq5kwajjqlqbxig7bjavabxotgc/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgcrypt-1.9.3-dwwwkkudklg3byidr4djxarhy2ko5wmq/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libgpg-error-1.42-yguzq2rkpmng2jps5vnscjozyazw6mkg/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/lz4-1.9.3-esgcoc6ce7qthhfunovnbdygtc3qxwv7/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/json-c-0.15-jih2s5clk4dcthnpsd2mhliiswue77yn/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/glib-2.70.0-phxo7brdn5kvngjlvvyn4zfanxj3hsg2/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/python-3.8.12-mgqmohofxythkpsyunjo5spinkj4qrux/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/util-linux-uuid-2.36.2-lsnf2x23tawzpoyd3yryvo4ah3bk4dx3/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/sqlite-3.36.0-7lwl67enn67sphlmfdfl2uquyan5rrjn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gdbm-1.21-po3gsvuangqcjyiv2ruvr5i2bgr6yrxq/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/readline-8.1-33u4lot47ud2objs7p3kcelgl2j3sdqn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/expat-2.4.1-vvax5ix7d43xrfznsrmcwsyvy76xckct/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libbsd-0.11.3-qvvn45qjmkmvzdxaxlffrtjjfeb4xpos/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libmd-1.0.3-jpndyot2jknsx4ofcxliuqbzxabo6row/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pcre-8.44-3eojkp5ohzd4al542xzty2cgmihi7b2p/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libffi-3.3-fyzlqj5btrnenzedwpdwq4qeftij7qgw/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/gettext-0.21-aakzl2ceo3ii5he3mb4nofdermpb4xm7/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/bzip2-1.0.8-apyajco77llllpn6q2hsuwo4anupgjaq/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/curl-7.79.0-sdyulhfdnislubkglranee7hxvbtfovb/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/numactl-2.0.14-xqfk5q7wdlwabuea5imktgvjzhhzdddw/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/.singularity.d/libs/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lustre/rz/dbertini/soft/valgrind/lib/valgrind/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/lib64/libnl-3.so.200", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200\211\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=139016, ...}) = 0
mmap(NULL, 2230472, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3844831000
mprotect(0x2b384484f000, 2097152, PROT_NONE) = 0
mmap(0x2b3844a4f000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1e000) = 0x2b3844a4f000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46d000
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/tls/x86_64/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/tls/x86_64", 0x7ffc05e470d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/tls/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/tls", 0x7ffc05e470d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/x86_64/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/x86_64", 0x7ffc05e470d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib64", 0x7ffc05e470d0) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libpciaccess-0.16-x4voovcw7og3qrw3crxc2k3t7oe3qjci/lib/libpciaccess.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240%\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=168496, ...}) = 0
mmap(NULL, 2130424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3844a52000
mprotect(0x2b3844a5a000, 2093056, PROT_NONE) = 0
mmap(0x2b3844c59000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x2b3844c59000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libxml2.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libxml2.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/hwloc-1.11.13-bkute4t6dr3otrzb3xrgoiw5j4d3dflz/lib/libxml2.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/ncurses-6.2-26ahemmirjg7kug3fiijgxd7bsqprs4r/lib/libxml2.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libxml2.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\361\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=5998704, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46e000
mmap(NULL, 3548152, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3844c5b000
mprotect(0x2b3844db3000, 2093056, PROT_NONE) = 0
mmap(0x2b3844fb2000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x157000) = 0x2b3844fb2000
mmap(0x2b3844fbd000, 1016, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b3844fbd000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/tls/x86_64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/tls/x86_64", 0x7ffc05e47070) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/tls/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/tls", 0x7ffc05e47070) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/x86_64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/x86_64", 0x7ffc05e47070) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libevent-2.1.8-k4nkf5syhdkfespx23wm7hzsttqkgdkn/lib64", 0x7ffc05e47070) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openssl-1.1.1l-kk3psff42bu2pmftgljqixpkm4p5tavj/lib/libcrypto.so.1.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0p\7\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=3374280, ...}) = 0
mmap(NULL, 5137472, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b3844fbe000
mprotect(0x2b3845274000, 2093056, PROT_NONE) = 0
mmap(0x2b3845473000, 184320, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2b5000) = 0x2b3845473000
mmap(0x2b38454a0000, 17472, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2b38454a0000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f46f000
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/tls/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/tls/x86_64", 0x7ffc05e47040) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/tls/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/tls", 0x7ffc05e47040) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/x86_64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/x86_64", 0x7ffc05e47040) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib64", 0x7ffc05e47040) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/liblzma.so.5", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3202\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=894424, ...}) = 0
mmap(NULL, 2249368, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38454a5000
mprotect(0x2b38454ca000, 2093056, PROT_NONE) = 0
mmap(0x2b38456c9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x2b38456c9000
close(3)                                = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib/libiconv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-4.8.5/gcc-8.1.0-nswpump2zjkpne3ipmxkqt75dq6s2g7w/lib64/libiconv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libxml2-2.9.12-qmlkcrdkkcwsfaeerchpe4474javbtpk/lib/libiconv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/zlib-1.2.11-h5via4tqbatdcxocmwgm5etaam2dmqro/lib/libiconv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/xz-5.2.5-7okh2tmyzqnxcspeaoezpkna5xh5tegg/lib/libiconv.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/libiconv-1.16-3swwioab675mjg7bghxrrdakjo5mrrli/lib/libiconv.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260)\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1686344, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f470000
mmap(NULL, 3125424, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x2b38456cb000
mprotect(0x2b38457c5000, 2093056, PROT_NONE) = 0
mmap(0x2b38459c4000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf9000) = 0x2b38459c4000
close(3)                                = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f471000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f472000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f473000
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f474000
arch_prctl(ARCH_SET_FS, 0x2b383f474040) = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
mprotect(0x2b3842af0000, 16384, PROT_READ) = 0
mprotect(0x2b38459c4000, 8192, PROT_READ) = 0
mprotect(0x2b3842727000, 4096, PROT_READ) = 0
mprotect(0x2b38456c9000, 4096, PROT_READ) = 0
mprotect(0x2b3841944000, 4096, PROT_READ) = 0
mprotect(0x2b3843f28000, 4096, PROT_READ) = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
mprotect(0x2b3845473000, 176128, PROT_READ) = 0
mprotect(0x2b38420b7000, 4096, PROT_READ) = 0
mprotect(0x2b3844fb2000, 36864, PROT_READ) = 0
mprotect(0x2b3844c59000, 4096, PROT_READ) = 0
mprotect(0x2b3844a4f000, 8192, PROT_READ) = 0
mprotect(0x2b3844827000, 12288, PROT_READ) = 0
mprotect(0x2b38445c2000, 4096, PROT_READ) = 0
mprotect(0x2b38443be000, 4096, PROT_READ) = 0
mprotect(0x2b3844169000, 4096, PROT_READ) = 0
mprotect(0x2b3843d11000, 4096, PROT_READ) = 0
mprotect(0x2b3843b0e000, 4096, PROT_READ) = 0
mprotect(0x2b38438fe000, 8192, PROT_READ) = 0
mprotect(0x2b38435a8000, 4096, PROT_READ) = 0
mprotect(0x2b384338e000, 4096, PROT_READ) = 0
mprotect(0x2b3843163000, 16384, PROT_READ) = 0
mprotect(0x2b3842e2f000, 8192, PROT_READ) = 0
mprotect(0x2b384250f000, 4096, PROT_READ) = 0
mprotect(0x2b38422cf000, 4096, PROT_READ) = 0
mprotect(0x2b3841db4000, 4096, PROT_READ) = 0
mprotect(0x2b38404af000, 8192, PROT_READ) = 0
mprotect(0x2b384172c000, 40960, PROT_READ) = 0
mprotect(0x2b3841191000, 4096, PROT_READ) = 0
mprotect(0x2b3840f72000, 4096, PROT_READ) = 0
mprotect(0x2b3840d51000, 4096, PROT_READ) = 0
mprotect(0x2b3840074000, 4096, PROT_READ) = 0
mprotect(0x2b383fc07000, 4096, PROT_READ) = 0
mprotect(0x2b383fe16000, 4096, PROT_READ) = 0
mprotect(0x2b3840b47000, 4096, PROT_READ) = 0
mprotect(0x2b3840914000, 4096, PROT_READ) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f476000
mprotect(0x2b383f9c0000, 40960, PROT_READ) = 0
mprotect(0x2b38406fb000, 8192, PROT_READ) = 0
mprotect(0x606000, 4096, PROT_READ)     = 0
mprotect(0x2b383f649000, 4096, PROT_READ) = 0
munmap(0x2b383f453000, 71918)           = 0
set_tid_address(0x2b383f474310)         = 74127
set_robust_list(0x2b383f474320, 24)     = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x2b3842517860, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x2b3842520630}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x2b38425178f0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x2b3842520630}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=RLIM64_INFINITY, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL)                               = 0xef5000
brk(0xf16000)                           = 0xf16000
open("/proc/net/psched", O_RDONLY)      = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
read(3, "000003e8 00000040 000f4240 3b9ac"..., 1024) = 36
close(3)                                = 0
munmap(0x2b383f453000, 4096)            = 0
stat("/etc/libnl/classid", {st_mode=S_IFREG|0644, st_size=1130, ...}) = 0
open("/etc/libnl/classid", O_RDONLY)    = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1130, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
read(3, "################################"..., 1024) = 1024
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
read(3, " List of auto-generated classids"..., 1024) = 106
read(3, "", 1024)                       = 0
close(3)                                = 0
munmap(0x2b383f453000, 4096)            = 0
fstat(0, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
fstat(1, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
fstat(2, {st_mode=S_IFIFO|0600, st_size=0, ...}) = 0
futex(0x2b383f9cd13c, FUTEX_WAKE_PRIVATE, 2147483647) = 0
futex(0x2b383f9cd148, FUTEX_WAKE_PRIVATE, 2147483647) = 0
rt_sigaction(SIGQUIT, {sa_handler=0x2b38419627f0, sa_mask=[QUIT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGILL, {sa_handler=0x2b38419627f0, sa_mask=[ILL], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGABRT, {sa_handler=0x2b38419627f0, sa_mask=[ABRT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGFPE, {sa_handler=0x2b38419627f0, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSEGV, {sa_handler=0x2b38419627f0, sa_mask=[SEGV], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGBUS, {sa_handler=0x2b38419627f0, sa_mask=[BUS], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSYS, {sa_handler=0x2b38419627f0, sa_mask=[SYS], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTRAP, {sa_handler=0x2b38419627f0, sa_mask=[TRAP], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXCPU, {sa_handler=0x2b38419627f0, sa_mask=[XCPU], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, {sa_handler=0x2b38419627f0, sa_mask=[XFSZ], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
stat("/etc/sysconfig/64bit_strstr_via_64bit_strstr_sse2_unaligned", 0x7ffc05e48030) = -1 ENOENT (No such file or directory)
brk(NULL)                               = 0xf16000
brk(0xf3d000)                           = 0xf3d000
getcwd("/lustre/rz/dbertini/cluster_tests/fio/s_scripts", 4096) = 48
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/etc/openmpi-mca-params.conf", O_RDONLY) = 3
ioctl(3, TCGETS, 0x7ffc05e48a10)        = -1 ENOSYS (Function not implemented)
brk(NULL)                               = 0xf3d000
brk(0xf69000)                           = 0xf69000
fstat(3, {st_mode=S_IFREG|0644, st_size=2818, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
read(3, "#\n# Copyright (c) 2004-2005 The "..., 8192) = 2818
read(3, "", 4096)                       = 0
read(3, "", 8192)                       = 0
ioctl(3, TCGETS, 0x7ffc05e48980)        = -1 ENOSYS (Function not implemented)
close(3)                                = 0
munmap(0x2b383f453000, 4096)            = 0
brk(NULL)                               = 0xf69000
brk(NULL)                               = 0xf69000
brk(0xf55000)                           = 0xf55000
brk(NULL)                               = 0xf55000
open("/u/dbertini/.openmpi/mca-params.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/u/dbertini/.openmpi/mca-params.conf:/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/etc/openmpi-mca-params.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
access("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/etc/openmpi-mca-params-override.conf", F_OK) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
rt_sigaction(SIGABRT, NULL, {sa_handler=0x2b38419627f0, sa_mask=[ABRT], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, 8) = 0
rt_sigaction(SIGBUS, NULL, {sa_handler=0x2b38419627f0, sa_mask=[BUS], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, 8) = 0
rt_sigaction(SIGFPE, NULL, {sa_handler=0x2b38419627f0, sa_mask=[FPE], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {sa_handler=0x2b38419627f0, sa_mask=[SEGV], sa_flags=SA_RESTORER|SA_RESTART, sa_restorer=0x2b3842763400}, 8) = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
openat(AT_FDCWD, "/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/openmpi", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
getdents(3, /* 4 entries */, 32768)     = 128
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/openmpi/.", {st_mode=S_IFDIR|S_ISGID|0755, st_size=74, ...}) = 0
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/openmpi/..", {st_mode=S_IFDIR|S_ISGID|0755, st_size=1634, ...}) = 0
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/openmpi/libompi_dbg_msgq.a", {st_mode=S_IFREG|0644, st_size=126354, ...}) = 0
stat("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/lib/openmpi/libompi_dbg_msgq.so", {st_mode=S_IFREG|0755, st_size=88872, ...}) = 0
getdents(3, /* 0 entries */, 32768)     = 0
close(3)                                = 0
openat(AT_FDCWD, "/u/dbertini/.openmpi/components", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = -1 ENOENT (No such file or directory)
socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
ioctl(3, SIOCGIFCONF, {ifc_len=10 * sizeof(struct ifreq) => 2 * sizeof(struct ifreq), ifc_buf=[{ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}]}) = 0
ioctl(3, SIOCGIFCONF, {ifc_len=20 * sizeof(struct ifreq) => 2 * sizeof(struct ifreq), ifc_buf=[{ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}]}) = 0
ioctl(3, SIOCGIFFLAGS, {ifr_name="lo", ifr_flags=IFF_UP|IFF_LOOPBACK|IFF_RUNNING}) = 0
ioctl(3, SIOCGIFINDEX, {ifr_name="lo", }) = 0
ioctl(3, SIOCGIFADDR, {ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}) = 0
ioctl(3, SIOCGIFNETMASK, {ifr_name="lo", ifr_netmask={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("255.0.0.0")}}) = 0
ioctl(3, SIOCGIFHWADDR, {ifr_name="lo", ifr_hwaddr={sa_family=ARPHRD_LOOPBACK, sa_data=00:00:00:00:00:00}}) = 0
ioctl(3, SIOCGIFMTU, {ifr_name="lo", ifr_mtu=65536}) = 0
ioctl(3, SIOCGIFFLAGS, {ifr_name="ib0", ifr_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST}) = 0
ioctl(3, SIOCGIFINDEX, {ifr_name="ib0", }) = 0
ioctl(3, SIOCGIFADDR, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}) = 0
ioctl(3, SIOCGIFNETMASK, {ifr_name="ib0", ifr_netmask={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("255.255.0.0")}}) = 0
ioctl(3, SIOCGIFHWADDR, {ifr_name="ib0", ifr_hwaddr={sa_family=ARPHRD_INFINIBAND, sa_data=00:00:06:a8:fe:80:00:00:00:00:00:00:0c:42}}) = 0
ioctl(3, SIOCGIFMTU, {ifr_name="ib0", ifr_mtu=2044}) = 0
close(3)                                = 0
open("/proc/cpuinfo", O_RDONLY)         = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
lseek(3, 0, SEEK_SET)                   = 0
read(3, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(3, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
read(3, "1 sse4_2 x2apic movbe popcnt tsc"..., 1024) = 1024
read(3, "gs\t\t: fpu vme de pse tsc msr pae"..., 1024) = 1024
read(3, ": 3\nvendor_id\t: GenuineIntel\ncpu"..., 1024) = 1024
read(3, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(3, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(3, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(3, "or_id\t: GenuineIntel\ncpu family\t"..., 1024) = 1024
read(3, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(3, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(3, "me de pse tsc msr pae mce cx8 ap"..., 1024) = 1024
read(3, "id\t: GenuineIntel\ncpu family\t: 6"..., 1024) = 1024
read(3, "12bw avx512vl xsaveopt xsavec xg"..., 1024) = 1024
read(3, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(3, "vme de pse tsc msr pae mce cx8 a"..., 1024) = 1024
read(3, "r_id\t: GenuineIntel\ncpu family\t:"..., 1024) = 1024
read(3, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(3, "pic movbe popcnt tsc_deadline_ti"..., 1024) = 1024
read(3, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(3, "dor_id\t: GenuineIntel\ncpu family"..., 1024) = 1024
read(3, "avx512bw avx512vl xsaveopt xsave"..., 1024) = 1024
read(3, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(3, "fpu vme de pse tsc msr pae mce c"..., 1024) = 1024
read(3, "endor_id\t: GenuineIntel\ncpu fami"..., 1024) = 1024
read(3, "d avx512bw avx512vl xsaveopt xsa"..., 1024) = 1024
read(3, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(3, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(3, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(3, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(3, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(3, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(3, "24\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(3, "12cd avx512bw avx512vl xsaveopt "..., 1024) = 1024
read(3, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(3, "\t: fpu vme de pse tsc msr pae mc"..., 1024) = 1024
read(3, "7\nvendor_id\t: GenuineIntel\ncpu f"..., 1024) = 1024
read(3, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(3, "2 x2apic movbe popcnt tsc_deadli"..., 1024) = 1024
read(3, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(3, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(3, "cd avx512bw avx512vl xsaveopt xs"..., 1024) = 1024
read(3, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(3, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(3, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(3, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(3, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(3, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(3, "36\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(3, "512cd avx512bw avx512vl xsaveopt"..., 1024) = 1024
read(3, "e4_2 x2apic movbe popcnt tsc_dea"..., 1024) = 1024
read(3, "lags\t\t: fpu vme de pse tsc msr p"..., 1024) = 1024
read(3, "r\t: 39\nvendor_id\t: GenuineIntel\n"..., 1024) = 1024
read(3, "wb avx512cd avx512bw avx512vl xs"..., 1024) = 1024
read(3, "se4_1 sse4_2 x2apic movbe popcnt"..., 1024) = 1024
read(3, "\t: yes\nflags\t\t: fpu vme de pse t"..., 1024) = 1024
read(3, "processor\t: 42\nvendor_id\t: Genui"..., 1024) = 1024
read(3, "shopt clwb avx512cd avx512bw avx"..., 1024) = 1024
read(3, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(3, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(3, "ement:\n\nprocessor\t: 45\nvendor_id"..., 1024) = 1024
read(3, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(3, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(3, "d level\t: 22\nwp\t\t: yes\nflags\t\t: "..., 1024) = 1024
read(3, "er management:\n\nprocessor\t: 48\nv"..., 1024) = 1024
read(3, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(3, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(3, "\t: 22\nwp\t\t: yes\nflags\t\t: fpu vme"..., 1024) = 1024
read(3, "gement:\n\nprocessor\t: 51\nvendor_i"..., 1024) = 1024
read(3, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(3, "d dca sse4_1 sse4_2 x2apic movbe"..., 1024) = 1024
read(3, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(3, "t:\n\nprocessor\t: 54\nvendor_id\t: G"..., 1024) = 1024
read(3, "ushopt clwb avx512cd avx512bw av"..., 1024) = 1024
read(3, " dca sse4_1 sse4_2 x2apic movbe "..., 1024) = 1024
read(3, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(3, "t:\n\nprocessor\t: 57\nvendor_id\t: G"..., 1024) = 1024
read(3, "lushopt clwb avx512cd avx512bw a"..., 1024) = 1024
read(3, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(3, "22\nwp\t\t: yes\nflags\t\t: fpu vme de"..., 1024) = 1024
read(3, "ent:\n\nprocessor\t: 60\nvendor_id\t:"..., 1024) = 1024
read(3, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(3, "pcid dca sse4_1 sse4_2 x2apic mo"..., 1024) = 1024
read(3, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(3, "ement:\n\nprocessor\t: 63\nvendor_id"..., 1024) = 1024
read(3, " clflushopt clwb avx512cd avx512"..., 1024) = 1024
read(3, "m pcid dca sse4_1 sse4_2 x2apic "..., 1024) = 1024
read(3, "l\t: 22\nwp\t\t: yes\nflags\t\t: fpu vm"..., 1024) = 1024
read(3, "agement:\n\nprocessor\t: 66\nvendor_"..., 1024) = 1024
read(3, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(3, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(3, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(3, "anagement:\n\nprocessor\t: 69\nvendo"..., 1024) = 1024
read(3, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(3, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(3, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(3, " management:\n\nprocessor\t: 72\nven"..., 1024) = 1024
read(3, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(3, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(3, "evel\t: 22\nwp\t\t: yes\nflags\t\t: fpu"..., 1024) = 1024
read(3, "management:\n\nprocessor\t: 75\nvend"..., 1024) = 1024
read(3, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(3, "pdcm pcid dca sse4_1 sse4_2 x2ap"..., 1024) = 1024
read(3, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(3, "anagement:\n\nprocessor\t: 78\nvendo"..., 1024) = 1024
read(3, "map clflushopt clwb avx512cd avx"..., 1024) = 1024
read(3, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(3, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(3, "anagement:\n\nprocessor\t: 81\nvendo"..., 1024) = 1024
read(3, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(3, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(3, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(3, " management:\n\nprocessor\t: 84\nven"..., 1024) = 1024
read(3, "x smap clflushopt clwb avx512cd "..., 1024) = 1024
read(3, "pr pdcm pcid dca sse4_1 sse4_2 x"..., 1024) = 1024
read(3, "uid level\t: 22\nwp\t\t: yes\nflags\t\t"..., 1024) = 1024
read(3, "ower management:\n\nprocessor\t: 87"..., 1024) = 1024
read(3, "eed adx smap clflushopt clwb avx"..., 1024) = 1024
read(3, " cx16 xtpr pdcm pcid dca sse4_1 "..., 1024) = 1024
read(3, ": yes\ncpuid level\t: 22\nwp\t\t: yes"..., 1024) = 1024
read(3, "irtual\npower management:\n\nproces"..., 1024) = 1024
read(3, "12dq rdseed adx smap clflushopt "..., 1024) = 1024
read(3, "sdbg fma cx16 xtpr pdcm pcid dca"..., 1024) = 1024
read(3, "ception\t: yes\ncpuid level\t: 22\nw"..., 1024) = 1024
read(3, "8 bits virtual\npower management:"..., 1024) = 1024
read(3, "12f avx512dq rdseed adx smap clf"..., 1024) = 1024
read(3, "2 ssse3 sdbg fma cx16 xtpr pdcm "..., 1024) = 1024
read(3, "s\nfpu_exception\t: yes\ncpuid leve"..., 1024) = 1024
read(3, "sical, 48 bits virtual\npower man"..., 1024) = 42
read(3, "", 1024)                       = 0
lseek(3, 0, SEEK_SET)                   = 0
read(3, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(3, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
close(3)                                = 0
munmap(0x2b383f453000, 4096)            = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
pipe2([3, 4], O_NONBLOCK|O_CLOEXEC)     = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK)   = 5
statfs("/dev/shm/", {f_type=TMPFS_MAGIC, f_bsize=4096, f_blocks=24546092, f_bfree=24544444, f_bavail=24544444, f_files=24546092, f_ffree=24546029, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_NOSUID|ST_NODEV}) = 0
futex(0x2b3843b0f330, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/dev/shm/open_mpi.0000", O_RDWR|O_CREAT|O_EXCL|O_NOFOLLOW|O_CLOEXEC, 0600) = 6
unlink("/dev/shm/open_mpi.0000")        = 0
shmget(IPC_PRIVATE, 4096, IPC_CREAT|IPC_EXCL|0700) = 5603334
shmat(5603334, NULL, 0)                 = 0x2b383f453000
shmctl(5603334, IPC_RMID, NULL)         = 0
shmctl(5603334, IPC_STAT, {shm_perm={uid=2631, gid=1002, mode=01700, key=0, cuid=2631, cgid=1002}, shm_segsz=4096, shm_cpid=74127, shm_lpid=74127, shm_nattch=1, shm_atime=1645647645, shm_dtime=0, shm_ctime=1645647645}) = 0
shmdt(0x2b383f453000)                   = 0
brk(NULL)                               = 0xf55000
brk(0xf76000)                           = 0xf76000
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
pipe2([7, 8], O_NONBLOCK|O_CLOEXEC)     = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK)   = 9
mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x2b38459c7000
mprotect(0x2b38459c7000, 4096, PROT_NONE) = 0
clone(child_stack=0x2b3845bc6f70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x2b3845bc79d0, tls=0x2b3845bc7700, child_tidptr=0x2b3845bc79d0) = 74128
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
stat("/etc/sysconfig/64bit_strstr_via_64bit_strstr_sse2_unaligned", 0x7ffc05e47270) = -1 ENOENT (No such file or directory)
brk(NULL)                               = 0xf76000
brk(0xf98000)                           = 0xf98000
getcwd("/lustre/rz/dbertini/cluster_tests/fio/s_scripts", 4096) = 48
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/etc/pmix-mca-params.conf", O_RDONLY) = 10
ioctl(10, TCGETS, 0x7ffc05e47c20)       = -1 ENOSYS (Function not implemented)
fstat(10, {st_mode=S_IFREG|0644, st_size=2902, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
read(10, "#\n# Copyright (c) 2004-2005 The "..., 8192) = 2902
read(10, "", 4096)                      = 0
read(10, "", 8192)                      = 0
ioctl(10, TCGETS, 0x7ffc05e47bb0)       = -1 ENOSYS (Function not implemented)
close(10)                               = 0
munmap(0x2b383f453000, 4096)            = 0
open("/u/dbertini/.pmix/mca-params.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/etc/pmix-mca-params.conf", O_RDONLY) = 10
ioctl(10, TCGETS, 0x7ffc05e47c20)       = -1 ENOSYS (Function not implemented)
fstat(10, {st_mode=S_IFREG|0644, st_size=2902, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f453000
read(10, "#\n# Copyright (c) 2004-2005 The "..., 8192) = 2902
read(10, "", 4096)                      = 0
read(10, "", 8192)                      = 0
ioctl(10, TCGETS, 0x7ffc05e47bb0)       = -1 ENOSYS (Function not implemented)
close(10)                               = 0
munmap(0x2b383f453000, 4096)            = 0
open("/u/dbertini/.pmix/mca-params.conf", O_RDONLY) = -1 ENOENT (No such file or directory)
access("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/etc/pmix-mca-params-override.conf", F_OK) = -1 ENOENT (No such file or directory)
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
openat(AT_FDCWD, "/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/pmix-2.2.2-3x46p3mtx3xibjixhppggmffz42tlnev/lib/pmix", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = -1 ENOENT (No such file or directory)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
geteuid()                               = 2631
getegid()                               = 1002
brk(NULL)                               = 0xf98000
brk(0xfb9000)                           = 0xfb9000
getuid()                                = 2631
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds12_73744/dstore_sm.lock", O_RDWR) = 10
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0) = 0x2b383f453000
close(10)                               = 0
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds12_73744/initial-pmix_shared-segment-0", O_RDONLY) = 10
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 10, 0) = 0x2b383f454000
close(10)                               = 0
getuid()                                = 2631
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds21_73744/smlockseg-slurm.pmix.41573401.0", O_RDWR) = 10
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 10, 0) = 0x2b383f455000
close(10)                               = 0
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds21_73744/initial-pmix_shared-segment-0", O_RDONLY) = 10
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 10, 0) = 0x2b383f456000
close(10)                               = 0
open("/proc/net/if_inet6", O_RDONLY)    = 10
fstat(10, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(10, "", 1024)                      = 0
close(10)                               = 0
munmap(0x2b383f457000, 4096)            = 0
socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 10
ioctl(10, SIOCGIFCONF, {ifc_len=10 * sizeof(struct ifreq) => 2 * sizeof(struct ifreq), ifc_buf=[{ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}]}) = 0
ioctl(10, SIOCGIFCONF, {ifc_len=20 * sizeof(struct ifreq) => 2 * sizeof(struct ifreq), ifc_buf=[{ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}]}) = 0
ioctl(10, SIOCGIFFLAGS, {ifr_name="lo", ifr_flags=IFF_UP|IFF_LOOPBACK|IFF_RUNNING}) = 0
ioctl(10, SIOCGIFINDEX, {ifr_name="lo", }) = 0
ioctl(10, SIOCGIFADDR, {ifr_name="lo", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("127.0.0.1")}}) = 0
ioctl(10, SIOCGIFNETMASK, {ifr_name="lo", ifr_netmask={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("255.0.0.0")}}) = 0
ioctl(10, SIOCGIFHWADDR, {ifr_name="lo", ifr_hwaddr={sa_family=ARPHRD_LOOPBACK, sa_data=00:00:00:00:00:00}}) = 0
ioctl(10, SIOCGIFMTU, {ifr_name="lo", ifr_mtu=65536}) = 0
ioctl(10, SIOCGIFFLAGS, {ifr_name="ib0", ifr_flags=IFF_UP|IFF_BROADCAST|IFF_RUNNING|IFF_MULTICAST}) = 0
ioctl(10, SIOCGIFINDEX, {ifr_name="ib0", }) = 0
ioctl(10, SIOCGIFADDR, {ifr_name="ib0", ifr_addr={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("10.20.2.152")}}) = 0
ioctl(10, SIOCGIFNETMASK, {ifr_name="ib0", ifr_netmask={sa_family=AF_INET, sin_port=htons(0), sin_addr=inet_addr("255.255.0.0")}}) = 0
ioctl(10, SIOCGIFHWADDR, {ifr_name="ib0", ifr_hwaddr={sa_family=ARPHRD_INFINIBAND, sa_data=00:00:06:a8:fe:80:00:00:00:00:00:00:0c:42}}) = 0
ioctl(10, SIOCGIFMTU, {ifr_name="ib0", ifr_mtu=2044}) = 0
close(10)                               = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
epoll_create1(EPOLL_CLOEXEC)            = 10
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
pipe2([11, 13], O_NONBLOCK|O_CLOEXEC)   = 0
getuid()                                = 2631
geteuid()                               = 2631
getgid()                                = 1002
getegid()                               = 1002
eventfd2(0, EFD_CLOEXEC|EFD_NONBLOCK)   = 14
epoll_ctl(10, EPOLL_CTL_ADD, 14, {EPOLLIN, {u32=14, u64=14}}) = 0
mmap(NULL, 2101248, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x2b3845bc8000
mprotect(0x2b3845bc8000, 4096, PROT_NONE) = 0
clone(child_stack=0x2b3845dc7f70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tidptr=0x2b3845dc89d0, tls=0x2b3845dc8700, child_tidptr=0x2b3845dc89d0) = 74129
socket(AF_INET, SOCK_STREAM, IPPROTO_IP) = 15
connect(15, {sa_family=AF_INET, sin_port=htons(51278), sin_addr=inet_addr("127.0.0.1")}, 16) = 0
geteuid()                               = 2631
getegid()                               = 1002
sendto(15, "\377\377\377\377\377\377\377\377>\0\0\0\0\0\0\0native\0\0\0\0\10G\n\0\0\352"..., 78, 0, NULL, 0) = 78
getsockopt(15, SOL_SOCKET, SO_RCVTIMEO, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", [16]) = 0
setsockopt(15, SOL_SOCKET, SO_RCVTIMEO, "\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 16) = 0
recvfrom(15, "\0\0\0\0", 4, MSG_WAITALL, NULL, NULL) = 4
recvfrom(15, "\0\0\0\0", 4, MSG_WAITALL, NULL, NULL) = 4
setsockopt(15, SOL_SOCKET, SO_RCVTIMEO, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 16) = 0
fcntl(15, F_GETFL)                      = 0x2 (flags O_RDWR)
fcntl(15, F_SETFL, O_RDWR|O_NONBLOCK)   = 0
epoll_ctl(10, EPOLL_CTL_ADD, 15, {EPOLLIN, {u32=15, u64=15}}) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0x7ffc05e48424, FUTEX_WAIT_PRIVATE, 1, NULL) = 0
futex(0x7ffc05e483f0, FUTEX_WAKE_PRIVATE, 1) = 0
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds21_73744/smseg-slurm.pmix.41573401.0-0", O_RDONLY) = 16
mmap(NULL, 4194304, PROT_READ, MAP_SHARED, 16, 0) = 0x2b3845dc9000
close(16)                               = 0
open("/var/spool/slurm/d/pmix.41573401.0//pmix_dstor_ds21_73744/smdataseg-slurm.pmix.41573401.0-0", O_RDONLY) = 16
mmap(NULL, 4194304, PROT_READ, MAP_SHARED, 16, 0) = 0x2b38461c9000
close(16)                               = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0xfb6b3c, FUTEX_WAIT_PRIVATE, 1, NULL) = 0
futex(0xfb6b08, FUTEX_WAKE_PRIVATE, 1)  = 0
brk(NULL)                               = 0xfb9000
brk(0xfda000)                           = 0xfda000
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
stat("/tmp/spmix_appdir_41573401.0/0", 0x7ffc05e488f0) = -1 ENOENT (No such file or directory)
stat("/tmp/spmix_appdir_41573401.0/0", 0x7ffc05e488c0) = -1 ENOENT (No such file or directory)
mkdir("/tmp/spmix_appdir_41573401.0/0", 0700) = 0
madvise(0xfc9000, 4096, MADV_DONTFORK)  = 0
madvise(0xfc9000, 4096, MADV_DOFORK)    = 0
getuid()                                = 2631
geteuid()                               = 2631
open("/sys/class/infiniband_verbs/abi_version", O_RDONLY|O_CLOEXEC) = 16
read(16, "6\n", 8)                      = 2
close(16)                               = 0
open("/sys/class/infiniband_verbs/abi_version", O_RDONLY|O_CLOEXEC) = 16
read(16, "6\n", 8)                      = 2
close(16)                               = 0
geteuid()                               = 2631
getrlimit(RLIMIT_MEMLOCK, {rlim_cur=RLIM64_INFINITY, rlim_max=RLIM64_INFINITY}) = 0
openat(AT_FDCWD, "/sys/class/infiniband_verbs", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 16
getdents(16, /* 8 entries */, 32768)    = 240
stat("/sys/class/infiniband_verbs/abi_version", {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
stat("/sys/class/infiniband_verbs/uverbs0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/ibdev", O_RDONLY|O_CLOEXEC) = 17
read(17, "mlx5_0\n", 64)                = 7
close(17)                               = 0
stat("/sys/class/infiniband/mlx5_0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs0", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 192), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/abi_version", O_RDONLY|O_CLOEXEC) = 17
read(17, "1\n", 8)                      = 2
close(17)                               = 0
open("/sys/class/infiniband_verbs/uverbs0/device/modalias", O_RDONLY|O_CLOEXEC) = 17
read(17, "pci:v000015B3d0000101Bsv000015B3"..., 512) = 54
close(17)                               = 0
stat("/sys/class/infiniband_verbs/uverbs1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/ibdev", O_RDONLY|O_CLOEXEC) = 17
read(17, "i40iw0\n", 64)                = 7
close(17)                               = 0
stat("/sys/class/infiniband/i40iw0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs1", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 193), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/abi_version", O_RDONLY|O_CLOEXEC) = 17
read(17, "0\n", 8)                      = 2
close(17)                               = 0
open("/sys/class/infiniband_verbs/uverbs1/device/modalias", O_RDONLY|O_CLOEXEC) = 17
read(17, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(17)                               = 0
stat("/sys/class/infiniband_verbs/uverbs2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/ibdev", O_RDONLY|O_CLOEXEC) = 17
read(17, "i40iw1\n", 64)                = 7
close(17)                               = 0
stat("/sys/class/infiniband/i40iw1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs2", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 194), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/abi_version", O_RDONLY|O_CLOEXEC) = 17
read(17, "0\n", 8)                      = 2
close(17)                               = 0
open("/sys/class/infiniband_verbs/uverbs2/device/modalias", O_RDONLY|O_CLOEXEC) = 17
read(17, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(17)                               = 0
stat("/sys/class/infiniband_verbs/uverbs3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/ibdev", O_RDONLY|O_CLOEXEC) = 17
read(17, "i40iw2\n", 64)                = 7
close(17)                               = 0
stat("/sys/class/infiniband/i40iw2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs3", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 195), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/abi_version", O_RDONLY|O_CLOEXEC) = 17
read(17, "0\n", 8)                      = 2
close(17)                               = 0
open("/sys/class/infiniband_verbs/uverbs3/device/modalias", O_RDONLY|O_CLOEXEC) = 17
read(17, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(17)                               = 0
stat("/sys/class/infiniband_verbs/uverbs4", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/ibdev", O_RDONLY|O_CLOEXEC) = 17
read(17, "i40iw3\n", 64)                = 7
close(17)                               = 0
stat("/sys/class/infiniband/i40iw3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs4", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 196), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/abi_version", O_RDONLY|O_CLOEXEC) = 17
read(17, "0\n", 8)                      = 2
close(17)                               = 0
open("/sys/class/infiniband_verbs/uverbs4/device/modalias", O_RDONLY|O_CLOEXEC) = 17
read(17, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(17)                               = 0
getdents(16, /* 0 entries */, 32768)    = 0
close(16)                               = 0
openat(AT_FDCWD, "/etc/libibverbs.d", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 16
getdents(16, /* 17 entries */, 32768)   = 568
stat("/etc/libibverbs.d/.", {st_mode=S_IFDIR|0755, st_size=323, ...}) = 0
stat("/etc/libibverbs.d/..", {st_mode=S_IFDIR|0755, st_size=3926, ...}) = 0
stat("/etc/libibverbs.d/bnxt_re.driver", {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
open("/etc/libibverbs.d/bnxt_re.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver bnxt_re\n", 1024)      = 15
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/cxgb3.driver", {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
open("/etc/libibverbs.d/cxgb3.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver cxgb3\n", 1024)        = 13
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/cxgb4.driver", {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
open("/etc/libibverbs.d/cxgb4.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver cxgb4\n", 1024)        = 13
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/hfi1verbs.driver", {st_mode=S_IFREG|0644, st_size=17, ...}) = 0
open("/etc/libibverbs.d/hfi1verbs.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=17, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver hfi1verbs\n", 1024)    = 17
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/hns.driver", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
open("/etc/libibverbs.d/hns.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver hns\n", 1024)          = 11
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/i40iw.driver", {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
open("/etc/libibverbs.d/i40iw.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver i40iw\n", 1024)        = 13
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/ipathverbs.driver", {st_mode=S_IFREG|0644, st_size=18, ...}) = 0
open("/etc/libibverbs.d/ipathverbs.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=18, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver ipathverbs\n", 1024)   = 18
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/mlx4.driver", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
open("/etc/libibverbs.d/mlx4.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver mlx4\n", 1024)         = 12
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/mlx5.driver", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
open("/etc/libibverbs.d/mlx5.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver mlx5\n", 1024)         = 12
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/mthca.driver", {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
open("/etc/libibverbs.d/mthca.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=13, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver mthca\n", 1024)        = 13
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/nes.driver", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
open("/etc/libibverbs.d/nes.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver nes\n", 1024)          = 11
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/ocrdma.driver", {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
open("/etc/libibverbs.d/ocrdma.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=14, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver ocrdma\n", 1024)       = 14
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/qedr.driver", {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
open("/etc/libibverbs.d/qedr.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=12, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver qedr\n", 1024)         = 12
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/rxe.driver", {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
open("/etc/libibverbs.d/rxe.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=11, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver rxe\n", 1024)          = 11
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
stat("/etc/libibverbs.d/vmw_pvrdma.driver", {st_mode=S_IFREG|0644, st_size=18, ...}) = 0
open("/etc/libibverbs.d/vmw_pvrdma.driver", O_RDONLY|O_CLOEXEC) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=18, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f457000
read(17, "driver vmw_pvrdma\n", 1024)   = 18
read(17, "", 1024)                      = 0
close(17)                               = 0
munmap(0x2b383f457000, 4096)            = 0
getdents(16, /* 0 entries */, 32768)    = 0
close(16)                               = 0
getuid()                                = 2631
geteuid()                               = 2631
futex(0x2b38419450d0, FUTEX_WAKE_PRIVATE, 2147483647) = 0
open("/usr/lib64/libibverbs/libvmw_pvrdma-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\25\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=24096, ...}) = 0
mmap(NULL, 2118000, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b38465c9000
mprotect(0x2b38465cd000, 2097152, PROT_NONE) = 0
mmap(0x2b38467cd000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x4000) = 0x2b38467cd000
close(16)                               = 0
mprotect(0x2b38467cd000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/librxe-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=19864, ...}) = 0
mmap(NULL, 2113904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b38467cf000
mprotect(0x2b38467d3000, 2093056, PROT_NONE) = 0
mmap(0x2b38469d2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x3000) = 0x2b38469d2000
close(16)                               = 0
mprotect(0x2b38469d2000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libqedr-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=40648, ...}) = 0
mmap(NULL, 2134432, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b38469d4000
mprotect(0x2b38469dd000, 2093056, PROT_NONE) = 0
mmap(0x2b3846bdc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x8000) = 0x2b3846bdc000
close(16)                               = 0
mprotect(0x2b3846bdc000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libocrdma-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=28272, ...}) = 0
mmap(NULL, 2122112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3846bde000
mprotect(0x2b3846be4000, 2093056, PROT_NONE) = 0
mmap(0x2b3846de3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x5000) = 0x2b3846de3000
close(16)                               = 0
mprotect(0x2b3846de3000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libnes-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\25\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=28128, ...}) = 0
mmap(NULL, 2122088, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3846de5000
mprotect(0x2b3846dea000, 2097152, PROT_NONE) = 0
mmap(0x2b3846fea000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x5000) = 0x2b3846fea000
close(16)                               = 0
mprotect(0x2b3846fea000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libmthca-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \27\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=36592, ...}) = 0
mmap(NULL, 2130304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3846fec000
mprotect(0x2b3846ff4000, 2093056, PROT_NONE) = 0
mmap(0x2b38471f3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x7000) = 0x2b38471f3000
close(16)                               = 0
mprotect(0x2b38471f3000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libmlx5-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@A\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=165952, ...}) = 0
mmap(NULL, 2257848, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b38471f5000
mprotect(0x2b384721c000, 2093056, PROT_NONE) = 0
mmap(0x2b384741b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x26000) = 0x2b384741b000
close(16)                               = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
mprotect(0x2b384741b000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libmlx4-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340!\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=49672, ...}) = 0
mmap(NULL, 2142776, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b384741d000
mprotect(0x2b3847428000, 2093056, PROT_NONE) = 0
mmap(0x2b3847627000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0xa000) = 0x2b3847627000
close(16)                               = 0
mprotect(0x2b3847627000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libipathverbs-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=19928, ...}) = 0
mmap(NULL, 2113872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3847629000
mprotect(0x2b384762d000, 2093056, PROT_NONE) = 0
mmap(0x2b384782c000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x3000) = 0x2b384782c000
close(16)                               = 0
mprotect(0x2b384782c000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libi40iw-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\24\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=32584, ...}) = 0
mmap(NULL, 2126136, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b384782e000
mprotect(0x2b3847835000, 2093056, PROT_NONE) = 0
mmap(0x2b3847a34000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x6000) = 0x2b3847a34000
close(16)                               = 0
mprotect(0x2b3847a34000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libhns-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\30\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=36552, ...}) = 0
mmap(NULL, 2130320, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3847a36000
mprotect(0x2b3847a3e000, 2093056, PROT_NONE) = 0
mmap(0x2b3847c3d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x7000) = 0x2b3847c3d000
close(16)                               = 0
mprotect(0x2b3847c3d000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libhfi1verbs-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0`\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=19936, ...}) = 0
mmap(NULL, 2113872, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3847c3f000
mprotect(0x2b3847c43000, 2093056, PROT_NONE) = 0
mmap(0x2b3847e42000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x3000) = 0x2b3847e42000
close(16)                               = 0
mprotect(0x2b3847e42000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libcxgb4-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\30\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=44912, ...}) = 0
mmap(NULL, 2138608, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3850000000
mprotect(0x2b3850009000, 2097152, PROT_NONE) = 0
mmap(0x2b3850209000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x9000) = 0x2b3850209000
close(16)                               = 0
mprotect(0x2b3850209000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libcxgb3-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\25\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=28160, ...}) = 0
mmap(NULL, 2122104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b385020b000
mprotect(0x2b3850210000, 2097152, PROT_NONE) = 0
mmap(0x2b3850410000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x5000) = 0x2b3850410000
close(16)                               = 0
mprotect(0x2b3850410000, 4096, PROT_READ) = 0
open("/usr/lib64/libibverbs/libbnxt_re-rdmav22.so", O_RDONLY|O_CLOEXEC) = 16
read(16, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\26\0\0\0\0\0\0"..., 832) = 832
fstat(16, {st_mode=S_IFREG|0755, st_size=28288, ...}) = 0
mmap(NULL, 2122112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 16, 0) = 0x2b3850412000
mprotect(0x2b3850418000, 2093056, PROT_NONE) = 0
mmap(0x2b3850617000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 16, 0x5000) = 0x2b3850617000
close(16)                               = 0
mprotect(0x2b3850617000, 4096, PROT_READ) = 0
open("/sys/class/infiniband/i40iw3/node_type", O_RDONLY|O_CLOEXEC) = 16
read(16, "4: RNIC\n", 16)               = 8
close(16)                               = 0
open("/sys/class/infiniband/i40iw2/node_type", O_RDONLY|O_CLOEXEC) = 16
read(16, "4: RNIC\n", 16)               = 8
close(16)                               = 0
open("/sys/class/infiniband/i40iw1/node_type", O_RDONLY|O_CLOEXEC) = 16
read(16, "4: RNIC\n", 16)               = 8
close(16)                               = 0
open("/sys/class/infiniband/i40iw0/node_type", O_RDONLY|O_CLOEXEC) = 16
read(16, "4: RNIC\n", 16)               = 8
close(16)                               = 0
open("/sys/class/infiniband/mlx5_0/node_type", O_RDONLY|O_CLOEXEC) = 16
read(16, "1: CA\n", 16)                 = 6
close(16)                               = 0
open("/dev/infiniband/uverbs0", O_RDWR|O_CLOEXEC) = 16
mmap(NULL, 204800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f477000
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e46f50) = -1 ENOSPC (No space left on device)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e46ea0) = 0
brk(NULL)                               = 0xfda000
brk(0x1010000)                          = 0x1010000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0) = 0x2b383f457000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x1000) = 0x2b383f458000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x2000) = 0x2b383f459000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x3000) = 0x2b383f45a000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x4000) = 0x2b383f45b000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x5000) = 0x2b383f45c000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x6000) = 0x2b383f45d000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 16, 0x7000) = 0x2b383f45e000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 16, 0x500000) = 0x2b383f45f000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 16, 0x700000) = 0x2b383f460000
open("/proc/cpuinfo", O_RDONLY)         = 18
fstat(18, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(18, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(18, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
read(18, "1 sse4_2 x2apic movbe popcnt tsc"..., 1024) = 1024
read(18, "gs\t\t: fpu vme de pse tsc msr pae"..., 1024) = 1024
read(18, ": 3\nvendor_id\t: GenuineIntel\ncpu"..., 1024) = 1024
read(18, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(18, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(18, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(18, "or_id\t: GenuineIntel\ncpu family\t"..., 1024) = 1024
read(18, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(18, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(18, "me de pse tsc msr pae mce cx8 ap"..., 1024) = 1024
read(18, "id\t: GenuineIntel\ncpu family\t: 6"..., 1024) = 1024
read(18, "12bw avx512vl xsaveopt xsavec xg"..., 1024) = 1024
read(18, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(18, "vme de pse tsc msr pae mce cx8 a"..., 1024) = 1024
read(18, "r_id\t: GenuineIntel\ncpu family\t:"..., 1024) = 1024
read(18, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(18, "pic movbe popcnt tsc_deadline_ti"..., 1024) = 1024
read(18, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(18, "dor_id\t: GenuineIntel\ncpu family"..., 1024) = 1024
read(18, "avx512bw avx512vl xsaveopt xsave"..., 1024) = 1024
read(18, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(18, "fpu vme de pse tsc msr pae mce c"..., 1024) = 1024
read(18, "endor_id\t: GenuineIntel\ncpu fami"..., 1024) = 1024
read(18, "d avx512bw avx512vl xsaveopt xsa"..., 1024) = 1024
read(18, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(18, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(18, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(18, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(18, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(18, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(18, "24\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(18, "12cd avx512bw avx512vl xsaveopt "..., 1024) = 1024
read(18, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(18, "\t: fpu vme de pse tsc msr pae mc"..., 1024) = 1024
read(18, "7\nvendor_id\t: GenuineIntel\ncpu f"..., 1024) = 1024
read(18, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(18, "2 x2apic movbe popcnt tsc_deadli"..., 1024) = 1024
read(18, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(18, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(18, "cd avx512bw avx512vl xsaveopt xs"..., 1024) = 1024
read(18, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(18, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(18, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(18, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(18, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(18, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(18, "36\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(18, "512cd avx512bw avx512vl xsaveopt"..., 1024) = 1024
read(18, "e4_2 x2apic movbe popcnt tsc_dea"..., 1024) = 1024
read(18, "lags\t\t: fpu vme de pse tsc msr p"..., 1024) = 1024
read(18, "r\t: 39\nvendor_id\t: GenuineIntel\n"..., 1024) = 1024
read(18, "wb avx512cd avx512bw avx512vl xs"..., 1024) = 1024
read(18, "se4_1 sse4_2 x2apic movbe popcnt"..., 1024) = 1024
read(18, "\t: yes\nflags\t\t: fpu vme de pse t"..., 1024) = 1024
read(18, "processor\t: 42\nvendor_id\t: Genui"..., 1024) = 1024
read(18, "shopt clwb avx512cd avx512bw avx"..., 1024) = 1024
read(18, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(18, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(18, "ement:\n\nprocessor\t: 45\nvendor_id"..., 1024) = 1024
read(18, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(18, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(18, "d level\t: 22\nwp\t\t: yes\nflags\t\t: "..., 1024) = 1024
read(18, "er management:\n\nprocessor\t: 48\nv"..., 1024) = 1024
read(18, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(18, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(18, "\t: 22\nwp\t\t: yes\nflags\t\t: fpu vme"..., 1024) = 1024
read(18, "gement:\n\nprocessor\t: 51\nvendor_i"..., 1024) = 1024
read(18, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(18, "d dca sse4_1 sse4_2 x2apic movbe"..., 1024) = 1024
read(18, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(18, "t:\n\nprocessor\t: 54\nvendor_id\t: G"..., 1024) = 1024
read(18, "ushopt clwb avx512cd avx512bw av"..., 1024) = 1024
read(18, " dca sse4_1 sse4_2 x2apic movbe "..., 1024) = 1024
read(18, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(18, "t:\n\nprocessor\t: 57\nvendor_id\t: G"..., 1024) = 1024
read(18, "lushopt clwb avx512cd avx512bw a"..., 1024) = 1024
read(18, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(18, "22\nwp\t\t: yes\nflags\t\t: fpu vme de"..., 1024) = 1024
read(18, "ent:\n\nprocessor\t: 60\nvendor_id\t:"..., 1024) = 1024
read(18, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(18, "pcid dca sse4_1 sse4_2 x2apic mo"..., 1024) = 1024
read(18, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(18, "ement:\n\nprocessor\t: 63\nvendor_id"..., 1024) = 1024
read(18, " clflushopt clwb avx512cd avx512"..., 1024) = 1024
read(18, "m pcid dca sse4_1 sse4_2 x2apic "..., 1024) = 1024
read(18, "l\t: 22\nwp\t\t: yes\nflags\t\t: fpu vm"..., 1024) = 1024
read(18, "agement:\n\nprocessor\t: 66\nvendor_"..., 1024) = 1024
read(18, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(18, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(18, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(18, "anagement:\n\nprocessor\t: 69\nvendo"..., 1024) = 1024
read(18, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(18, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(18, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(18, " management:\n\nprocessor\t: 72\nven"..., 1024) = 1024
read(18, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(18, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(18, "evel\t: 22\nwp\t\t: yes\nflags\t\t: fpu"..., 1024) = 1024
read(18, "management:\n\nprocessor\t: 75\nvend"..., 1024) = 1024
read(18, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(18, "pdcm pcid dca sse4_1 sse4_2 x2ap"..., 1024) = 1024
read(18, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(18, "anagement:\n\nprocessor\t: 78\nvendo"..., 1024) = 1024
read(18, "map clflushopt clwb avx512cd avx"..., 1024) = 1024
read(18, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(18, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(18, "anagement:\n\nprocessor\t: 81\nvendo"..., 1024) = 1024
read(18, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(18, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(18, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(18, " management:\n\nprocessor\t: 84\nven"..., 1024) = 1024
read(18, "x smap clflushopt clwb avx512cd "..., 1024) = 1024
read(18, "pr pdcm pcid dca sse4_1 sse4_2 x"..., 1024) = 1024
read(18, "uid level\t: 22\nwp\t\t: yes\nflags\t\t"..., 1024) = 1024
read(18, "ower management:\n\nprocessor\t: 87"..., 1024) = 1024
read(18, "eed adx smap clflushopt clwb avx"..., 1024) = 1024
read(18, " cx16 xtpr pdcm pcid dca sse4_1 "..., 1024) = 1024
read(18, ": yes\ncpuid level\t: 22\nwp\t\t: yes"..., 1024) = 1024
read(18, "irtual\npower management:\n\nproces"..., 1024) = 1024
read(18, "12dq rdseed adx smap clflushopt "..., 1024) = 1024
read(18, "sdbg fma cx16 xtpr pdcm pcid dca"..., 1024) = 1024
read(18, "ception\t: yes\ncpuid level\t: 22\nw"..., 1024) = 1024
read(18, "8 bits virtual\npower management:"..., 1024) = 1024
read(18, "12f avx512dq rdseed adx smap clf"..., 1024) = 1024
read(18, "2 ssse3 sdbg fma cx16 xtpr pdcm "..., 1024) = 1024
read(18, "s\nfpu_exception\t: yes\ncpuid leve"..., 1024) = 1024
read(18, "sical, 48 bits virtual\npower man"..., 1024) = 42
read(18, "", 1024)                      = 0
close(18)                               = 0
munmap(0x2b383f461000, 4096)            = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e46c60) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e46f70) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e46d70) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e485c0) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48680) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
mmap(NULL, 2105344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3850619000
madvise(0x2b385061a000, 2097152, MADV_DONTFORK) = 0
madvise(0xff0000, 4096, MADV_DONTFORK)  = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48320) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48190) = 0
mmap(NULL, 2105344, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b385081b000
madvise(0x2b385081c000, 2097152, MADV_DONTFORK) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48190) = 0
brk(NULL)                               = 0x1010000
brk(0x1032000)                          = 0x1032000
mmap(NULL, 663552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f4a9000
madvise(0x2b383f4aa000, 655360, MADV_DONTFORK) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48200) = 0
madvise(0x1022000, 20480, MADV_DONTFORK) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48610) = 0
mmap(NULL, 4202496, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3850a1d000
madvise(0x2b3850a1e000, 4194304, MADV_DONTFORK) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48610) = 0
mmap(NULL, 184320, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f54b000
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0x7ffc05e488f0, FUTEX_WAIT_PRIVATE, 2, NULL) = -1 EAGAIN (Resource temporarily unavailable)
futex(0x7ffc05e488f0, FUTEX_WAKE_PRIVATE, 1) = 0
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0xf5e5d4, FUTEX_WAIT_PRIVATE, 1, NULL) = 0
futex(0xf5e5a0, FUTEX_WAKE_PRIVATE, 1)  = 0
open("/", O_RDONLY|O_DIRECTORY)         = 19
fcntl(19, F_GETFD)                      = 0
fcntl(19, F_SETFD, FD_CLOEXEC)          = 0
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
open("/sys/devices/system/cpu/online", O_RDONLY|O_CLOEXEC) = 20
read(20, "0-95\n", 8192)                = 5
close(20)                               = 0
openat(19, "proc/hwloc-nofile-info", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "proc/cpuinfo", O_RDONLY)    = 20
fcntl(20, F_GETFL)                      = 0x8000 (flags O_RDONLY|O_LARGEFILE)
fstat(20, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(20, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
read(20, "1 sse4_2 x2apic movbe popcnt tsc"..., 1024) = 1024
read(20, "gs\t\t: fpu vme de pse tsc msr pae"..., 1024) = 1024
read(20, ": 3\nvendor_id\t: GenuineIntel\ncpu"..., 1024) = 1024
read(20, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(20, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(20, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(20, "or_id\t: GenuineIntel\ncpu family\t"..., 1024) = 1024
read(20, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(20, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(20, "me de pse tsc msr pae mce cx8 ap"..., 1024) = 1024
read(20, "id\t: GenuineIntel\ncpu family\t: 6"..., 1024) = 1024
read(20, "12bw avx512vl xsaveopt xsavec xg"..., 1024) = 1024
read(20, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(20, "vme de pse tsc msr pae mce cx8 a"..., 1024) = 1024
read(20, "r_id\t: GenuineIntel\ncpu family\t:"..., 1024) = 1024
read(20, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(20, "pic movbe popcnt tsc_deadline_ti"..., 1024) = 1024
read(20, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(20, "dor_id\t: GenuineIntel\ncpu family"..., 1024) = 1024
read(20, "avx512bw avx512vl xsaveopt xsave"..., 1024) = 1024
brk(NULL)                               = 0x1032000
brk(0x1053000)                          = 0x1053000
read(20, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(20, "fpu vme de pse tsc msr pae mce c"..., 1024) = 1024
read(20, "endor_id\t: GenuineIntel\ncpu fami"..., 1024) = 1024
read(20, "d avx512bw avx512vl xsaveopt xsa"..., 1024) = 1024
read(20, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(20, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(20, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(20, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(20, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(20, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(20, "24\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(20, "12cd avx512bw avx512vl xsaveopt "..., 1024) = 1024
read(20, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(20, "\t: fpu vme de pse tsc msr pae mc"..., 1024) = 1024
read(20, "7\nvendor_id\t: GenuineIntel\ncpu f"..., 1024) = 1024
read(20, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(20, "2 x2apic movbe popcnt tsc_deadli"..., 1024) = 1024
read(20, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(20, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(20, "cd avx512bw avx512vl xsaveopt xs"..., 1024) = 1024
read(20, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(20, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(20, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(20, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(20, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(20, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(20, "36\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(20, "512cd avx512bw avx512vl xsaveopt"..., 1024) = 1024
read(20, "e4_2 x2apic movbe popcnt tsc_dea"..., 1024) = 1024
read(20, "lags\t\t: fpu vme de pse tsc msr p"..., 1024) = 1024
read(20, "r\t: 39\nvendor_id\t: GenuineIntel\n"..., 1024) = 1024
read(20, "wb avx512cd avx512bw avx512vl xs"..., 1024) = 1024
read(20, "se4_1 sse4_2 x2apic movbe popcnt"..., 1024) = 1024
read(20, "\t: yes\nflags\t\t: fpu vme de pse t"..., 1024) = 1024
read(20, "processor\t: 42\nvendor_id\t: Genui"..., 1024) = 1024
read(20, "shopt clwb avx512cd avx512bw avx"..., 1024) = 1024
read(20, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(20, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(20, "ement:\n\nprocessor\t: 45\nvendor_id"..., 1024) = 1024
read(20, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(20, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(20, "d level\t: 22\nwp\t\t: yes\nflags\t\t: "..., 1024) = 1024
read(20, "er management:\n\nprocessor\t: 48\nv"..., 1024) = 1024
read(20, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(20, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(20, "\t: 22\nwp\t\t: yes\nflags\t\t: fpu vme"..., 1024) = 1024
read(20, "gement:\n\nprocessor\t: 51\nvendor_i"..., 1024) = 1024
read(20, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(20, "d dca sse4_1 sse4_2 x2apic movbe"..., 1024) = 1024
read(20, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(20, "t:\n\nprocessor\t: 54\nvendor_id\t: G"..., 1024) = 1024
read(20, "ushopt clwb avx512cd avx512bw av"..., 1024) = 1024
read(20, " dca sse4_1 sse4_2 x2apic movbe "..., 1024) = 1024
read(20, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(20, "t:\n\nprocessor\t: 57\nvendor_id\t: G"..., 1024) = 1024
read(20, "lushopt clwb avx512cd avx512bw a"..., 1024) = 1024
read(20, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(20, "22\nwp\t\t: yes\nflags\t\t: fpu vme de"..., 1024) = 1024
read(20, "ent:\n\nprocessor\t: 60\nvendor_id\t:"..., 1024) = 1024
read(20, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(20, "pcid dca sse4_1 sse4_2 x2apic mo"..., 1024) = 1024
read(20, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(20, "ement:\n\nprocessor\t: 63\nvendor_id"..., 1024) = 1024
read(20, " clflushopt clwb avx512cd avx512"..., 1024) = 1024
read(20, "m pcid dca sse4_1 sse4_2 x2apic "..., 1024) = 1024
read(20, "l\t: 22\nwp\t\t: yes\nflags\t\t: fpu vm"..., 1024) = 1024
read(20, "agement:\n\nprocessor\t: 66\nvendor_"..., 1024) = 1024
read(20, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(20, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(20, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(20, "anagement:\n\nprocessor\t: 69\nvendo"..., 1024) = 1024
read(20, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(20, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(20, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(20, " management:\n\nprocessor\t: 72\nven"..., 1024) = 1024
read(20, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(20, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(20, "evel\t: 22\nwp\t\t: yes\nflags\t\t: fpu"..., 1024) = 1024
read(20, "management:\n\nprocessor\t: 75\nvend"..., 1024) = 1024
read(20, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(20, "pdcm pcid dca sse4_1 sse4_2 x2ap"..., 1024) = 1024
read(20, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(20, "anagement:\n\nprocessor\t: 78\nvendo"..., 1024) = 1024
read(20, "map clflushopt clwb avx512cd avx"..., 1024) = 1024
read(20, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(20, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(20, "anagement:\n\nprocessor\t: 81\nvendo"..., 1024) = 1024
read(20, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(20, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(20, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(20, " management:\n\nprocessor\t: 84\nven"..., 1024) = 1024
read(20, "x smap clflushopt clwb avx512cd "..., 1024) = 1024
read(20, "pr pdcm pcid dca sse4_1 sse4_2 x"..., 1024) = 1024
read(20, "uid level\t: 22\nwp\t\t: yes\nflags\t\t"..., 1024) = 1024
read(20, "ower management:\n\nprocessor\t: 87"..., 1024) = 1024
read(20, "eed adx smap clflushopt clwb avx"..., 1024) = 1024
read(20, " cx16 xtpr pdcm pcid dca sse4_1 "..., 1024) = 1024
read(20, ": yes\ncpuid level\t: 22\nwp\t\t: yes"..., 1024) = 1024
read(20, "irtual\npower management:\n\nproces"..., 1024) = 1024
read(20, "12dq rdseed adx smap clflushopt "..., 1024) = 1024
read(20, "sdbg fma cx16 xtpr pdcm pcid dca"..., 1024) = 1024
read(20, "ception\t: yes\ncpuid level\t: 22\nw"..., 1024) = 1024
read(20, "8 bits virtual\npower management:"..., 1024) = 1024
read(20, "12f avx512dq rdseed adx smap clf"..., 1024) = 1024
read(20, "2 ssse3 sdbg fma cx16 xtpr pdcm "..., 1024) = 1024
read(20, "s\nfpu_exception\t: yes\ncpuid leve"..., 1024) = 1024
read(20, "sical, 48 bits virtual\npower man"..., 1024) = 42
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "overlay / overlay ro,seclabel,no"..., 1024) = 1024
read(20, "ertini tmpfs rw,seclabel,nosuid,"..., 1024) = 1024
read(20, "osuid,nodev,relatime,fd=17,pgrp="..., 1024) = 567
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(19, "proc/nodes", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/kernel/mm/hugepages", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "proc/meminfo", O_RDONLY)    = 20
read(20, "MemTotal:       196368740 kB\nMem"..., 4095) = 1317
close(20)                               = 0
stat("/etc/sysconfig/64bit_strstr_via_64bit_strstr_sse2_unaligned", 0x7ffc05e46370) = -1 ENOENT (No such file or directory)
openat(19, "sys/kernel/mm/hugepages", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 4 entries */, 32768)    = 128
openat(19, "sys/kernel/mm/hugepages/hugepages-1048576kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
openat(19, "sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/bus/node/devices", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 4 entries */, 32768)    = 112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/bus/node/devices/node0/cpumap", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
newfstatat(19, "sys/bus/node/devices/node0/hugepages", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/node/devices/node0/meminfo", O_RDONLY) = 20
read(20, "Node 0 MemTotal:       97286360 "..., 4095) = 1000
close(20)                               = 0
openat(19, "sys/bus/node/devices/node0/hugepages", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 4 entries */, 32768)    = 128
openat(19, "sys/bus/node/devices/node0/hugepages/hugepages-1048576kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
openat(19, "sys/bus/node/devices/node0/hugepages/hugepages-2048kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/bus/node/devices/node1/cpumap", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
newfstatat(19, "sys/bus/node/devices/node1/hugepages", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/node/devices/node1/meminfo", O_RDONLY) = 20
read(20, "Node 1 MemTotal:       99082372 "..., 4095) = 1000
close(20)                               = 0
openat(19, "sys/bus/node/devices/node1/hugepages", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 4 entries */, 32768)    = 128
openat(19, "sys/bus/node/devices/node1/hugepages/hugepages-1048576kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
openat(19, "sys/bus/node/devices/node1/hugepages/hugepages-2048kB/nr_hugepages", O_RDONLY) = 21
read(21, "0\n", 63)                     = 2
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/bus/node/devices/node0/distance", O_RDONLY) = 20
read(20, "10 21\n", 21)                 = 6
close(20)                               = 0
openat(19, "sys/bus/node/devices/node1/distance", O_RDONLY) = 20
read(20, "21 10\n", 21)                 = 6
close(20)                               = 0
faccessat(19, "sys/devices/system/cpu/cpu0/topology/core_cpus", R_OK) = 0
openat(19, "sys/bus/cpu/devices", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 98 entries */, 32768)   = 3040
openat(19, "sys/bus/cpu/devices/cpu0/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu0/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu1/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu1/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu2/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu2/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu3/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu3/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu4/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu4/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu5/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu5/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu6/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu6/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu7/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu7/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu8/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu8/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu9/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu9/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu10/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu10/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu11/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu11/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu12/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu12/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu13/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu13/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu14/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu14/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu15/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu15/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu16/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu16/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu17/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu17/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu18/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu18/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu19/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu19/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu20/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu20/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu21/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu21/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu22/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu22/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu23/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu23/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu24/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu24/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu25/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu25/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu26/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu26/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu27/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu27/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu28/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu28/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu29/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu29/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu30/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu30/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu31/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu31/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu32/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu32/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu33/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu33/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu34/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu34/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu35/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu35/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu36/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu36/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu37/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu37/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu38/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu38/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu39/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu39/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu40/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu40/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu41/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu41/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu42/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu42/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu43/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu43/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu44/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu44/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu45/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu45/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu46/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu46/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu47/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu47/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu48/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu48/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu49/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu49/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu50/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu50/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu51/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu51/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu52/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu52/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu53/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu53/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu54/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu54/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu55/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu55/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu56/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu56/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu57/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu57/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu58/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu58/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu59/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu59/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu60/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu60/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu61/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu61/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu62/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu62/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu63/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu63/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu64/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu64/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu65/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu65/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu66/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu66/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu67/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu67/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu68/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu68/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu69/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu69/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu70/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu70/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu71/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu71/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu72/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu72/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu73/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu73/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu74/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu74/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu75/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu75/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu76/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu76/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu77/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu77/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu78/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu78/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu79/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu79/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu80/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu80/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu81/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu81/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu82/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu82/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu83/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu83/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu84/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu84/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu85/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu85/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu86/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu86/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu87/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu87/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu88/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu88/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu89/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu89/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu90/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu90/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu91/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu91/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu92/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu92/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu93/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu93/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu94/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu94/topology", X_OK) = 0
openat(19, "sys/bus/cpu/devices/cpu95/online", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
faccessat(19, "sys/bus/cpu/devices/cpu95/topology", X_OK) = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/physical_package_id", O_RDONLY) = 20
read(20, "0\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/core_id", O_RDONLY) = 20
read(20, "0\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/level", O_RDONLY) = 20
read(20, "3\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/size", O_RDONLY) = 20
read(20, "36608K\n", 10)                = 7
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/number_of_sets", O_RDONLY) = 20
read(20, "53248\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index3/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu0/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu0/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/topology/core_id", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu1/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu1/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/topology/core_id", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu2/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu2/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/topology/core_id", O_RDONLY) = 20
read(20, "3\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu3/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu3/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/topology/core_id", O_RDONLY) = 20
read(20, "4\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu4/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu4/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/topology/core_id", O_RDONLY) = 20
read(20, "5\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu5/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu5/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/topology/core_id", O_RDONLY) = 20
read(20, "6\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu6/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu6/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/topology/core_id", O_RDONLY) = 20
read(20, "9\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu7/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu7/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/topology/core_id", O_RDONLY) = 20
read(20, "10\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu8/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu8/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/topology/core_id", O_RDONLY) = 20
read(20, "11\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu9/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu9/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/topology/core_id", O_RDONLY) = 20
read(20, "12\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu10/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu10/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/topology/core_id", O_RDONLY) = 20
read(20, "13\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu11/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu11/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/topology/core_id", O_RDONLY) = 20
read(20, "16\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu12/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu12/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/topology/core_id", O_RDONLY) = 20
read(20, "17\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu13/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu13/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/topology/core_id", O_RDONLY) = 20
read(20, "18\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu14/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu14/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/topology/core_id", O_RDONLY) = 20
read(20, "19\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu15/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu15/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/topology/core_cpus", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/topology/core_id", O_RDONLY) = 20
read(20, "20\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu16/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu16/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/topology/core_cpus", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/topology/core_id", O_RDONLY) = 20
read(20, "21\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu17/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu17/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/topology/core_cpus", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/topology/core_id", O_RDONLY) = 20
read(20, "24\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu18/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu18/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/topology/core_cpus", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/topology/core_id", O_RDONLY) = 20
read(20, "25\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu19/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu19/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/topology/core_cpus", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/topology/core_id", O_RDONLY) = 20
read(20, "26\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu20/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu20/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/topology/core_cpus", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/topology/core_id", O_RDONLY) = 20
read(20, "27\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu21/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu21/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/topology/core_cpus", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/topology/core_id", O_RDONLY) = 20
read(20, "28\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu22/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu22/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/topology/core_cpus", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/topology/core_id", O_RDONLY) = 20
read(20, "29\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu23/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu23/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/topology/physical_package_id", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/topology/core_cpus", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/topology/core_id", O_RDONLY) = 20
read(20, "0\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/level", O_RDONLY) = 20
read(20, "3\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/size", O_RDONLY) = 20
read(20, "36608K\n", 10)                = 7
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/number_of_sets", O_RDONLY) = 20
read(20, "53248\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index3/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu24/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu24/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/topology/core_cpus", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/topology/core_id", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu25/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu25/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/topology/core_cpus", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/topology/core_id", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu26/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu26/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/topology/core_cpus", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/topology/core_id", O_RDONLY) = 20
read(20, "3\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu27/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu27/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/topology/core_cpus", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/topology/core_id", O_RDONLY) = 20
read(20, "5\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu28/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu28/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/topology/core_cpus", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/topology/core_id", O_RDONLY) = 20
read(20, "6\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu29/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu29/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/topology/core_cpus", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/topology/core_id", O_RDONLY) = 20
read(20, "8\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu30/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu30/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/topology/core_cpus", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/topology/core_id", O_RDONLY) = 20
read(20, "9\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu31/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu31/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/topology/core_cpus", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/topology/core_id", O_RDONLY) = 20
read(20, "10\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu32/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu32/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/topology/core_cpus", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/topology/core_id", O_RDONLY) = 20
read(20, "11\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu33/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu33/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/topology/core_cpus", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/topology/core_id", O_RDONLY) = 20
read(20, "12\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu34/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu34/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/topology/core_cpus", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/topology/core_id", O_RDONLY) = 20
read(20, "13\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu35/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu35/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/topology/core_cpus", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/topology/core_id", O_RDONLY) = 20
read(20, "16\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu36/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu36/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/topology/core_cpus", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/topology/core_id", O_RDONLY) = 20
read(20, "17\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu37/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu37/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/topology/core_cpus", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/topology/core_id", O_RDONLY) = 20
read(20, "18\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu38/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu38/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/topology/core_cpus", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/topology/core_id", O_RDONLY) = 20
read(20, "19\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu39/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu39/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/topology/core_cpus", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/topology/core_id", O_RDONLY) = 20
read(20, "20\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/shared_cpu_map", O_RDONLY) = 20
brk(NULL)                               = 0x1053000
brk(0x1074000)                          = 0x1074000
read(20, "01000000,00000100,00000000\n", 4097) = 27
brk(NULL)                               = 0x1074000
brk(NULL)                               = 0x1074000
brk(0x1073000)                          = 0x1073000
brk(NULL)                               = 0x1073000
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu40/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu40/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/topology/core_cpus", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/topology/core_id", O_RDONLY) = 20
read(20, "21\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu41/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu41/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/topology/core_cpus", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/topology/core_id", O_RDONLY) = 20
read(20, "22\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu42/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu42/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/topology/core_cpus", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/topology/core_id", O_RDONLY) = 20
read(20, "25\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu43/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu43/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/topology/core_cpus", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/topology/core_id", O_RDONLY) = 20
read(20, "26\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu44/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu44/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/topology/core_cpus", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/topology/core_id", O_RDONLY) = 20
read(20, "27\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu45/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu45/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/topology/core_cpus", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/topology/core_id", O_RDONLY) = 20
read(20, "28\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu46/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu46/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/topology/core_cpus", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/topology/core_id", O_RDONLY) = 20
read(20, "29\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/type", O_RDONLY) = 20
read(20, "Data\n", 19)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index0/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/level", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/type", O_RDONLY) = 20
read(20, "Instruction\n", 19)           = 12
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/size", O_RDONLY) = 20
read(20, "32K\n", 10)                   = 4
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/number_of_sets", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index1/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/level", O_RDONLY) = 20
read(20, "2\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/type", O_RDONLY) = 20
read(20, "Unified\n", 19)               = 8
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/size", O_RDONLY) = 20
read(20, "1024K\n", 10)                 = 6
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/coherency_line_size", O_RDONLY) = 20
read(20, "64\n", 10)                    = 3
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/number_of_sets", O_RDONLY) = 20
read(20, "1024\n", 10)                  = 5
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index2/physical_line_partition", O_RDONLY) = 20
read(20, "1\n", 10)                     = 2
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu47/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu47/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00010000,00000001\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu48/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu48/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00020000,00000002\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu49/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu49/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00040000,00000004\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu50/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu50/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00080000,00000008\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu51/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu51/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00100000,00000010\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu52/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu52/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00200000,00000020\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu53/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu53/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00400000,00000040\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu54/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu54/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,00800000,00000080\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu55/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu55/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,01000000,00000100\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu56/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu56/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,02000000,00000200\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu57/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu57/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,04000000,00000400\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu58/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu58/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,08000000,00000800\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu59/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu59/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,10000000,00001000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu60/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu60/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,20000000,00002000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu61/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu61/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,40000000,00004000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu62/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu62/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/topology/core_cpus", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000000,80000000,00008000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu63/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu63/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/topology/core_cpus", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000001,00000000,00010000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu64/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu64/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/topology/core_cpus", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000002,00000000,00020000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu65/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu65/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/topology/core_cpus", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000004,00000000,00040000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu66/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu66/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/topology/core_cpus", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000008,00000000,00080000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu67/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu67/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/topology/core_cpus", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000010,00000000,00100000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu68/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu68/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/topology/core_cpus", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000020,00000000,00200000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu69/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu69/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/topology/core_cpus", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000040,00000000,00400000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu70/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu70/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/topology/die_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/topology/package_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/topology/core_cpus", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000080,00000000,00800000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu71/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu71/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/topology/core_cpus", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000100,00000000,01000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu72/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu72/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/topology/core_cpus", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000200,00000000,02000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu73/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu73/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/topology/core_cpus", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000400,00000000,04000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu74/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu74/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/topology/core_cpus", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00000800,00000000,08000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu75/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu75/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/topology/core_cpus", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00001000,00000000,10000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu76/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu76/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/topology/core_cpus", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00002000,00000000,20000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu77/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu77/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/topology/core_cpus", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00004000,00000000,40000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu78/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu78/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/topology/core_cpus", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00008000,00000000,80000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu79/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu79/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/topology/core_cpus", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00010000,00000001,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu80/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu80/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/topology/core_cpus", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00020000,00000002,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu81/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu81/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/topology/core_cpus", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00040000,00000004,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu82/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu82/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/topology/core_cpus", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00080000,00000008,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu83/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu83/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/topology/core_cpus", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00100000,00000010,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu84/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu84/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/topology/core_cpus", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00200000,00000020,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu85/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu85/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/topology/core_cpus", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00400000,00000040,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu86/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu86/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/topology/core_cpus", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "00800000,00000080,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu87/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu87/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/topology/core_cpus", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "01000000,00000100,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu88/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu88/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/topology/core_cpus", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "02000000,00000200,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu89/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu89/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/topology/core_cpus", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "04000000,00000400,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu90/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu90/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/topology/core_cpus", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "08000000,00000800,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu91/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu91/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/topology/core_cpus", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "10000000,00001000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu92/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu92/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/topology/core_cpus", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "20000000,00002000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu93/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu93/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/topology/core_cpus", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "40000000,00004000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu94/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu94/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/topology/die_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/topology/package_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/topology/core_cpus", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/topology/book_siblings", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index0/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/cache/index1/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/cache/index2/shared_cpu_map", O_RDONLY) = 20
read(20, "80000000,00008000,00000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/cache/index3/shared_cpu_map", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/cpu/devices/cpu95/cache/index4/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index5/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index6/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index7/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index8/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/cpu/devices/cpu95/cache/index9/shared_cpu_map", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/devices/virtual/dmi/id", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/product_name", O_RDONLY) = 20
read(20, "2288H V5\n", 63)              = 9
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/product_version", O_RDONLY) = 20
read(20, "Purley\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/product_serial", O_RDONLY) = -1 EACCES (Permission denied)
openat(19, "sys/devices/virtual/dmi/id/product_uuid", O_RDONLY) = -1 EACCES (Permission denied)
openat(19, "sys/devices/virtual/dmi/id/board_vendor", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/board_name", O_RDONLY) = 20
read(20, "BC11SPSCA0\n", 63)            = 11
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/board_version", O_RDONLY) = 20
read(20, "V100R005\n", 63)              = 9
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/board_serial", O_RDONLY) = -1 EACCES (Permission denied)
openat(19, "sys/devices/virtual/dmi/id/board_asset_tag", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/chassis_vendor", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/chassis_type", O_RDONLY) = 20
read(20, "17\n", 63)                    = 3
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/chassis_version", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/chassis_serial", O_RDONLY) = -1 EACCES (Permission denied)
openat(19, "sys/devices/virtual/dmi/id/chassis_asset_tag", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/bios_vendor", O_RDONLY) = 20
read(20, "INSYDE Corp.\n", 63)          = 13
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/bios_version", O_RDONLY) = 20
read(20, "7.79\n", 63)                  = 5
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/bios_date", O_RDONLY) = 20
read(20, "10/20/2020\n", 63)            = 11
close(20)                               = 0
openat(19, "sys/devices/virtual/dmi/id/sys_vendor", O_RDONLY) = 20
read(20, "Huawei\n", 63)                = 7
close(20)                               = 0
openat(19, "sys/firmware/dmi/entries/17-0/raw", O_RDONLY) = -1 EACCES (Permission denied)
openat(19, "proc/elog", O_RDONLY)       = -1 ENOENT (No such file or directory)
open("/sys/devices/system/cpu/possible", O_RDONLY) = 20
read(20, "0-95\n", 4097)                = 5
close(20)                               = 0
sched_getaffinity(0, 16, [0, 48])       = 16
sched_getaffinity(0, 16, [0, 48])       = 16
sched_getaffinity(74127, 128, [0, 48])  = 128
sched_setaffinity(0, 8, [0])            = 0
sched_setaffinity(0, 8, [1])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [2])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [3])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [4])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [5])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [6])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [7])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [8])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [9])            = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [10])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [11])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [12])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [13])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [14])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [15])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [16])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [17])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [18])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [19])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [20])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [21])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [22])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [23])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [24])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [25])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [26])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [27])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [28])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [29])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [30])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [31])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [32])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [33])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [34])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [35])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [36])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [37])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [38])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [39])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [40])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [41])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [42])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [43])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [44])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [45])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [46])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [47])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [48])           = 0
sched_setaffinity(0, 8, [49])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [50])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [51])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [52])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [53])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [54])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [55])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [56])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [57])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [58])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [59])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [60])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [61])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [62])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [63])           = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [64])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [65])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [66])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [67])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [68])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [69])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [70])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [71])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [72])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [73])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [74])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [75])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [76])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [77])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [78])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [79])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [80])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [81])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [82])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [83])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [84])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [85])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [86])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [87])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [88])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [89])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [90])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [91])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [92])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [93])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [94])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 16, [95])          = -1 EINVAL (Invalid argument)
sched_setaffinity(0, 8, [0, 48])        = 0
brk(NULL)                               = 0x1073000
brk(0x1094000)                          = 0x1094000
stat("/sys/bus/pci/devices", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/proc/mtrr", O_WRONLY|O_CLOEXEC)  = -1 EACCES (Permission denied)
openat(AT_FDCWD, "/sys/bus/pci/devices", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
getdents(20, /* 305 entries */, 32768)  = 9744
getdents(20, /* 0 entries */, 32768)    = 0
open("/proc/meminfo", O_RDONLY|O_CLOEXEC) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "MemTotal:       196368740 kB\nMem"..., 1024) = 1024
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
close(20)                               = 0
brk(NULL)                               = 0x1094000
brk(0x10c8000)                          = 0x10c8000
open("/sys/bus/pci/devices/0000:00:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2020\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200  @\5\20\0\7\0\0\6\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2024\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2025\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2026\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\320@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2014\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2015\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2016\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1ec\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xff0000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\354\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1ed\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xff0000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\355\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1d2\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x010601\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\322\241\7\4\260\2\t\1\6\1\0\0\200\0\0`@\226\0\300@\226i\20\0\0u\20\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1af\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0c0330\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\257\241F\5\220\2\t0\3\f\0\0\200\0\4\0\360\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1b1\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x118000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\261\241\6\0\20\0\t\0\200\21\0\0\0\0\4 \363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1ba\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x078000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\272\241\6\4\20\0\t\0\200\7\0\0\200\0\4\260@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1bb\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x078000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\273\241\6\0\20\0\t\0\200\7\0\0\200\0\4\240@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1be\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x078000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\276\241\6\0\20\0\t\0\200\7\0\0\200\0\4\20\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa182\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x010601\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202\241\7\4\260\2\t\1\6\1\0\0\0\0\0@@\226\0\220@\226a\20\0\0q\20\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa190\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\220\241\7\4\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\1\1\0  \0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa194\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\224\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\2\2\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa195\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\225\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\3\3\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1c2\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\302\241\7\0\0\2\t\0\1\6\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1a1\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x058000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\241\241\6\0\0\0\t\0\200\5\0\0\200\0\0\0@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1a3\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0c0500\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\243\241\3\0\200\2\t\0\5\f\0\0\0\0\4\0\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0xa1a4\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0c8000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\244\241\6\4\0\0\t\0\200\f\0\0\200\0\0\0\1\376\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x19e5\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x1711\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x030000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:02:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\21\27G\1\20\0\1\0\0\3\20\0\0\0\10\0\0\224\0\0\0\226\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x19e5\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x1710\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x118000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:03:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\20\27F\1\20\0\1\0\200\21\20\0\0\0\10\0\0\220\0\0 \226\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2030\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\27\30\33\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\300\235\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2054\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2055\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2056\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2057\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2080\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2081\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2082\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2083\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2084\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2085\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37c0\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:18:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3007G\1\20\0\t\0\4\6\10\0\1\0\4\0\260\235\0\0\0\0\30\31\33\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37c5\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:19:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3057G\1\20\0\t\0\4\6\10\0\1\0\0\0\0\0\0\0\0\0\31\32\33\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37d2\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x020000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:1a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\375\37\r\0\0\0\0\0\0\f\200\1\377"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37d2\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x020000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:1a:00.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\374\37\r\0\0\0\0\0\0\f\0\1\377"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37d1\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x020000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:1a:00.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\373\37\r\0\0\0\0\0\0\f\200\0\377"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x37d1\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x020000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:1a:00.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\372\37\r\0\0\0\0\0\0\f\0\0\377"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2030\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0:;;\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\20\253\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2066\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2066\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2040\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2041\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2042\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2043\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2044\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2045\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2046\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2047\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2048\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2049\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204a\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204b\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2040\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2041\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2042\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2043\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2044\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2045\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2046\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2047\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2048\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2049\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204a\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204b\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3a:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x15b3\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x101b\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x020700\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:3b:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\263\25\33\20F\5\20\0\0\0\7\2\10\0\0\0\f\0\0\376/\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\270\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204c\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204c\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2021\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2024\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2025\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2026\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\306\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2014\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2015\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2016\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\323\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x208e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2054\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2055\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2056\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2057\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2080\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2081\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2082\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2083\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2084\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2085\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\341\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2066\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2066\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2040\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2041\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2042\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2043\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2044\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2045\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2046\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2047\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2048\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2049\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204a\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204b\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2040\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2041\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2042\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2043\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2044\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2045\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2046\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2047\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2048\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2049\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204a\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204b\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2030\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\330\330\0\360\0\0 "..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2031\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:01.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2001 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\331\331\0\360\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2032\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:02.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2002 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\332\332\0\340\340\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2033\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x060400\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2003 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\333\333\0\320\320\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2034\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2035\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2036\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x080020\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\357\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2058\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2059\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204c\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204e\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204c\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x204d\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2018\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x088000\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x2088\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x110100\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/vendor", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x8086\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/device", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0a54\n", 512)               = 7
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/class", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x010802\n", 512)             = 9
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/revision", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d8:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T\nF\5\20\0\0\2\10\1\10\0\0\0\4\0\341\356\0\0\0\0\0\0\0\0\0\0\0\0"..., 48, 0) = 48
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200  @\5\20\0\7\0\0\6\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200  @\5\20\0\7\0\0\6\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
read(20, "lash Recovery]\n\t020b  MT27710 Fa"..., 1024) = 1024
read(20, "trum-2, Secure Flash recovery mo"..., 1024) = 1024
read(20, "R Dual Port Mezzanine Card\n\t\t15b"..., 1024) = 1024
read(20, "\n\t\t103c 22f4  InfiniBand FDR/Eth"..., 1024) = 1024
read(20, "and-up single-port 40GbE MCX415A"..., 1024) = 1024
read(20, "G\n\t\t15b3 0025  ConnectX-4 Lx 25 "..., 1024) = 1024
read(20, "Family [ConnectX-6 Lx]\n\t1020  MT"..., 1024) = 1024
read(20, "iniHost III Ex]\n\t6340  MT25408A0"..., 1024) = 1024
read(20, " IB/Flex-10 10Gb Adapter\n\t\t103c "..., 1024) = 1024
read(20, "pto disabled\n\ta2d2  MT416842 Blu"..., 1024) = 1024
read(20, "6c  MT53100 [Spectrum-2]\n\tcf70  "..., 1024) = 1024
read(20, "w/ opto coupler)\n\t1004  APCI2032"..., 1024) = 1024
read(20, "bd  DFI Inc\n15be  Sola Electroni"..., 1024) = 1024
read(20, "acheflow Inc\n15e1  Voice Technol"..., 1024) = 1024
read(20, "mman - Canada Ltd\n1601  Tenta Te"..., 1024) = 1024
read(20, "rSync T4U (4 port X.21/V.35/V.24"..., 1024) = 1024
read(20, "tor and FEC\n1631  Packard Bell B"..., 1024) = 1024
read(20, "bps CNA - LL\n\t\t1657 0024  16Gbps"..., 1024) = 1024
read(20, "roceIII110\n\t5a21  ProceIII150\n\t5"..., 1024) = 1024
read(20, "  Actiontec Electronics Inc\n\t010"..., 1024) = 1024
read(20, "astleNet Technology Inc.\n\t1170  "..., 1024) = 1024
read(20, "11g Wireless CardBus Adapter\n\t\t0"..., 1024) = 1024
read(20, "eless 801.11g PCI card\n\t\t1186 3a"..., 1024) = 1024
read(20, "4b9 cb21  CB21 802.11a/b/g Cardb"..., 1024) = 1024
read(20, "p Card\n\t\t1799 3010  F6D3010 Dual"..., 1024) = 1024
read(20, " 802.11 b/g  MiniPCI Adapter, Re"..., 1024) = 1024
read(20, "062  IPN-W100CB 802.11abg Wirele"..., 1024) = 1024
read(20, "  AR242x 802.11abg NIC (PCI Expr"..., 1024) = 1024
read(20, " Wireless CardBus Adapter\n\t\t1154"..., 1024) = 1024
read(20, "ini PCI Adapter\n\t0029  AR922X Wi"..., 1024) = 1024
read(20, "\t\t1a32 0306  EM306 802.11bgn Wir"..., 1024) = 1024
read(20, "AW-NE785 / AW-NE785H 802.11bgn W"..., 1024) = 1024
read(20, "e card on a series 3 laptop\n\t\t1a"..., 1024) = 1024
read(20, "twork Adapter\n\t0050  QCA9887 802"..., 1024) = 1024
read(20, "sed vendor ID 0001\n\t\t0001 0001  "..., 1024) = 1024
read(20, "es\n16ce  Roland Corp.\n16d5  Acro"..., 1024) = 1024
read(20, " Reconfigurable Conduction-Coole"..., 1024) = 1024
read(20, "le & Hold\n\t4d4e  PMC482, APC482,"..., 1024) = 1024
read(20, "figurable Spartan-6 FPGA with pl"..., 1024) = 1024
read(20, "c cells, conduction-cooled\n\t7006"..., 1024) = 1024
read(20, "rtix-7 FPGA module 48 TTL channe"..., 1024) = 1024
read(20, "le 24 RS485 channels\n\t7053  APA7"..., 1024) = 1024
read(20, "irst, Inc.\n170b  NetOctave\n\t0100"..., 1024) = 1024
read(20, "9  ROL/F-100 Fast Ethernet Adapt"..., 1024) = 1024
read(20, " isolated\n\t0243  PCA7428CS_F1 - "..., 1024) = 1024
read(20, " III CN78XX Network Processor\n\t0"..., 1024) = 1024
read(20, "04  CN2350 [LiquidIO II] 2-port "..., 1024) = 1024
read(20, "NDERX Key Memory\n\ta017  THUNDERX"..., 1024) = 1024
read(20, "-CBC\n\ta030  THUNDERX L2C-MCI\n\ta0"..., 1024) = 1024
read(20, "ith N110 TDC\n\t000b  double 14bit"..., 1024) = 1024
read(20, " controller\n# port 5 of 8\n\t6814 "..., 1024) = 1024
read(20, "y Module\n17a0  Genesys Logic, In"..., 1024) = 1024
read(20, "4 v1 802.11g Wireless-G Notebook"..., 1024) = 1024
read(20, "17d3 1284  ARC-1284 24 Port PCIe"..., 1024) = 1024
read(20, "t PCIe 2.0 to SAS/SATA 6Gb RAID "..., 1024) = 1024
read(20, "rt 10-Gigabit Ethernet (PCI-X, F"..., 1024) = 1024
read(20, "\n17df  Dini Group\n\t1864  Virtex4"..., 1024) = 1024
read(20, "0a  Virtex7 PCIe ASIC Emulation "..., 1024) = 1024
read(20, " Design [DNPCIe_K7_10G_LL]\n\t1a05"..., 1024) = 1024
read(20, "27  EN2710 [c.Link] MoCA 2.0 Net"..., 1024) = 1024
read(20, "idge\n\t6021  R6021 Host Bridge\n# "..., 1024) = 1024
read(20, "bient Technologies Inc\n\t4000  Ha"..., 1024) = 1024
read(20, " Wireless Network PCI Adapter\n\t\t"..., 1024) = 1024
read(20, "r\n\t\t1948 3c24  C54Ri v2 Wireless"..., 1024) = 1024
read(20, "R PCIe\n\t\t103c 18ec  Ralink RT329"..., 1024) = 1024
read(20, "ISDN card\n\t3069  ISDN PCI DC-105"..., 1024) = 1024
read(20, " MT23108 InfiniHost HCA flash re"..., 1024) = 1024
read(20, "ort Serial\n\t4208  MIport 3PCIU8 "..., 1024) = 1024
read(20, "3XT/V5/V8\n\t0047  Volari 8300 (ch"..., 1024) = 1024
read(20, "18ec 0302  NIFIC (szedata2) 2x10"..., 1024) = 1024
read(20, "\t0064  NT20E Inline Card\n\t0071  "..., 1024) = 1024
read(20, "exsis] Switch Virtual P2P PCIe B"..., 1024) = 1024
read(20, "re UARTs\n\t0019  SuperFSCC Serial"..., 1024) = 1024
read(20, "05  Micronas USA, Inc.\n1912  Ren"..., 1024) = 1024
read(20, "m]\n\t\t10b8 0103  SMC10GPCIe-10BT "..., 1024) = 1024
read(20, "\n\t\t1924 6206  SFN5122F-R6 SFP+ S"..., 1024) = 1024
read(20, "Adapter\n\t\t1924 6103  SFN5121T-R3"..., 1024) = 1024
read(20, "ra 7000 Series 10/40G Adapter\n\t\t"..., 1024) = 1024
read(20, "  XtremeScale X2562 OCP 3.0 Dual"..., 1024) = 1024
read(20, "FE4002-A1\n\t\t1924 0301  SFE4003-A"..., 1024) = 1024
read(20, "T (fallback firmware)\n# nee Curt"..., 1024) = 1024
read(20, "022E\n\t0111  P1022\n\t\t1c7f 5200  E"..., 1024) = 1024
read(20, "r\n\ta00b  PWRficient SERDES\n\ta00c"..., 1024) = 1024
read(20, "468  Eee PC 1015PX\n# E2200, E220"..., 1024) = 1024
read(20, "43 81e4  P5B [JMB363]\n\t\t1458 b00"..., 1024) = 1024
read(20, "cessor\n199a  Pulse-LINK, Inc.\n19"..., 1024) = 1024
read(20, "10102-FM-E / OCe10102-FX-E for E"..., 1024) = 1024
read(20, "b  NC554FLB 10Gb 2-port FlexFabr"..., 1024) = 1024
read(20, "00C V3 3200GB HHHL AIC\n\t0200  Hi"..., 1024) = 1024
read(20, "ligent Management system chip w/"..., 1024) = 1024
read(20, "er (Virtual Function)\n\ta22f  HNS"..., 1024) = 1024
read(20, "  CAN interface PC104+ HS/HS\n\t00"..., 1024) = 1024
read(20, "ction\n\t2000  TILE-Gx PCI Express"..., 1024) = 1024
read(20, "a77  Lightfleet Corporation\n1a78"..., 1024) = 1024
read(20, "eroflex Gaisler\n1acc  Point of V"..., 1024) = 1024
read(20, "h card reader controller\n1aec  W"..., 1024) = 1024
read(20, "ilesystem\n# virtio 1.0\n\t1050  Vi"..., 1024) = 1024
read(20, "6  Netcope Technologies, a.s.\n\tc"..., 1024) = 1024
read(20, "\n\t000f  ADQDSP\n\t0014  ADQ412\n\t00"..., 1024) = 1024
read(20, "SATA 6Gb/s Controller\n\t9178  88S"..., 1024) = 1024
read(20, "6  DELTACAST\n\t0007  DELTA-3G-elp"..., 1024) = 1024
read(20, "s Corp.\n1baa  QNAP Systems, Inc."..., 1024) = 1024
read(20, "000\n# Kiowa M.2\n\t\t1bb1 0125  Nyt"..., 1024) = 1024
read(20, "io encoder / decoder\n1bb5  Quant"..., 1024) = 1024
read(20, "etwork Adapter\n\t4263  10G-PCIE3-"..., 1024) = 1024
read(20, " [Corfu]\n\ta000  FBC2CGG3 Capture"..., 1024) = 1024
read(20, "04f5  PCIe3 1.6TB NVMe Flash Ada"..., 1024) = 1024
read(20, "ation\n\t0001  Hunter PCI Express\n"..., 1024) = 1024
read(20, "actPCI Serial CAN-1 card\n# suppo"..., 1024) = 1024
read(20, "ress Root Port\n\t0713  ZX-100/ZX-"..., 1024) = 1024
read(20, "D Standard Host Bridge\n\t31b2  ZX"..., 1024) = 1024
read(20, "ler\n\t9286  ZX-D eMMC Host Contro"..., 1024) = 1024
read(20, " AQC107 NBase-T/IEEE 802.3bz Eth"..., 1024) = 1024
read(20, "l]\n\t1010  AR-ARKA-FX1 [Arkville "..., 1024) = 1024
read(20, "net Controller Port 2/Port3\n\t145"..., 1024) = 1024
read(20, "[Goya]\n# PCIe accelerator card f"..., 1024) = 1024
read(20, "ller VF\n\t\t1dd8 4000  Naples 100G"..., 1024) = 1024
read(20, " 1\n\te007  eMAG PCI Express Root "..., 1024) = 1024
read(20, "Acorn CLE-215+\n\t1525  Xilinx BCU"..., 1024) = 1024
read(20, " SmartNIC\n\t3010  10-Giga TOE Sma"..., 1024) = 1024
read(20, " TOE Dual Port SFP+/CX4 Low Prof"..., 1024) = 1024
read(20, "se-T/NBASE-T Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "1.1 controller\n2a15  3D Vision(?"..., 1024) = 1024
read(20, "ipset CPU to PCI Bridge\n\t8012  V"..., 1024) = 1024
read(20, "\t3d3d 0116  Oxygen GVX1\n\t\t3d3d 0"..., 1024) = 1024
read(20, "0  ALS4000 Audio Chipset\n\t4710  "..., 1024) = 1024
read(20, "ort 10GbE Server Adapter\n\t\t152d "..., 1024) = 1024
read(20, "0 0003  WinTV PVR 250\n\t\t0070 000"..., 1024) = 1024
read(20, "CI Analog TV (NTSC+FM, Philips F"..., 1024) = 1024
read(20, " AVerTV Video Capture (NTSC-J, P"..., 1024) = 1024
read(20, "ric Company\n4624  Budker Institu"..., 1024) = 1024
read(20, "rd\n\t0c60  PCI-DIO-48H 8255 Digit"..., 1024) = 1024
read(20, "\t0f00  PCI-IIRO-8 Isolated Digit"..., 1024) = 1024
read(20, "\n\t1069  PCI-COM485/8 8x RS485 Ca"..., 1024) = 1024
read(20, "10dc  mPCIe-COM-4SM 4x RS232/RS4"..., 1024) = 1024
read(20, "SM 2x Isolated RS232/RS422/RS485"..., 1024) = 1024
read(20, "og Input w/FIFO Card\n\teca8  PCI-"..., 1024) = 1024
read(20, "rabber\n\t0030  [mvHYPERION-HD-SDI"..., 1024) = 1024
read(20, "\n\t0b04  BU-65569I4 MIL-STD-1553 "..., 1024) = 1024
read(20, "M] vers 1\n\t8882  86c868 [Vision "..., 1024) = 1024
read(20, "333 8904  86C365 Trio3D AGP\n\t890"..., 1024) = 1024
read(20, "\t1092 480e  Stealth III S540\n\t\t1"..., 1024) = 1024
read(20, "\n\t8c22  SuperSavage MX/128\n\t8c24"..., 1024) = 1024
read(20, "chnologies\n\t6178  DVB Tuner PCIe"..., 1024) = 1024
read(20, "de HID events.\n\tc110  Virtualize"..., 1024) = 1024
read(20, "nc.\n7063  pcHDTV\n\t2000  HD-2000\n"..., 1024) = 1024
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
read(20, "lash Recovery]\n\t020b  MT27710 Fa"..., 1024) = 1024
read(20, "trum-2, Secure Flash recovery mo"..., 1024) = 1024
read(20, "R Dual Port Mezzanine Card\n\t\t15b"..., 1024) = 1024
read(20, "\n\t\t103c 22f4  InfiniBand FDR/Eth"..., 1024) = 1024
read(20, "and-up single-port 40GbE MCX415A"..., 1024) = 1024
read(20, "G\n\t\t15b3 0025  ConnectX-4 Lx 25 "..., 1024) = 1024
read(20, "Family [ConnectX-6 Lx]\n\t1020  MT"..., 1024) = 1024
read(20, "iniHost III Ex]\n\t6340  MT25408A0"..., 1024) = 1024
read(20, " IB/Flex-10 10Gb Adapter\n\t\t103c "..., 1024) = 1024
read(20, "pto disabled\n\ta2d2  MT416842 Blu"..., 1024) = 1024
read(20, "6c  MT53100 [Spectrum-2]\n\tcf70  "..., 1024) = 1024
read(20, "w/ opto coupler)\n\t1004  APCI2032"..., 1024) = 1024
read(20, "bd  DFI Inc\n15be  Sola Electroni"..., 1024) = 1024
read(20, "acheflow Inc\n15e1  Voice Technol"..., 1024) = 1024
read(20, "mman - Canada Ltd\n1601  Tenta Te"..., 1024) = 1024
read(20, "rSync T4U (4 port X.21/V.35/V.24"..., 1024) = 1024
read(20, "tor and FEC\n1631  Packard Bell B"..., 1024) = 1024
read(20, "bps CNA - LL\n\t\t1657 0024  16Gbps"..., 1024) = 1024
read(20, "roceIII110\n\t5a21  ProceIII150\n\t5"..., 1024) = 1024
read(20, "  Actiontec Electronics Inc\n\t010"..., 1024) = 1024
read(20, "astleNet Technology Inc.\n\t1170  "..., 1024) = 1024
read(20, "11g Wireless CardBus Adapter\n\t\t0"..., 1024) = 1024
read(20, "eless 801.11g PCI card\n\t\t1186 3a"..., 1024) = 1024
read(20, "4b9 cb21  CB21 802.11a/b/g Cardb"..., 1024) = 1024
read(20, "p Card\n\t\t1799 3010  F6D3010 Dual"..., 1024) = 1024
read(20, " 802.11 b/g  MiniPCI Adapter, Re"..., 1024) = 1024
read(20, "062  IPN-W100CB 802.11abg Wirele"..., 1024) = 1024
read(20, "  AR242x 802.11abg NIC (PCI Expr"..., 1024) = 1024
read(20, " Wireless CardBus Adapter\n\t\t1154"..., 1024) = 1024
read(20, "ini PCI Adapter\n\t0029  AR922X Wi"..., 1024) = 1024
read(20, "\t\t1a32 0306  EM306 802.11bgn Wir"..., 1024) = 1024
read(20, "AW-NE785 / AW-NE785H 802.11bgn W"..., 1024) = 1024
read(20, "e card on a series 3 laptop\n\t\t1a"..., 1024) = 1024
read(20, "twork Adapter\n\t0050  QCA9887 802"..., 1024) = 1024
read(20, "sed vendor ID 0001\n\t\t0001 0001  "..., 1024) = 1024
read(20, "es\n16ce  Roland Corp.\n16d5  Acro"..., 1024) = 1024
read(20, " Reconfigurable Conduction-Coole"..., 1024) = 1024
read(20, "le & Hold\n\t4d4e  PMC482, APC482,"..., 1024) = 1024
read(20, "figurable Spartan-6 FPGA with pl"..., 1024) = 1024
read(20, "c cells, conduction-cooled\n\t7006"..., 1024) = 1024
read(20, "rtix-7 FPGA module 48 TTL channe"..., 1024) = 1024
read(20, "le 24 RS485 channels\n\t7053  APA7"..., 1024) = 1024
read(20, "irst, Inc.\n170b  NetOctave\n\t0100"..., 1024) = 1024
read(20, "9  ROL/F-100 Fast Ethernet Adapt"..., 1024) = 1024
read(20, " isolated\n\t0243  PCA7428CS_F1 - "..., 1024) = 1024
read(20, " III CN78XX Network Processor\n\t0"..., 1024) = 1024
read(20, "04  CN2350 [LiquidIO II] 2-port "..., 1024) = 1024
read(20, "NDERX Key Memory\n\ta017  THUNDERX"..., 1024) = 1024
read(20, "-CBC\n\ta030  THUNDERX L2C-MCI\n\ta0"..., 1024) = 1024
read(20, "ith N110 TDC\n\t000b  double 14bit"..., 1024) = 1024
read(20, " controller\n# port 5 of 8\n\t6814 "..., 1024) = 1024
read(20, "y Module\n17a0  Genesys Logic, In"..., 1024) = 1024
read(20, "4 v1 802.11g Wireless-G Notebook"..., 1024) = 1024
read(20, "17d3 1284  ARC-1284 24 Port PCIe"..., 1024) = 1024
read(20, "t PCIe 2.0 to SAS/SATA 6Gb RAID "..., 1024) = 1024
read(20, "rt 10-Gigabit Ethernet (PCI-X, F"..., 1024) = 1024
read(20, "\n17df  Dini Group\n\t1864  Virtex4"..., 1024) = 1024
read(20, "0a  Virtex7 PCIe ASIC Emulation "..., 1024) = 1024
read(20, " Design [DNPCIe_K7_10G_LL]\n\t1a05"..., 1024) = 1024
read(20, "27  EN2710 [c.Link] MoCA 2.0 Net"..., 1024) = 1024
read(20, "idge\n\t6021  R6021 Host Bridge\n# "..., 1024) = 1024
read(20, "bient Technologies Inc\n\t4000  Ha"..., 1024) = 1024
read(20, " Wireless Network PCI Adapter\n\t\t"..., 1024) = 1024
read(20, "r\n\t\t1948 3c24  C54Ri v2 Wireless"..., 1024) = 1024
read(20, "R PCIe\n\t\t103c 18ec  Ralink RT329"..., 1024) = 1024
read(20, "ISDN card\n\t3069  ISDN PCI DC-105"..., 1024) = 1024
read(20, " MT23108 InfiniHost HCA flash re"..., 1024) = 1024
read(20, "ort Serial\n\t4208  MIport 3PCIU8 "..., 1024) = 1024
read(20, "3XT/V5/V8\n\t0047  Volari 8300 (ch"..., 1024) = 1024
read(20, "18ec 0302  NIFIC (szedata2) 2x10"..., 1024) = 1024
read(20, "\t0064  NT20E Inline Card\n\t0071  "..., 1024) = 1024
read(20, "exsis] Switch Virtual P2P PCIe B"..., 1024) = 1024
read(20, "re UARTs\n\t0019  SuperFSCC Serial"..., 1024) = 1024
read(20, "05  Micronas USA, Inc.\n1912  Ren"..., 1024) = 1024
read(20, "m]\n\t\t10b8 0103  SMC10GPCIe-10BT "..., 1024) = 1024
read(20, "\n\t\t1924 6206  SFN5122F-R6 SFP+ S"..., 1024) = 1024
read(20, "Adapter\n\t\t1924 6103  SFN5121T-R3"..., 1024) = 1024
read(20, "ra 7000 Series 10/40G Adapter\n\t\t"..., 1024) = 1024
read(20, "  XtremeScale X2562 OCP 3.0 Dual"..., 1024) = 1024
read(20, "FE4002-A1\n\t\t1924 0301  SFE4003-A"..., 1024) = 1024
read(20, "T (fallback firmware)\n# nee Curt"..., 1024) = 1024
read(20, "022E\n\t0111  P1022\n\t\t1c7f 5200  E"..., 1024) = 1024
read(20, "r\n\ta00b  PWRficient SERDES\n\ta00c"..., 1024) = 1024
read(20, "468  Eee PC 1015PX\n# E2200, E220"..., 1024) = 1024
read(20, "43 81e4  P5B [JMB363]\n\t\t1458 b00"..., 1024) = 1024
read(20, "cessor\n199a  Pulse-LINK, Inc.\n19"..., 1024) = 1024
read(20, "10102-FM-E / OCe10102-FX-E for E"..., 1024) = 1024
read(20, "b  NC554FLB 10Gb 2-port FlexFabr"..., 1024) = 1024
read(20, "00C V3 3200GB HHHL AIC\n\t0200  Hi"..., 1024) = 1024
read(20, "ligent Management system chip w/"..., 1024) = 1024
read(20, "er (Virtual Function)\n\ta22f  HNS"..., 1024) = 1024
read(20, "  CAN interface PC104+ HS/HS\n\t00"..., 1024) = 1024
read(20, "ction\n\t2000  TILE-Gx PCI Express"..., 1024) = 1024
read(20, "a77  Lightfleet Corporation\n1a78"..., 1024) = 1024
read(20, "eroflex Gaisler\n1acc  Point of V"..., 1024) = 1024
read(20, "h card reader controller\n1aec  W"..., 1024) = 1024
read(20, "ilesystem\n# virtio 1.0\n\t1050  Vi"..., 1024) = 1024
read(20, "6  Netcope Technologies, a.s.\n\tc"..., 1024) = 1024
read(20, "\n\t000f  ADQDSP\n\t0014  ADQ412\n\t00"..., 1024) = 1024
read(20, "SATA 6Gb/s Controller\n\t9178  88S"..., 1024) = 1024
read(20, "6  DELTACAST\n\t0007  DELTA-3G-elp"..., 1024) = 1024
read(20, "s Corp.\n1baa  QNAP Systems, Inc."..., 1024) = 1024
read(20, "000\n# Kiowa M.2\n\t\t1bb1 0125  Nyt"..., 1024) = 1024
read(20, "io encoder / decoder\n1bb5  Quant"..., 1024) = 1024
read(20, "etwork Adapter\n\t4263  10G-PCIE3-"..., 1024) = 1024
read(20, " [Corfu]\n\ta000  FBC2CGG3 Capture"..., 1024) = 1024
read(20, "04f5  PCIe3 1.6TB NVMe Flash Ada"..., 1024) = 1024
read(20, "ation\n\t0001  Hunter PCI Express\n"..., 1024) = 1024
read(20, "actPCI Serial CAN-1 card\n# suppo"..., 1024) = 1024
read(20, "ress Root Port\n\t0713  ZX-100/ZX-"..., 1024) = 1024
read(20, "D Standard Host Bridge\n\t31b2  ZX"..., 1024) = 1024
read(20, "ler\n\t9286  ZX-D eMMC Host Contro"..., 1024) = 1024
read(20, " AQC107 NBase-T/IEEE 802.3bz Eth"..., 1024) = 1024
read(20, "l]\n\t1010  AR-ARKA-FX1 [Arkville "..., 1024) = 1024
read(20, "net Controller Port 2/Port3\n\t145"..., 1024) = 1024
read(20, "[Goya]\n# PCIe accelerator card f"..., 1024) = 1024
read(20, "ller VF\n\t\t1dd8 4000  Naples 100G"..., 1024) = 1024
read(20, " 1\n\te007  eMAG PCI Express Root "..., 1024) = 1024
read(20, "Acorn CLE-215+\n\t1525  Xilinx BCU"..., 1024) = 1024
read(20, " SmartNIC\n\t3010  10-Giga TOE Sma"..., 1024) = 1024
read(20, " TOE Dual Port SFP+/CX4 Low Prof"..., 1024) = 1024
read(20, "se-T/NBASE-T Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "1.1 controller\n2a15  3D Vision(?"..., 1024) = 1024
read(20, "ipset CPU to PCI Bridge\n\t8012  V"..., 1024) = 1024
read(20, "\t3d3d 0116  Oxygen GVX1\n\t\t3d3d 0"..., 1024) = 1024
read(20, "0  ALS4000 Audio Chipset\n\t4710  "..., 1024) = 1024
read(20, "ort 10GbE Server Adapter\n\t\t152d "..., 1024) = 1024
read(20, "0 0003  WinTV PVR 250\n\t\t0070 000"..., 1024) = 1024
read(20, "CI Analog TV (NTSC+FM, Philips F"..., 1024) = 1024
read(20, " AVerTV Video Capture (NTSC-J, P"..., 1024) = 1024
read(20, "ric Company\n4624  Budker Institu"..., 1024) = 1024
read(20, "rd\n\t0c60  PCI-DIO-48H 8255 Digit"..., 1024) = 1024
read(20, "\t0f00  PCI-IIRO-8 Isolated Digit"..., 1024) = 1024
read(20, "\n\t1069  PCI-COM485/8 8x RS485 Ca"..., 1024) = 1024
read(20, "10dc  mPCIe-COM-4SM 4x RS232/RS4"..., 1024) = 1024
read(20, "SM 2x Isolated RS232/RS422/RS485"..., 1024) = 1024
read(20, "og Input w/FIFO Card\n\teca8  PCI-"..., 1024) = 1024
read(20, "rabber\n\t0030  [mvHYPERION-HD-SDI"..., 1024) = 1024
read(20, "\n\t0b04  BU-65569I4 MIL-STD-1553 "..., 1024) = 1024
read(20, "M] vers 1\n\t8882  86c868 [Vision "..., 1024) = 1024
read(20, "333 8904  86C365 Trio3D AGP\n\t890"..., 1024) = 1024
read(20, "\t1092 480e  Stealth III S540\n\t\t1"..., 1024) = 1024
read(20, "\n\t8c22  SuperSavage MX/128\n\t8c24"..., 1024) = 1024
read(20, "chnologies\n\t6178  DVB Tuner PCIe"..., 1024) = 1024
read(20, "de HID events.\n\tc110  Virtualize"..., 1024) = 1024
read(20, "nc.\n7063  pcHDTV\n\t2000  HD-2000\n"..., 1024) = 1024
read(20, "otebook PC [MD98410]\n\t\te4bf 50c1"..., 1024) = 1024
read(20, "Centrino Wireless-N 1000 BG\n\t\t80"..., 1024) = 1024
read(20, "ntrino Advanced-N + WiMAX 6250 2"..., 1024) = 1024
read(20, "01  Xeon E3-1200/2nd Generation "..., 1024) = 1024
read(20, "mily Integrated Graphics Control"..., 1024) = 1024
read(20, "\t1043 1477  N56VZ\n\t\t1043 844d  P"..., 1024) = 1024
read(20, "ller\n\t015d  Xeon E3-1200 v2/3rd "..., 1024) = 1024
read(20, " Bridge\n\t030d  80312 I/O Compani"..., 1024) = 1024
read(20, "3 Segment-B PCIe Express to PCI-"..., 1024) = 1024
read(20, "2375EB/SB PCI to EISA Bridge\n\t04"..., 1024) = 1024
read(20, "0SP Scalability Port 5 registers"..., 1024) = 1024
read(20, "\t06ea  Comet Lake PCH Serial IO "..., 1024) = 1024
read(20, "own Power Management Unit\n\t0811 "..., 1024) = 1024
read(20, "Wireless-N + WiMAX 6150\n\t\t8086 1"..., 1024) = 1024
read(20, "o Wireless-N 135 BGN\n\t\t8086 0462"..., 1024) = 1024
read(20, "ireless 7260\n# Wilkins Peak 2\n\t\t"..., 1024) = 1024
read(20, "e  Dual Band Wireless-AC 7260\n# "..., 1024) = 1024
read(20, "Wireless-N 7260\n# Wilkins Peak 2"..., 1024) = 1024
read(20, "Wilkins Peak 2\n\t\t8086 4270  Wire"..., 1024) = 1024
read(20, "\t8086 0470  Dual Band Wireless-A"..., 1024) = 1024
read(20, "ns Peak 1\n\t\t8086 8370  Dual Band"..., 1024) = 1024
read(20, "ak 2 AC\n\t\t8086 5010  Dual Band W"..., 1024) = 1024
read(20, "ne Peak 2 AGN\n\t\t8086 9000  Dual "..., 1024) = 1024
read(20, " Wireless-N 7265\n# Stone Peak 2 "..., 1024) = 1024
read(20, "\t1028 1fe4  Express Flash NVMe 4"..., 1024) = 1024
read(20, ".5\" U.2 (P4500)\n\t\t1137 0231  NVM"..., 1024) = 1024
read(20, "[3DNAND] 4.0TB AIC (P4500)\n\t\t1d4"..., 1024) = 1024
read(20, ".2 (P4600)\n\t\t1028 1fe7  Express "..., 1024) = 1024
read(20, "e4  Atom Processor D2xxx/N2xxx I"..., 1024) = 1024
read(20, "er\n\t0bf5  Atom Processor D2xxx/N"..., 1024) = 1024
read(20, "n E7 v4/Xeon E5 v4/Xeon E3 v4/Xe"..., 1024) = 1024
read(20, "al\n\t0c77  Atom Processor S1200 I"..., 1024) = 1024
read(20, "d Graphics Controller\n\t0d4c  Eth"..., 1024) = 1024
read(20, "t 2a\n\t0e05  Xeon E7 v2/Xeon E5 v"..., 1024) = 1024
read(20, "0\n\t\t1028 04f7  Xeon E5 v2 on Pow"..., 1024) = 1024
read(20, "Xeon E7 v2/Xeon E5 v2/Core i7 VT"..., 1024) = 1024
read(20, "3e  Xeon E7 v2/Xeon E5 v2/Core i"..., 1024) = 1024
read(20, "hannel Target Address Decoder Re"..., 1024) = 1024
read(20, "ent Register\n\t0ea0  Xeon E7 v2/X"..., 1024) = 1024
read(20, "el 0-3 ERROR Registers 0\n\t0eb3  "..., 1024) = 1024
read(20, "\t0ec9  Xeon E7 v2/Xeon E5 v2/Cor"..., 1024) = 1024
read(20, "gisters\n\t0eec  Xeon E7 v2/Xeon E"..., 1024) = 1024
read(20, "5 v2/Core i7 DDRIO\n\t0efa  Xeon E"..., 1024) = 1024
read(20, "ine\n\t0f1c  Atom Processor Z36xxx"..., 1024) = 1024
read(20, "36xxx/Z37xxx Series LPIO2 I2C Co"..., 1024) = 1024
read(20, "em 56 Cardbus II\n\t\t8086 200e  Pr"..., 1024) = 1024
read(20, "er)\n\t\t8086 1112  PRO/1000 T Desk"..., 1024) = 1024
read(20, "ction\n\t\t8086 1001  PRO/1000 MT S"..., 1024) = 1024
read(20, "esktop Adapter\n\t1014  82541ER Gi"..., 1024) = 1024
read(20, "thernet Controller\n\t\t8086 1000  "..., 1024) = 1024
read(20, "1CAM (ICH3) PRO/100 VE (LOM) Eth"..., 1024) = 1024
read(20, "03c  82801DB PRO/100 VM (CNR) Et"..., 1024) = 1024
read(20, "backplane\n\t1050  82562EZ 10/100 "..., 1024) = 1024
read(20, "e  PRO/1000 PT Dual Port Network"..., 1024) = 1024
read(20, "roller Mobile\n\t\t103c 30d5  530 L"..., 1024) = 1024
read(20, "9  82546GB Gigabit Ethernet Cont"..., 1024) = 1024
read(20, "\t8086 1082  PRO/1000 PT Server A"..., 1024) = 1024
read(20, "nt)\n\t108f  Active Management Tec"..., 1024) = 1024
read(20, " a11f  PRO/10GbE CX4 Server Adap"..., 1024) = 1024
read(20, "thernet Controller\n\t10b9  82572E"..., 1024) = 1024
read(20, "nnection\n\t10c6  82598EB 10-Gigab"..., 1024) = 1024
read(20, "6 a04c  Gigabit ET Dual Port Ser"..., 1024) = 1024
read(20, " Gigabit VT Quad Port Server Ada"..., 1024) = 1024
read(20, "igabit Network Connection\n\t\t8086"..., 1024) = 1024
read(20, "74L Gigabit Network Connection\n\t"..., 1024) = 1024
read(20, "\n\t\t15d9 0611  AOC-STGN-I2S [REV "..., 1024) = 1024
read(20, " PRO/1000 MF Server Adapter (LX)"..., 1024) = 1024
read(20, " (OTG)\n\t11a0  Merrifield SCU IPC"..., 1024) = 1024
read(20, "on LAN*\n\t\t0e11 3006  82559 Fast "..., 1024) = 1024
read(20, " Adapter\n\t\t1014 01f2  10/100 Eth"..., 1024) = 1024
read(20, "\t\t103c 1200  NetServer 10/100TX\n"..., 1024) = 1024
read(20, "6 0005  82557 10/100\n\t\t8086 0006"..., 1024) = 1024
read(20, "dapter\n\t\t8086 0050  EtherExpress"..., 1024) = 1024
read(20, "dem\n\t\t8086 200f  EtherExpress PR"..., 1024) = 1024
read(20, "86 2204  EtherExpress PRO/100+ M"..., 1024) = 1024
brk(NULL)                               = 0x10c8000
brk(0x10f0000)                          = 0x10f0000
read(20, "00 S Network Connection\n\t\t8086 3"..., 1024) = 1024
read(20, "8086 1361  82806AA PCI64 Hub Con"..., 1024) = 1024
read(20, "ection\n\t\t8086 a10c  Gigabit ET Q"..., 1024) = 1024
read(20, " 7b13  Dual 10GBASE-T LP\n\t1520  "..., 1024) = 1024
read(20, "hernet Adapter\n\t\t1093 76b1  PCIe"..., 1024) = 1024
read(20, "nection\n\t\t108e 7b17  Quad Port G"..., 1024) = 1024
read(20, "ion\n\t\t8086 0001  Ethernet Server"..., 1024) = 1024
read(20, "verged Network Adapter X540-T2\n\t"..., 1024) = 1024
read(20, "8 1GbE interface\n\t\t1059 0130  T4"..., 1024) = 1024
read(20, "r\n\t\t1bd4 0030  10G SFP+ SP EP101"..., 1024) = 1024
read(20, "olt 3 Edition\n\t\t18d4 0c08  X550 "..., 1024) = 1024
read(20, "1570  Ethernet Connection I219-V"..., 1024) = 1024
read(20, "r X710\n\t\t8086 0001  Ethernet Con"..., 1024) = 1024
read(20, " for OCP NIC 3.0\n\t\t8086 00a2  Et"..., 1024) = 1024
read(20, "ce\n\t\t1590 0000  Ethernet 2-port "..., 1024) = 1024
read(20, " Adapter XL710-Q1\n\t\t8086 0003  E"..., 1024) = 1024
read(20, "3  Ethernet Converged Network Ad"..., 1024) = 1024
read(20, "PCIe x8 Bifurcated as x4x4, UEFI"..., 1024) = 1024
read(20, "\t8086 0007  Ethernet Network Ada"..., 1024) = 1024
read(20, "er E810-XXV-4\n\t\t8086 0008  Ether"..., 1024) = 1024
read(20, "ual Function\n\t15a9  X552 Virtual"..., 1024) = 1024
read(20, "erbolt 3 USB 3.1 Controller (Low"..., 1024) = 1024
read(20, "E-DA2\n\t\t8086 0001  Intel(R) Ethe"..., 1024) = 1024
read(20, "I [Titan Ridge 4C 2018]\n\t15ec  J"..., 1024) = 1024
read(20, "-t Adapter\n\t\t8086 0006  Ethernet"..., 1024) = 1024
read(20, "\t1610  Broadwell-U Host Bridge -"..., 1024) = 1024
read(20, "troller (x16)\n\t1902  HD Graphics"..., 1024) = 1024
read(20, "s\n\t\t1028 06e4  XPS 15 9550\n\t\t103"..., 1024) = 1024
read(20, "0\n\t193b  Iris Pro Graphics 580\n\t"..., 1024) = 1024
read(20, "\te4bf 1040  CU1-CHORUS\n\t\te4bf 31"..., 1024) = 1024
read(20, "r 0\n\t19b2  Atom Processor C3000 "..., 1024) = 1024
read(20, "Atom Processor C3000 Series Inte"..., 1024) = 1024
read(20, "5 [Brookdale] Chipset Host Bridg"..., 1024) = 1024
read(20, "\t1028 04da  Vostro 3750\n\t\t17aa 2"..., 1024) = 1024
read(20, "o8,2 [Core i7, 15\", 2011]\n\t1c16 "..., 1024) = 1024
read(20, "ies/C200 Series Chipset Family S"..., 1024) = 1024
read(20, "USB Enhanced Host Controller #2\n"..., 1024) = 1024
read(20, "6 Series Chipset Family LPC Cont"..., 1024) = 1024
read(20, "C200 Series Chipset Family LPC C"..., 1024) = 1024
read(20, "  C600/X79 series chipset PCI Ex"..., 1024) = 1024
read(20, "eries chipset High Definition Au"..., 1024) = 1024
read(20, "rver\n\t1d3f  C608/C606/X79 series"..., 1024) = 1024
read(20, "64  C600/X79 series chipset Dual"..., 1024) = 1024
read(20, "E mode]\n\t1e01  7 Series Chipset "..., 1024) = 1024
read(20, "3 108d  VivoBook X202EV\n\t\t1043 1"..., 1024) = 1024
read(20, "\t1e20  7 Series/C216 Chipset Fam"..., 1024) = 1024
read(20, "1e26  Motherboard\n\t1e2d  7 Serie"..., 1024) = 1024
read(20, "mily IDE-r Controller\n\t1e3d  7 S"..., 1024) = 1024
read(20, " 7 Series Chipset Family LPC Con"..., 1024) = 1024
read(20, "7  Atom processor C2000 SoC Tran"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA2 Con"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA3 Con"..., 1024) = 1024
read(20, "36  Sky Lake-E IOxAPIC Configura"..., 1024) = 1024
read(20, "s\n\t2078  Sky Lake-E PCU Register"..., 1024) = 1024
read(20, "Series LPIO1 HSUART Controller #"..., 1024) = 1024
brk(NULL)                               = 0x10f0000
brk(0x1117000)                          = 0x1117000
read(20, "CI Controller\n\t22b8  Atom/Celero"..., 1024) = 1024
read(20, "8000/J3xxx/N3xxx Series PCI Expr"..., 1024) = 1024
read(20, "A Controller [AHCI Mode]\n\t23a6  "..., 1024) = 1024
read(20, " 220 Integrated Digital Audio\n\t\t"..., 1024) = 1024
read(20, "7b 0507  TH7II-RAID\n\t\t8086 4532 "..., 1024) = 1024
read(20, "Deskpro EN Audio\n\t\t0e11 0088  Ev"..., 1024) = 1024
read(20, "T61/R61\n\t\t17c0 10d2  Medion Akoy"..., 1024) = 1024
read(20, "U Virtual Machine\n\t\t8086 3010  E"..., 1024) = 1024
read(20, "\n\t\t1028 04f7  PowerEdge R320 ser"..., 1024) = 1024
read(20, "86 3424  SE7501HG2 Mainboard\n\t\t8"..., 1024) = 1024
read(20, "/GR315MP\n\t\t134d 4c21  Dell Inspi"..., 1024) = 1024
read(20, "26  Optiplex GX260\n\t\t1028 0160  "..., 1024) = 1024
read(20, "\t1071 8160  MIM2000\n\t\t114a 0582 "..., 1024) = 1024
read(20, "D500\n\t\te4bf 0cc9  CC9-SAMBA\n\t\te4"..., 1024) = 1024
read(20, "roller\n\t\t1014 0524  ThinkPad T4x"..., 1024) = 1024
read(20, "33\n\t\t1071 8160  MIM2000\n\t\t144d c"..., 1024) = 1024
read(20, "004  D1451 Mainboard (SCENIC N30"..., 1024) = 1024
read(20, " QEMU Virtual Machine\n\t\t4c53 109"..., 1024) = 1024
read(20, "50 onboard UHCI\n\t\t1028 016d  Pow"..., 1024) = 1024
read(20, "865PE)\n\t\t1462 7280  865PE Neo2 ("..., 1024) = 1024
read(20, "Motherboard (865G)\n\t\t15d9 4580  "..., 1024) = 1024
read(20, "s server mainboard\n\t\t1028 0168  "..., 1024) = 1024
read(20, "e 2850 IDE Controller\n\t\t1028 017"..., 1024) = 1024
read(20, "rd EHCI\n\t\t1028 0183  PowerEdge 1"..., 1024) = 1024
read(20, "rd D865GLC\n\t\t8086 524c  D865PERL"..., 1024) = 1024
read(20, "ion QSFP28\n\t\t1cb8 0004  Omni-Pat"..., 1024) = 1024
read(20, "\n\t2501  82820 820 (Camino) Chips"..., 1024) = 1024
read(20, "UM Controller\n\t2547  E7500/E7501"..., 1024) = 1024
read(20, "c  d330 uT\n\t\t1043 80f2  P4P800/P"..., 1024) = 1024
read(20, "oot Port\n\t2582  82915G/GV/910GL "..., 1024) = 1024
read(20, "9c  NX6110/NC6120\n\t\t103c 308a  N"..., 1024) = 1024
read(20, "Computer\n\t\t1775 ce90  CE9\n\t\t4c53"..., 1024) = 1024
read(20, "el 200 D2020 mainboard\n\t\t1775 10"..., 1024) = 1024
read(20, " 5000 Series Chipset PCI Express"..., 1024) = 1024
read(20, "t FBD Registers\n\t\t103c 31fd  Pro"..., 1024) = 1024
read(20, "ers\n\t2614  E8500/E8501 Reserved "..., 1024) = 1024
read(20, "0  PowerEdge 6850 Reserved Regis"..., 1024) = 1024
read(20, "\n\t\t1028 0179  Optiplex GX280\n\t\t1"..., 1024) = 1024
read(20, " Mainboard\n\t\t1462 7028  915P/G N"..., 1024) = 1024
read(20, "orkstation\n\t\t103c 0944  Compaq n"..., 1024) = 1024
read(20, "43 80a6  P5GD1-VW Mainboard\n\t\t14"..., 1024) = 1024
read(20, "FB/FBM/FR/FW/FRW (ICH6 Family) I"..., 1024) = 1024
read(20, "01f0  PowerEdge R900 onboard USB"..., 1024) = 1024
read(20, "d9 8680  X7DVL-E-O motherboard\n\t"..., 1024) = 1024
read(20, " Datacenter SSD [Optane]\n\t\t1028 "..., 1024) = 1024
read(20, "45G/GZ Integrated Graphics Contr"..., 1024) = 1024
read(20, "5  ThinkPad T60\n\t\t17aa 2017  Thi"..., 1024) = 1024
read(20, "(ICH7 Family) LPC Interface Brid"..., 1024) = 1024
read(20, "3 8179  P5B-MX/WiFi-AP, P5KPL-VM"..., 1024) = 1024
read(20, "0 Laptop\n\t\t17aa 200d  ThinkPad R"..., 1024) = 1024
read(20, "d7  XPS M1210\n\t\t1028 01df  Power"..., 1024) = 1024
read(20, "08\n\t\t1043 8179  P5B-MX/WiFi-AP, "..., 1024) = 1024
read(20, "\n\t\t17aa 200a  ThinkPad R60/T60/X"..., 1024) = 1024
read(20, "on MIM 2240 Notebook PC [MD98100"..., 1024) = 1024
read(20, "efinition Audio Controller\n\t\t102"..., 1024) = 1024
read(20, "C200 audio [Realtek ALC861VD]\n\t\t"..., 1024) = 1024
read(20, " Modem Controller\n\t27de  82801G "..., 1024) = 1024
read(20, "r\n\t\t103c 30c1  Compaq 6910p\n\t\t17"..., 1024) = 1024
read(20, "01HB (ICH8) 4 port SATA Controll"..., 1024) = 1024
read(20, "GN-NR120E\n\t\t17aa 20a7  ThinkPad "..., 1024) = 1024
read(20, " 9005  Vaio VGN-FZ260E\n\t\t104d 90"..., 1024) = 1024
read(20, "Z260E\n\t\t104d 902d  VAIO VGN-NR12"..., 1024) = 1024
read(20, "ab  ThinkPad T61/R61\n\t\t17c0 4083"..., 1024) = 1024
read(20, "1\n\t\t1028 01da  OptiPlex 745\n\t\t10"..., 1024) = 1024
read(20, "\t1025 0121  Aspire 5920G\n\t\t1025 "..., 1024) = 1024
read(20, "io VGN-FZ260E\n\t\t104d 902d  VAIO "..., 1024) = 1024
read(20, "ATA Controller\n\t\t1028 0211  Opti"..., 1024) = 1024
read(20, "TA Controller\n\t\t1028 0211  Optip"..., 1024) = 1024
read(20, "934  82801I (ICH9 Family) USB UH"..., 1024) = 1024
read(20, " PowerEdge R610 USB UHCI Control"..., 1024) = 1024
read(20, "\n\t\t1462 7360  G33/P35 Neo\n\t\t17aa"..., 1024) = 1024
read(20, "Controller\n\t\t1028 0236  PowerEdg"..., 1024) = 1024
read(20, "ller #1\n\t\t1028 020d  Inspiron 53"..., 1024) = 1024
read(20, "M710 USB EHCI Controller\n\t\t103c "..., 1024) = 1024
read(20, "ICH9/ICH9R]\n\t\t8086 2940  Optiple"..., 1024) = 1024
read(20, " Controller\n\t2975  82946GZ/GL HE"..., 1024) = 1024
read(20, " PT IDER Controller\n\t29a7  82P96"..., 1024) = 1024
read(20, "76  P5K PRO Motherboard: Intel 8"..., 1024) = 1024
read(20, "\t29e5  82X38/X48 Express MEI Con"..., 1024) = 1024
read(20, "ile GM965/GL960 Integrated Graph"..., 1024) = 1024
read(20, " cc47  CCG-RUMBA\n\t2a11  Mobile G"..., 1024) = 1024
read(20, " Redirection\n\t2a50  Cantiga MEI "..., 1024) = 1024
read(20, "on Processor E7 Product Family S"..., 1024) = 1024
read(20, "\n\t2b50  Xeon Processor E7 Produc"..., 1024) = 1024
read(20, "vel Cache Coherence Engine 8\n\t2b"..., 1024) = 1024
read(20, "500/Core i7 Integrated Memory Co"..., 1024) = 1024
read(20, "cessor QuickPath Architecture Ge"..., 1024) = 1024
read(20, " Link 0\n\t2c91  Core Processor QP"..., 1024) = 1024
read(20, "ink 0\n\t2cd1  Xeon C5500/C3500 QP"..., 1024) = 1024
read(20, "Channel 2 Control\n\t2cf1  Xeon C5"..., 1024) = 1024
read(20, "5600 Series Integrated Memory Co"..., 1024) = 1024
read(20, " Chipset Integrated Graphics Con"..., 1024) = 1024
read(20, "3  4 Series Chipset Integrated G"..., 1024) = 1024
read(20, "eries Chipset PT IDER Controller"..., 1024) = 1024
read(20, "ng Unit\n\t2e70  CE Media Processo"..., 1024) = 1024
read(20, "\t2f0a  Xeon E7 v3/Xeon E5 v3/Cor"..., 1024) = 1024
read(20, "e Registers\n\t2f1f  Xeon E7 v3/Xe"..., 1024) = 1024
read(20, "rface\n\t2f36  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
mmap(NULL, 217088, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f578000
mremap(0x2b383f578000, 217088, 221184, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "E5 v3/Core i7 Integrated Memory "..., 1024) = 1024
read(20, "83  Xeon E7 v3/Xeon E5 v3/Core i"..., 1024) = 1024
read(20, "mory Controller 0 Channel Target"..., 1024) = 1024
read(20, "sters\n\t2fb7  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
read(20, "d Memory Controller 1 Channel 1 "..., 1024) = 1024
read(20, "3/Core i7 Unicast Registers\n\t2fe"..., 1024) = 1024
read(20, "ffa  Xeon E7 v3/Xeon E5 v3/Core "..., 1024) = 1024
mremap(0x2b383f578000, 221184, 225280, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "usted Execution Engine Interface"..., 1024) = 1024
read(20, "ni Lake PCI Express Root Port\n\t3"..., 1024) = 1024
read(20, " (SL8Dx) in IOC Mode SAS/SATA\n\t3"..., 1024) = 1024
read(20, "t 7\n\t\t103c 330b  ProLiant ML150 "..., 1024) = 1024
read(20, "ickData Technology Device\n\t342c "..., 1024) = 1024
mremap(0x2b383f578000, 225280, 229376, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "ce Lake-LP Serial IO I2c Control"..., 1024) = 1024
read(20, "board\n\t3511  6310ESB PCI Express"..., 1024) = 1024
read(20, "\te4bf 0cc9  CC9-SAMBA\n\t\te4bf 0cd"..., 1024) = 1024
read(20, "or to I/O Controller\n\t\t1014 055e"..., 1024) = 1024
mremap(0x2b383f578000, 229376, 233472, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "0 Processor AMC\n\t3592  E7320 Mem"..., 1024) = 1024
read(20, "b5  3100 Chipset Enhanced DMA Co"..., 1024) = 1024
read(20, "500/C3500 DMI\n\t3708  Xeon C5500/"..., 1024) = 1024
mremap(0x2b383f578000, 233472, 237568, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " NTB Secondary\n\t3728  Xeon C5500"..., 1024) = 1024
read(20, "d 0010  88E1514 Ethernet OCP 2x1"..., 1024) = 1024
read(20, "020  Ethernet Connection X722 fo"..., 1024) = 1024
read(20, "oller\n\t3a22  82801JI (ICH10 Fami"..., 1024) = 1024
read(20, "10 USB UHCI Controller\n\t\t1028 02"..., 1024) = 1024
mremap(0x2b383f578000, 237568, 241664, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "028 028d  PowerEdge T410 USB UHC"..., 1024) = 1024
read(20, "xe Motherboard\n\t\t1043 82ea  P6T "..., 1024) = 1024
read(20, "(ICH10 Family) USB UHCI Controll"..., 1024) = 1024
read(20, "  PM55 Chipset LPC Interface Con"..., 1024) = 1024
read(20, " Interface Controller\n\t3b13  5 S"..., 1024) = 1024
mremap(0x2b383f578000, 241664, 245760, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " 0605  X8SIL\n\t\t15d9 060d  C7SIM-"..., 1024) = 1024
read(20, "\te4bf 50c1  PC1-GROOVE\n\t3b30  5 "..., 1024) = 1024
read(20, "SB Universal Host Controller\n\t3b"..., 1024) = 1024
read(20, "  EliteBook 8540p\n\t\t144d c06a  R"..., 1024) = 1024
mremap(0x2b383f578000, 245760, 249856, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " VECI Controller\n\t3b56  5 Series"..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO PCI Express "..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO Switch and I"..., 1024) = 1024
read(20, "r Target Address Decoder 3\n\t3cae"..., 1024) = 1024
read(20, "ation Registers\n\t3ce4  Xeon E5/C"..., 1024) = 1024
mremap(0x2b383f578000, 249856, 253952, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "e Lake S]\n\t3e33  8th/9th Gen Cor"..., 1024) = 1024
read(20, "troller Hub\n\t4003  5400 Chipset "..., 1024) = 1024
read(20, " Atom Processor E6xx Integrated "..., 1024) = 1024
read(20, "n\n\t\t8086 1c00  PRO/Wireless 3945"..., 1024) = 1024
mremap(0x2b383f578000, 253952, 258048, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " 2x2 ABG\n\t4230  PRO/Wireless 496"..., 1024) = 1024
read(20, "6 1316  WiFi Link 5100 ABG\n\t4238"..., 1024) = 1024
read(20, "E80578 Expansion Bus\n\t500e  LE80"..., 1024) = 1024
read(20, "l Expansion Bus\n\t503e  EP80579 G"..., 1024) = 1024
mremap(0x2b383f578000, 258048, 262144, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " v6/7th Gen Core Processor Host "..., 1024) = 1024
read(20, "UHD Graphics 620\n\t\t17aa 225e  Th"..., 1024) = 1024
read(20, "troller #3\n\t5ab2  Celeron N3350/"..., 1024) = 1024
read(20, "0  Celeron N3350/Pentium N4200/A"..., 1024) = 1024
read(20, " Express x4 Port 4\n\t65e5  5100 C"..., 1024) = 1024
mremap(0x2b383f578000, 262144, 266240, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "Xeon E3 v4/Xeon D PCI Express Ro"..., 1024) = 1024
read(20, "n D IIO Debug\n\t6f1a  Xeon E7 v4/"..., 1024) = 1024
read(20, "L-F\n\t6f27  Xeon E7 v4/Xeon E5 v4"..., 1024) = 1024
read(20, "e  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
read(20, " Address/Thermal/RAS\n\t6f6a  Xeon"..., 1024) = 1024
read(20, "1  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
mremap(0x2b383f578000, 266240, 270336, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "v4/Xeon E5 v4/Xeon E3 v4/Xeon D "..., 1024) = 1024
read(20, "4/Xeon D Memory Controller 0 - C"..., 1024) = 1024
read(20, " v4/Xeon D Power Control Unit\n\t6"..., 1024) = 1024
read(20, "hannel 0 Thermal Control\n\t6fd1  "..., 1024) = 1024
read(20, "eon E7 v4/Xeon E5 v4/Xeon E3 v4/"..., 1024) = 1024
read(20, "gent\n\t6ffd  Xeon E7 v4/Xeon E5 v"..., 1024) = 1024
read(20, "  CL7 mainboard\n\t\t4c53 1060  PC7"..., 1024) = 1024
mremap(0x2b383f578000, 270336, 274432, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "\t7192  440BX/ZX/DX - 82443BX/ZX/"..., 1024) = 1024
read(20, "3  82372FB PIIX5 SMBus\n\t7800  82"..., 1024) = 1024
read(20, "Controller\n\t8119  US15W/US15X/US"..., 1024) = 1024
read(20, "(SDC)\n\t84e2  460GX - 84460GX AGP"..., 1024) = 1024
mremap(0x2b383f578000, 274432, 278528, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "O Controller #1\n\t880a  Platform "..., 1024) = 1024
read(20, "olt 3 USB Controller\n\t8a17  Ice "..., 1024) = 1024
read(20, "  8 Series/C220 Series Chipset F"..., 1024) = 1024
read(20, "0 Series Chipset Family PCI Expr"..., 1024) = 1024
read(20, " Thermal Management Controller\n\t"..., 1024) = 1024
mremap(0x2b383f578000, 278528, 282624, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "KU LPC Controller\n\t8c42  8 Serie"..., 1024) = 1024
read(20, "er\n\t8c55  8 Series/C220 Series C"..., 1024) = 1024
read(20, "ontroller [RAID Mode]\n\t8c87  9 S"..., 1024) = 1024
read(20, "ies Chipset Family USB xHCI Cont"..., 1024) = 1024
read(20, "d12  C610/X99 series chipset PCI"..., 1024) = 1024
read(20, "s chipset USB Enhanced Host Cont"..., 1024) = 1024
mremap(0x2b383f578000, 282624, 286720, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "C Controller\n\t8d4a  C610/X99 ser"..., 1024) = 1024
read(20, "ntegrated RAID\n\t96a1  Integrated"..., 1024) = 1024
read(20, "40\n\t9c04  8 Series SATA Controll"..., 1024) = 1024
read(20, "1c  8 Series PCI Express Root Po"..., 1024) = 1024
mremap(0x2b383f578000, 286720, 290816, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "Series LPC Controller\n\t9c60  8 S"..., 1024) = 1024
read(20, "t Point-LP Secure Digital IO Con"..., 1024) = 1024
read(20, " Latitude 3570\n\t\t103c 8079  Elit"..., 1024) = 1024
read(20, "\n\t\t1025 115f  Acer Aspire E5-575"..., 1024) = 1024
mremap(0x2b383f578000, 290816, 294912, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, " ThinkPad T570\n\t\t17aa 224f  Thin"..., 1024) = 1024
read(20, "Sunrise Point-LP LPC Controller\n"..., 1024) = 1024
read(20, "rise Point-LP HD Audio\n\t\t1025 10"..., 1024) = 1024
mremap(0x2b383f578000, 294912, 299008, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "n Point-LP MEI Controller #1\n\t9d"..., 1024) = 1024
read(20, "072  Notebook N150P\n\ta011  Atom "..., 1024) = 1024
read(20, "a  Tiger Lake-LP Serial IO I2C C"..., 1024) = 1024
read(20, "/C230 Series Chipset Family PCI "..., 1024) = 1024
read(20, "e4  XPS 15 9550\n\t\t103c 825b  OME"..., 1024) = 1024
mremap(0x2b383f578000, 299008, 303104, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "\n\ta13b  100 Series/C230 Series C"..., 1024) = 1024
read(20, "hipset LPC/eSPI Controller\n\ta153"..., 1024) = 1024
read(20, "ess Root Port #17\n\ta168  100 Ser"..., 1024) = 1024
read(20, "Root Port #9\n\ta199  C620 Series "..., 1024) = 1024
read(20, " Chipset Family MEI Controller #"..., 1024) = 1024
mremap(0x2b383f578000, 303104, 307200, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "MROM 1\n\ta1f8  Lewisburg IE: HECI"..., 1024) = 1024
read(20, "press Root Port #10\n\ta29a  200 S"..., 1024) = 1024
read(20, " PCH CSME HECI #1\n\ta2bb  200 Ser"..., 1024) = 1024
read(20, "#24\n\ta2f0  200 Series PCH HD Aud"..., 1024) = 1024
read(20, "PCH PCI Express Root Port #15\n\ta"..., 1024) = 1024
mremap(0x2b383f578000, 307200, 311296, MREMAP_MAYMOVE) = 0x2b383f578000
read(20, "l IO I2C Controller #0\n\ta369  Ca"..., 1024) = 1024
read(20, "\td132  Core Processor DMI\n\t\t1028"..., 1024) = 1024
read(20, "-Port Ethernet Network Adaptor S"..., 1024) = 1024
read(20, "P+\n80ee  InnoTek Systemberatung "..., 1024) = 1024
read(20, "oad Engine\n\t\t9004 7710  ANA-7711"..., 1024) = 1024
read(20, "2022 2-port 64 bit 10/100\n\t\t9004"..., 1024) = 1024
read(20, "W Dual AHA-394xAU/AUW/AUWD AIC-7"..., 1024) = 1024
read(20, "\t\t9005 0003  AAA-131U2 Array1000"..., 1024) = 1024
read(20, "f620  Compaq 64-Bit/66MHz Dual C"..., 1024) = 1024
read(20, "TK RAID EXT\n\t\t108e 7aac  STK RAI"..., 1024) = 1024
read(20, "005 02a5  ICP ICP5085BR\n\t\t9005 0"..., 1024) = 1024
read(20, "5 028d  ASR-2130S\n\t\t9005 029b  A"..., 1024) = 1024
read(20, "  Series 6 - ASR-61205 - 12 inte"..., 1024) = 1024
read(20, "/PCIe 3.0\n\t\t9005 0553  Series 8 "..., 1024) = 1024
read(20, "c460  RAID P460-M2\n\t\t193d c461  "..., 1024) = 1024
read(20, "\n\t\t9005 0908  SmartHBA 2100\n\t\t90"..., 1024) = 1024
read(20, "pirit-Lite non-RAID)\n\t043e  AIC-"..., 1024) = 1024
read(20, "1011  PRIMERGY RX300 onboard SCS"..., 1024) = 1024
read(20, "logy Inc\n\t6565  6565\n# nee Netmo"..., 1024) = 1024
read(20, "aptor\n\t9912  PCIe 9912 Multi-I/O"..., 1024) = 1024
read(20, "\naa42  Scitex Digital Video\naa55"..., 1024) = 1024
read(20, "DeckLink Studio\n\ta11e  DeckLink "..., 1024) = 1024
read(20, "ologies, Inc.\n\t0001  TurboCap Po"..., 1024) = 1024
read(20, "P/TE207P dual-span T1/E1/J1 card"..., 1024) = 1024
read(20, "E1/J1 card\n\t800c  Wildcard A8A 8"..., 1024) = 1024
read(20, "BAE9\n\t004e  PC104p-Biserial-III-"..., 1024) = 1024
read(20, "\n\te000  W89C940\ne159  Tiger Jet "..., 1024) = 1024
read(20, "Digi32 Pro\n\t9898  Digi32/8\neabb "..., 1024) = 1024
read(20, "A-48 Gig Ethernet/OC-3/OC-12/OC-"..., 1024) = 1024
read(20, "Inc. (Wrong ID)\nf05b  Foxconn In"..., 1024) = 1024
read(20, "Inc\n\ta0fa  BCM4210 iLine10 HomeP"..., 1024) = 1024
read(20, "PCI native mode-only controller,"..., 1024) = 1024
read(20, "\n\t\t00  VGA controller\n\t\t01  8514"..., 1024) = 1024
read(20, "get\n\t02  Multiport serial contro"..., 1024) = 1024
read(20, "OHCI\n\t01  ACCESS Bus\n\t02  SSA\n\t0"..., 1024) = 1024
read(20, "\t80  Signal processing controlle"..., 1024) = 320
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff2c000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff28000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff24000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff20000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\362\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff1c000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff18000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff14000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff10000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:04.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:04.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\320@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x000000009640d000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\320@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:08.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:08.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:08.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:08.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\354\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\354\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\355\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\355\241\4\0\20\0\t\0\0\377\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\322\241\7\4\260\2\t\1\6\1\0\0\200\0\0`@\226\0\300@\226i\20\0\0u\20\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000096406000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\322\241\7\4\260\2\t\1\6\1\0\0\200\0\0`@\226\0\300@\226i\20\0\0u\20\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:11.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:11.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\257\241F\5\220\2\t0\3\f\0\0\200\0\4\0\360\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff00000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\257\241F\5\220\2\t0\3\f\0\0\200\0\4\0\360\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\261\241\6\0\20\0\t\0\200\21\0\0\0\0\4 \363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff32000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\261\241\6\0\20\0\t\0\200\21\0\0\0\0\4 \363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:14.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:14.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\272\241\6\4\20\0\t\0\200\7\0\0\200\0\4\260@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x000000009640b000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\272\241\6\4\20\0\t\0\200\7\0\0\200\0\4\260@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\273\241\6\0\20\0\t\0\200\7\0\0\200\0\4\240@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x000000009640a000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\273\241\6\0\20\0\t\0\200\7\0\0\200\0\4\240@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\276\241\6\0\20\0\t\0\200\7\0\0\200\0\4\20\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff31000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\276\241\6\0\20\0\t\0\200\7\0\0\200\0\4\20\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:16.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:16.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202\241\7\4\260\2\t\1\6\1\0\0\0\0\0@@\226\0\220@\226a\20\0\0q\20\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000096404000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202\241\7\4\260\2\t\1\6\1\0\0\0\0\0@@\226\0\220@\226a\20\0\0q\20\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:17.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:17.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\220\241\7\4\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\1\1\0  \0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\220\241\7\4\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\1\1\0  \0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1c.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\224\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\2\2\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\224\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\2\2\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1c.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\225\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\3\3\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\225\241G\5\20\0\371\0\4\6\20\0\201\0\0\0\0\0\0\0\0\0\0\3\3\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1c.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1c.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:00:1f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\302\241\7\0\0\2\t\0\1\6\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\302\241\7\0\0\2\t\0\1\6\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\241\241\6\0\0\0\t\0\200\5\0\0\200\0\0\0@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000096400000 0x00000000964"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\241\241\6\0\0\0\t\0\200\5\0\0\200\0\0\0@\226\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\243\241\3\0\200\2\t\0\5\f\0\0\0\0\4\0\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d0ffff30000 0x00000d0ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\243\241\3\0\200\2\t\0\5\f\0\0\0\0\4\0\363\377\17\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\244\241\6\4\0\0\t\0\200\f\0\0\200\0\0\0\1\376\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000fe010000 0x00000000fe0"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\244\241\6\4\0\0\t\0\200\f\0\0\200\0\0\0\1\376\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:00:1f.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:00:1f.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:02:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\21\27G\1\20\0\1\0\0\3\20\0\0\0\10\0\0\224\0\0\0\226\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000094000000 0x0000000095f"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\21\27G\1\20\0\1\0\0\3\20\0\0\0\10\0\0\224\0\0\0\226\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:02:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:02:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
read(20, "lash Recovery]\n\t020b  MT27710 Fa"..., 1024) = 1024
read(20, "trum-2, Secure Flash recovery mo"..., 1024) = 1024
read(20, "R Dual Port Mezzanine Card\n\t\t15b"..., 1024) = 1024
read(20, "\n\t\t103c 22f4  InfiniBand FDR/Eth"..., 1024) = 1024
read(20, "and-up single-port 40GbE MCX415A"..., 1024) = 1024
read(20, "G\n\t\t15b3 0025  ConnectX-4 Lx 25 "..., 1024) = 1024
read(20, "Family [ConnectX-6 Lx]\n\t1020  MT"..., 1024) = 1024
read(20, "iniHost III Ex]\n\t6340  MT25408A0"..., 1024) = 1024
read(20, " IB/Flex-10 10Gb Adapter\n\t\t103c "..., 1024) = 1024
read(20, "pto disabled\n\ta2d2  MT416842 Blu"..., 1024) = 1024
read(20, "6c  MT53100 [Spectrum-2]\n\tcf70  "..., 1024) = 1024
read(20, "w/ opto coupler)\n\t1004  APCI2032"..., 1024) = 1024
read(20, "bd  DFI Inc\n15be  Sola Electroni"..., 1024) = 1024
read(20, "acheflow Inc\n15e1  Voice Technol"..., 1024) = 1024
read(20, "mman - Canada Ltd\n1601  Tenta Te"..., 1024) = 1024
read(20, "rSync T4U (4 port X.21/V.35/V.24"..., 1024) = 1024
read(20, "tor and FEC\n1631  Packard Bell B"..., 1024) = 1024
read(20, "bps CNA - LL\n\t\t1657 0024  16Gbps"..., 1024) = 1024
read(20, "roceIII110\n\t5a21  ProceIII150\n\t5"..., 1024) = 1024
read(20, "  Actiontec Electronics Inc\n\t010"..., 1024) = 1024
read(20, "astleNet Technology Inc.\n\t1170  "..., 1024) = 1024
read(20, "11g Wireless CardBus Adapter\n\t\t0"..., 1024) = 1024
read(20, "eless 801.11g PCI card\n\t\t1186 3a"..., 1024) = 1024
read(20, "4b9 cb21  CB21 802.11a/b/g Cardb"..., 1024) = 1024
read(20, "p Card\n\t\t1799 3010  F6D3010 Dual"..., 1024) = 1024
read(20, " 802.11 b/g  MiniPCI Adapter, Re"..., 1024) = 1024
read(20, "062  IPN-W100CB 802.11abg Wirele"..., 1024) = 1024
read(20, "  AR242x 802.11abg NIC (PCI Expr"..., 1024) = 1024
read(20, " Wireless CardBus Adapter\n\t\t1154"..., 1024) = 1024
read(20, "ini PCI Adapter\n\t0029  AR922X Wi"..., 1024) = 1024
read(20, "\t\t1a32 0306  EM306 802.11bgn Wir"..., 1024) = 1024
read(20, "AW-NE785 / AW-NE785H 802.11bgn W"..., 1024) = 1024
read(20, "e card on a series 3 laptop\n\t\t1a"..., 1024) = 1024
read(20, "twork Adapter\n\t0050  QCA9887 802"..., 1024) = 1024
read(20, "sed vendor ID 0001\n\t\t0001 0001  "..., 1024) = 1024
read(20, "es\n16ce  Roland Corp.\n16d5  Acro"..., 1024) = 1024
read(20, " Reconfigurable Conduction-Coole"..., 1024) = 1024
read(20, "le & Hold\n\t4d4e  PMC482, APC482,"..., 1024) = 1024
read(20, "figurable Spartan-6 FPGA with pl"..., 1024) = 1024
read(20, "c cells, conduction-cooled\n\t7006"..., 1024) = 1024
read(20, "rtix-7 FPGA module 48 TTL channe"..., 1024) = 1024
read(20, "le 24 RS485 channels\n\t7053  APA7"..., 1024) = 1024
read(20, "irst, Inc.\n170b  NetOctave\n\t0100"..., 1024) = 1024
read(20, "9  ROL/F-100 Fast Ethernet Adapt"..., 1024) = 1024
read(20, " isolated\n\t0243  PCA7428CS_F1 - "..., 1024) = 1024
read(20, " III CN78XX Network Processor\n\t0"..., 1024) = 1024
read(20, "04  CN2350 [LiquidIO II] 2-port "..., 1024) = 1024
read(20, "NDERX Key Memory\n\ta017  THUNDERX"..., 1024) = 1024
read(20, "-CBC\n\ta030  THUNDERX L2C-MCI\n\ta0"..., 1024) = 1024
read(20, "ith N110 TDC\n\t000b  double 14bit"..., 1024) = 1024
read(20, " controller\n# port 5 of 8\n\t6814 "..., 1024) = 1024
read(20, "y Module\n17a0  Genesys Logic, In"..., 1024) = 1024
read(20, "4 v1 802.11g Wireless-G Notebook"..., 1024) = 1024
read(20, "17d3 1284  ARC-1284 24 Port PCIe"..., 1024) = 1024
read(20, "t PCIe 2.0 to SAS/SATA 6Gb RAID "..., 1024) = 1024
read(20, "rt 10-Gigabit Ethernet (PCI-X, F"..., 1024) = 1024
read(20, "\n17df  Dini Group\n\t1864  Virtex4"..., 1024) = 1024
read(20, "0a  Virtex7 PCIe ASIC Emulation "..., 1024) = 1024
read(20, " Design [DNPCIe_K7_10G_LL]\n\t1a05"..., 1024) = 1024
read(20, "27  EN2710 [c.Link] MoCA 2.0 Net"..., 1024) = 1024
read(20, "idge\n\t6021  R6021 Host Bridge\n# "..., 1024) = 1024
read(20, "bient Technologies Inc\n\t4000  Ha"..., 1024) = 1024
read(20, " Wireless Network PCI Adapter\n\t\t"..., 1024) = 1024
read(20, "r\n\t\t1948 3c24  C54Ri v2 Wireless"..., 1024) = 1024
read(20, "R PCIe\n\t\t103c 18ec  Ralink RT329"..., 1024) = 1024
read(20, "ISDN card\n\t3069  ISDN PCI DC-105"..., 1024) = 1024
read(20, " MT23108 InfiniHost HCA flash re"..., 1024) = 1024
read(20, "ort Serial\n\t4208  MIport 3PCIU8 "..., 1024) = 1024
read(20, "3XT/V5/V8\n\t0047  Volari 8300 (ch"..., 1024) = 1024
read(20, "18ec 0302  NIFIC (szedata2) 2x10"..., 1024) = 1024
read(20, "\t0064  NT20E Inline Card\n\t0071  "..., 1024) = 1024
read(20, "exsis] Switch Virtual P2P PCIe B"..., 1024) = 1024
read(20, "re UARTs\n\t0019  SuperFSCC Serial"..., 1024) = 1024
read(20, "05  Micronas USA, Inc.\n1912  Ren"..., 1024) = 1024
read(20, "m]\n\t\t10b8 0103  SMC10GPCIe-10BT "..., 1024) = 1024
read(20, "\n\t\t1924 6206  SFN5122F-R6 SFP+ S"..., 1024) = 1024
read(20, "Adapter\n\t\t1924 6103  SFN5121T-R3"..., 1024) = 1024
read(20, "ra 7000 Series 10/40G Adapter\n\t\t"..., 1024) = 1024
read(20, "  XtremeScale X2562 OCP 3.0 Dual"..., 1024) = 1024
read(20, "FE4002-A1\n\t\t1924 0301  SFE4003-A"..., 1024) = 1024
read(20, "T (fallback firmware)\n# nee Curt"..., 1024) = 1024
read(20, "022E\n\t0111  P1022\n\t\t1c7f 5200  E"..., 1024) = 1024
read(20, "r\n\ta00b  PWRficient SERDES\n\ta00c"..., 1024) = 1024
read(20, "468  Eee PC 1015PX\n# E2200, E220"..., 1024) = 1024
read(20, "43 81e4  P5B [JMB363]\n\t\t1458 b00"..., 1024) = 1024
read(20, "cessor\n199a  Pulse-LINK, Inc.\n19"..., 1024) = 1024
read(20, "10102-FM-E / OCe10102-FX-E for E"..., 1024) = 1024
read(20, "b  NC554FLB 10Gb 2-port FlexFabr"..., 1024) = 1024
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
read(20, "lash Recovery]\n\t020b  MT27710 Fa"..., 1024) = 1024
read(20, "trum-2, Secure Flash recovery mo"..., 1024) = 1024
read(20, "R Dual Port Mezzanine Card\n\t\t15b"..., 1024) = 1024
read(20, "\n\t\t103c 22f4  InfiniBand FDR/Eth"..., 1024) = 1024
read(20, "and-up single-port 40GbE MCX415A"..., 1024) = 1024
read(20, "G\n\t\t15b3 0025  ConnectX-4 Lx 25 "..., 1024) = 1024
read(20, "Family [ConnectX-6 Lx]\n\t1020  MT"..., 1024) = 1024
read(20, "iniHost III Ex]\n\t6340  MT25408A0"..., 1024) = 1024
read(20, " IB/Flex-10 10Gb Adapter\n\t\t103c "..., 1024) = 1024
read(20, "pto disabled\n\ta2d2  MT416842 Blu"..., 1024) = 1024
read(20, "6c  MT53100 [Spectrum-2]\n\tcf70  "..., 1024) = 1024
read(20, "w/ opto coupler)\n\t1004  APCI2032"..., 1024) = 1024
read(20, "bd  DFI Inc\n15be  Sola Electroni"..., 1024) = 1024
read(20, "acheflow Inc\n15e1  Voice Technol"..., 1024) = 1024
read(20, "mman - Canada Ltd\n1601  Tenta Te"..., 1024) = 1024
read(20, "rSync T4U (4 port X.21/V.35/V.24"..., 1024) = 1024
read(20, "tor and FEC\n1631  Packard Bell B"..., 1024) = 1024
read(20, "bps CNA - LL\n\t\t1657 0024  16Gbps"..., 1024) = 1024
read(20, "roceIII110\n\t5a21  ProceIII150\n\t5"..., 1024) = 1024
read(20, "  Actiontec Electronics Inc\n\t010"..., 1024) = 1024
read(20, "astleNet Technology Inc.\n\t1170  "..., 1024) = 1024
read(20, "11g Wireless CardBus Adapter\n\t\t0"..., 1024) = 1024
read(20, "eless 801.11g PCI card\n\t\t1186 3a"..., 1024) = 1024
read(20, "4b9 cb21  CB21 802.11a/b/g Cardb"..., 1024) = 1024
read(20, "p Card\n\t\t1799 3010  F6D3010 Dual"..., 1024) = 1024
read(20, " 802.11 b/g  MiniPCI Adapter, Re"..., 1024) = 1024
read(20, "062  IPN-W100CB 802.11abg Wirele"..., 1024) = 1024
read(20, "  AR242x 802.11abg NIC (PCI Expr"..., 1024) = 1024
read(20, " Wireless CardBus Adapter\n\t\t1154"..., 1024) = 1024
read(20, "ini PCI Adapter\n\t0029  AR922X Wi"..., 1024) = 1024
read(20, "\t\t1a32 0306  EM306 802.11bgn Wir"..., 1024) = 1024
read(20, "AW-NE785 / AW-NE785H 802.11bgn W"..., 1024) = 1024
read(20, "e card on a series 3 laptop\n\t\t1a"..., 1024) = 1024
read(20, "twork Adapter\n\t0050  QCA9887 802"..., 1024) = 1024
read(20, "sed vendor ID 0001\n\t\t0001 0001  "..., 1024) = 1024
read(20, "es\n16ce  Roland Corp.\n16d5  Acro"..., 1024) = 1024
read(20, " Reconfigurable Conduction-Coole"..., 1024) = 1024
read(20, "le & Hold\n\t4d4e  PMC482, APC482,"..., 1024) = 1024
read(20, "figurable Spartan-6 FPGA with pl"..., 1024) = 1024
read(20, "c cells, conduction-cooled\n\t7006"..., 1024) = 1024
read(20, "rtix-7 FPGA module 48 TTL channe"..., 1024) = 1024
read(20, "le 24 RS485 channels\n\t7053  APA7"..., 1024) = 1024
read(20, "irst, Inc.\n170b  NetOctave\n\t0100"..., 1024) = 1024
read(20, "9  ROL/F-100 Fast Ethernet Adapt"..., 1024) = 1024
read(20, " isolated\n\t0243  PCA7428CS_F1 - "..., 1024) = 1024
read(20, " III CN78XX Network Processor\n\t0"..., 1024) = 1024
read(20, "04  CN2350 [LiquidIO II] 2-port "..., 1024) = 1024
read(20, "NDERX Key Memory\n\ta017  THUNDERX"..., 1024) = 1024
read(20, "-CBC\n\ta030  THUNDERX L2C-MCI\n\ta0"..., 1024) = 1024
read(20, "ith N110 TDC\n\t000b  double 14bit"..., 1024) = 1024
read(20, " controller\n# port 5 of 8\n\t6814 "..., 1024) = 1024
read(20, "y Module\n17a0  Genesys Logic, In"..., 1024) = 1024
read(20, "4 v1 802.11g Wireless-G Notebook"..., 1024) = 1024
read(20, "17d3 1284  ARC-1284 24 Port PCIe"..., 1024) = 1024
read(20, "t PCIe 2.0 to SAS/SATA 6Gb RAID "..., 1024) = 1024
read(20, "rt 10-Gigabit Ethernet (PCI-X, F"..., 1024) = 1024
read(20, "\n17df  Dini Group\n\t1864  Virtex4"..., 1024) = 1024
read(20, "0a  Virtex7 PCIe ASIC Emulation "..., 1024) = 1024
read(20, " Design [DNPCIe_K7_10G_LL]\n\t1a05"..., 1024) = 1024
read(20, "27  EN2710 [c.Link] MoCA 2.0 Net"..., 1024) = 1024
read(20, "idge\n\t6021  R6021 Host Bridge\n# "..., 1024) = 1024
read(20, "bient Technologies Inc\n\t4000  Ha"..., 1024) = 1024
read(20, " Wireless Network PCI Adapter\n\t\t"..., 1024) = 1024
read(20, "r\n\t\t1948 3c24  C54Ri v2 Wireless"..., 1024) = 1024
read(20, "R PCIe\n\t\t103c 18ec  Ralink RT329"..., 1024) = 1024
read(20, "ISDN card\n\t3069  ISDN PCI DC-105"..., 1024) = 1024
read(20, " MT23108 InfiniHost HCA flash re"..., 1024) = 1024
read(20, "ort Serial\n\t4208  MIport 3PCIU8 "..., 1024) = 1024
read(20, "3XT/V5/V8\n\t0047  Volari 8300 (ch"..., 1024) = 1024
read(20, "18ec 0302  NIFIC (szedata2) 2x10"..., 1024) = 1024
read(20, "\t0064  NT20E Inline Card\n\t0071  "..., 1024) = 1024
read(20, "exsis] Switch Virtual P2P PCIe B"..., 1024) = 1024
read(20, "re UARTs\n\t0019  SuperFSCC Serial"..., 1024) = 1024
read(20, "05  Micronas USA, Inc.\n1912  Ren"..., 1024) = 1024
read(20, "m]\n\t\t10b8 0103  SMC10GPCIe-10BT "..., 1024) = 1024
read(20, "\n\t\t1924 6206  SFN5122F-R6 SFP+ S"..., 1024) = 1024
read(20, "Adapter\n\t\t1924 6103  SFN5121T-R3"..., 1024) = 1024
read(20, "ra 7000 Series 10/40G Adapter\n\t\t"..., 1024) = 1024
read(20, "  XtremeScale X2562 OCP 3.0 Dual"..., 1024) = 1024
read(20, "FE4002-A1\n\t\t1924 0301  SFE4003-A"..., 1024) = 1024
read(20, "T (fallback firmware)\n# nee Curt"..., 1024) = 1024
read(20, "022E\n\t0111  P1022\n\t\t1c7f 5200  E"..., 1024) = 1024
read(20, "r\n\ta00b  PWRficient SERDES\n\ta00c"..., 1024) = 1024
read(20, "468  Eee PC 1015PX\n# E2200, E220"..., 1024) = 1024
read(20, "43 81e4  P5B [JMB363]\n\t\t1458 b00"..., 1024) = 1024
read(20, "cessor\n199a  Pulse-LINK, Inc.\n19"..., 1024) = 1024
read(20, "10102-FM-E / OCe10102-FX-E for E"..., 1024) = 1024
read(20, "b  NC554FLB 10Gb 2-port FlexFabr"..., 1024) = 1024
read(20, "00C V3 3200GB HHHL AIC\n\t0200  Hi"..., 1024) = 1024
read(20, "ligent Management system chip w/"..., 1024) = 1024
read(20, "er (Virtual Function)\n\ta22f  HNS"..., 1024) = 1024
read(20, "  CAN interface PC104+ HS/HS\n\t00"..., 1024) = 1024
read(20, "ction\n\t2000  TILE-Gx PCI Express"..., 1024) = 1024
read(20, "a77  Lightfleet Corporation\n1a78"..., 1024) = 1024
read(20, "eroflex Gaisler\n1acc  Point of V"..., 1024) = 1024
read(20, "h card reader controller\n1aec  W"..., 1024) = 1024
read(20, "ilesystem\n# virtio 1.0\n\t1050  Vi"..., 1024) = 1024
read(20, "6  Netcope Technologies, a.s.\n\tc"..., 1024) = 1024
read(20, "\n\t000f  ADQDSP\n\t0014  ADQ412\n\t00"..., 1024) = 1024
read(20, "SATA 6Gb/s Controller\n\t9178  88S"..., 1024) = 1024
read(20, "6  DELTACAST\n\t0007  DELTA-3G-elp"..., 1024) = 1024
read(20, "s Corp.\n1baa  QNAP Systems, Inc."..., 1024) = 1024
read(20, "000\n# Kiowa M.2\n\t\t1bb1 0125  Nyt"..., 1024) = 1024
read(20, "io encoder / decoder\n1bb5  Quant"..., 1024) = 1024
read(20, "etwork Adapter\n\t4263  10G-PCIE3-"..., 1024) = 1024
read(20, " [Corfu]\n\ta000  FBC2CGG3 Capture"..., 1024) = 1024
read(20, "04f5  PCIe3 1.6TB NVMe Flash Ada"..., 1024) = 1024
read(20, "ation\n\t0001  Hunter PCI Express\n"..., 1024) = 1024
read(20, "actPCI Serial CAN-1 card\n# suppo"..., 1024) = 1024
read(20, "ress Root Port\n\t0713  ZX-100/ZX-"..., 1024) = 1024
read(20, "D Standard Host Bridge\n\t31b2  ZX"..., 1024) = 1024
read(20, "ler\n\t9286  ZX-D eMMC Host Contro"..., 1024) = 1024
read(20, " AQC107 NBase-T/IEEE 802.3bz Eth"..., 1024) = 1024
read(20, "l]\n\t1010  AR-ARKA-FX1 [Arkville "..., 1024) = 1024
read(20, "net Controller Port 2/Port3\n\t145"..., 1024) = 1024
read(20, "[Goya]\n# PCIe accelerator card f"..., 1024) = 1024
read(20, "ller VF\n\t\t1dd8 4000  Naples 100G"..., 1024) = 1024
read(20, " 1\n\te007  eMAG PCI Express Root "..., 1024) = 1024
read(20, "Acorn CLE-215+\n\t1525  Xilinx BCU"..., 1024) = 1024
read(20, " SmartNIC\n\t3010  10-Giga TOE Sma"..., 1024) = 1024
read(20, " TOE Dual Port SFP+/CX4 Low Prof"..., 1024) = 1024
read(20, "se-T/NBASE-T Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "1.1 controller\n2a15  3D Vision(?"..., 1024) = 1024
read(20, "ipset CPU to PCI Bridge\n\t8012  V"..., 1024) = 1024
read(20, "\t3d3d 0116  Oxygen GVX1\n\t\t3d3d 0"..., 1024) = 1024
read(20, "0  ALS4000 Audio Chipset\n\t4710  "..., 1024) = 1024
read(20, "ort 10GbE Server Adapter\n\t\t152d "..., 1024) = 1024
read(20, "0 0003  WinTV PVR 250\n\t\t0070 000"..., 1024) = 1024
read(20, "CI Analog TV (NTSC+FM, Philips F"..., 1024) = 1024
read(20, " AVerTV Video Capture (NTSC-J, P"..., 1024) = 1024
read(20, "ric Company\n4624  Budker Institu"..., 1024) = 1024
read(20, "rd\n\t0c60  PCI-DIO-48H 8255 Digit"..., 1024) = 1024
read(20, "\t0f00  PCI-IIRO-8 Isolated Digit"..., 1024) = 1024
read(20, "\n\t1069  PCI-COM485/8 8x RS485 Ca"..., 1024) = 1024
read(20, "10dc  mPCIe-COM-4SM 4x RS232/RS4"..., 1024) = 1024
read(20, "SM 2x Isolated RS232/RS422/RS485"..., 1024) = 1024
read(20, "og Input w/FIFO Card\n\teca8  PCI-"..., 1024) = 1024
read(20, "rabber\n\t0030  [mvHYPERION-HD-SDI"..., 1024) = 1024
read(20, "\n\t0b04  BU-65569I4 MIL-STD-1553 "..., 1024) = 1024
read(20, "M] vers 1\n\t8882  86c868 [Vision "..., 1024) = 1024
read(20, "333 8904  86C365 Trio3D AGP\n\t890"..., 1024) = 1024
read(20, "\t1092 480e  Stealth III S540\n\t\t1"..., 1024) = 1024
read(20, "\n\t8c22  SuperSavage MX/128\n\t8c24"..., 1024) = 1024
read(20, "chnologies\n\t6178  DVB Tuner PCIe"..., 1024) = 1024
read(20, "de HID events.\n\tc110  Virtualize"..., 1024) = 1024
read(20, "nc.\n7063  pcHDTV\n\t2000  HD-2000\n"..., 1024) = 1024
read(20, "otebook PC [MD98410]\n\t\te4bf 50c1"..., 1024) = 1024
read(20, "Centrino Wireless-N 1000 BG\n\t\t80"..., 1024) = 1024
read(20, "ntrino Advanced-N + WiMAX 6250 2"..., 1024) = 1024
read(20, "01  Xeon E3-1200/2nd Generation "..., 1024) = 1024
read(20, "mily Integrated Graphics Control"..., 1024) = 1024
read(20, "\t1043 1477  N56VZ\n\t\t1043 844d  P"..., 1024) = 1024
read(20, "ller\n\t015d  Xeon E3-1200 v2/3rd "..., 1024) = 1024
read(20, " Bridge\n\t030d  80312 I/O Compani"..., 1024) = 1024
read(20, "3 Segment-B PCIe Express to PCI-"..., 1024) = 1024
read(20, "2375EB/SB PCI to EISA Bridge\n\t04"..., 1024) = 1024
read(20, "0SP Scalability Port 5 registers"..., 1024) = 1024
read(20, "\t06ea  Comet Lake PCH Serial IO "..., 1024) = 1024
read(20, "own Power Management Unit\n\t0811 "..., 1024) = 1024
read(20, "Wireless-N + WiMAX 6150\n\t\t8086 1"..., 1024) = 1024
read(20, "o Wireless-N 135 BGN\n\t\t8086 0462"..., 1024) = 1024
read(20, "ireless 7260\n# Wilkins Peak 2\n\t\t"..., 1024) = 1024
read(20, "e  Dual Band Wireless-AC 7260\n# "..., 1024) = 1024
read(20, "Wireless-N 7260\n# Wilkins Peak 2"..., 1024) = 1024
read(20, "Wilkins Peak 2\n\t\t8086 4270  Wire"..., 1024) = 1024
read(20, "\t8086 0470  Dual Band Wireless-A"..., 1024) = 1024
read(20, "ns Peak 1\n\t\t8086 8370  Dual Band"..., 1024) = 1024
read(20, "ak 2 AC\n\t\t8086 5010  Dual Band W"..., 1024) = 1024
read(20, "ne Peak 2 AGN\n\t\t8086 9000  Dual "..., 1024) = 1024
read(20, " Wireless-N 7265\n# Stone Peak 2 "..., 1024) = 1024
read(20, "\t1028 1fe4  Express Flash NVMe 4"..., 1024) = 1024
read(20, ".5\" U.2 (P4500)\n\t\t1137 0231  NVM"..., 1024) = 1024
read(20, "[3DNAND] 4.0TB AIC (P4500)\n\t\t1d4"..., 1024) = 1024
read(20, ".2 (P4600)\n\t\t1028 1fe7  Express "..., 1024) = 1024
read(20, "e4  Atom Processor D2xxx/N2xxx I"..., 1024) = 1024
read(20, "er\n\t0bf5  Atom Processor D2xxx/N"..., 1024) = 1024
read(20, "n E7 v4/Xeon E5 v4/Xeon E3 v4/Xe"..., 1024) = 1024
read(20, "al\n\t0c77  Atom Processor S1200 I"..., 1024) = 1024
read(20, "d Graphics Controller\n\t0d4c  Eth"..., 1024) = 1024
read(20, "t 2a\n\t0e05  Xeon E7 v2/Xeon E5 v"..., 1024) = 1024
read(20, "0\n\t\t1028 04f7  Xeon E5 v2 on Pow"..., 1024) = 1024
read(20, "Xeon E7 v2/Xeon E5 v2/Core i7 VT"..., 1024) = 1024
read(20, "3e  Xeon E7 v2/Xeon E5 v2/Core i"..., 1024) = 1024
read(20, "hannel Target Address Decoder Re"..., 1024) = 1024
read(20, "ent Register\n\t0ea0  Xeon E7 v2/X"..., 1024) = 1024
read(20, "el 0-3 ERROR Registers 0\n\t0eb3  "..., 1024) = 1024
read(20, "\t0ec9  Xeon E7 v2/Xeon E5 v2/Cor"..., 1024) = 1024
read(20, "gisters\n\t0eec  Xeon E7 v2/Xeon E"..., 1024) = 1024
read(20, "5 v2/Core i7 DDRIO\n\t0efa  Xeon E"..., 1024) = 1024
read(20, "ine\n\t0f1c  Atom Processor Z36xxx"..., 1024) = 1024
read(20, "36xxx/Z37xxx Series LPIO2 I2C Co"..., 1024) = 1024
read(20, "em 56 Cardbus II\n\t\t8086 200e  Pr"..., 1024) = 1024
read(20, "er)\n\t\t8086 1112  PRO/1000 T Desk"..., 1024) = 1024
read(20, "ction\n\t\t8086 1001  PRO/1000 MT S"..., 1024) = 1024
read(20, "esktop Adapter\n\t1014  82541ER Gi"..., 1024) = 1024
read(20, "thernet Controller\n\t\t8086 1000  "..., 1024) = 1024
read(20, "1CAM (ICH3) PRO/100 VE (LOM) Eth"..., 1024) = 1024
read(20, "03c  82801DB PRO/100 VM (CNR) Et"..., 1024) = 1024
read(20, "backplane\n\t1050  82562EZ 10/100 "..., 1024) = 1024
read(20, "e  PRO/1000 PT Dual Port Network"..., 1024) = 1024
read(20, "roller Mobile\n\t\t103c 30d5  530 L"..., 1024) = 1024
read(20, "9  82546GB Gigabit Ethernet Cont"..., 1024) = 1024
read(20, "\t8086 1082  PRO/1000 PT Server A"..., 1024) = 1024
read(20, "nt)\n\t108f  Active Management Tec"..., 1024) = 1024
read(20, " a11f  PRO/10GbE CX4 Server Adap"..., 1024) = 1024
read(20, "thernet Controller\n\t10b9  82572E"..., 1024) = 1024
read(20, "nnection\n\t10c6  82598EB 10-Gigab"..., 1024) = 1024
read(20, "6 a04c  Gigabit ET Dual Port Ser"..., 1024) = 1024
read(20, " Gigabit VT Quad Port Server Ada"..., 1024) = 1024
read(20, "igabit Network Connection\n\t\t8086"..., 1024) = 1024
read(20, "74L Gigabit Network Connection\n\t"..., 1024) = 1024
read(20, "\n\t\t15d9 0611  AOC-STGN-I2S [REV "..., 1024) = 1024
read(20, " PRO/1000 MF Server Adapter (LX)"..., 1024) = 1024
read(20, " (OTG)\n\t11a0  Merrifield SCU IPC"..., 1024) = 1024
read(20, "on LAN*\n\t\t0e11 3006  82559 Fast "..., 1024) = 1024
read(20, " Adapter\n\t\t1014 01f2  10/100 Eth"..., 1024) = 1024
read(20, "\t\t103c 1200  NetServer 10/100TX\n"..., 1024) = 1024
read(20, "6 0005  82557 10/100\n\t\t8086 0006"..., 1024) = 1024
read(20, "dapter\n\t\t8086 0050  EtherExpress"..., 1024) = 1024
read(20, "dem\n\t\t8086 200f  EtherExpress PR"..., 1024) = 1024
read(20, "86 2204  EtherExpress PRO/100+ M"..., 1024) = 1024
read(20, "00 S Network Connection\n\t\t8086 3"..., 1024) = 1024
read(20, "8086 1361  82806AA PCI64 Hub Con"..., 1024) = 1024
read(20, "ection\n\t\t8086 a10c  Gigabit ET Q"..., 1024) = 1024
read(20, " 7b13  Dual 10GBASE-T LP\n\t1520  "..., 1024) = 1024
read(20, "hernet Adapter\n\t\t1093 76b1  PCIe"..., 1024) = 1024
read(20, "nection\n\t\t108e 7b17  Quad Port G"..., 1024) = 1024
read(20, "ion\n\t\t8086 0001  Ethernet Server"..., 1024) = 1024
read(20, "verged Network Adapter X540-T2\n\t"..., 1024) = 1024
read(20, "8 1GbE interface\n\t\t1059 0130  T4"..., 1024) = 1024
read(20, "r\n\t\t1bd4 0030  10G SFP+ SP EP101"..., 1024) = 1024
read(20, "olt 3 Edition\n\t\t18d4 0c08  X550 "..., 1024) = 1024
read(20, "1570  Ethernet Connection I219-V"..., 1024) = 1024
read(20, "r X710\n\t\t8086 0001  Ethernet Con"..., 1024) = 1024
read(20, " for OCP NIC 3.0\n\t\t8086 00a2  Et"..., 1024) = 1024
read(20, "ce\n\t\t1590 0000  Ethernet 2-port "..., 1024) = 1024
read(20, " Adapter XL710-Q1\n\t\t8086 0003  E"..., 1024) = 1024
read(20, "3  Ethernet Converged Network Ad"..., 1024) = 1024
read(20, "PCIe x8 Bifurcated as x4x4, UEFI"..., 1024) = 1024
read(20, "\t8086 0007  Ethernet Network Ada"..., 1024) = 1024
read(20, "er E810-XXV-4\n\t\t8086 0008  Ether"..., 1024) = 1024
read(20, "ual Function\n\t15a9  X552 Virtual"..., 1024) = 1024
read(20, "erbolt 3 USB 3.1 Controller (Low"..., 1024) = 1024
read(20, "E-DA2\n\t\t8086 0001  Intel(R) Ethe"..., 1024) = 1024
read(20, "I [Titan Ridge 4C 2018]\n\t15ec  J"..., 1024) = 1024
read(20, "-t Adapter\n\t\t8086 0006  Ethernet"..., 1024) = 1024
read(20, "\t1610  Broadwell-U Host Bridge -"..., 1024) = 1024
read(20, "troller (x16)\n\t1902  HD Graphics"..., 1024) = 1024
read(20, "s\n\t\t1028 06e4  XPS 15 9550\n\t\t103"..., 1024) = 1024
read(20, "0\n\t193b  Iris Pro Graphics 580\n\t"..., 1024) = 1024
read(20, "\te4bf 1040  CU1-CHORUS\n\t\te4bf 31"..., 1024) = 1024
read(20, "r 0\n\t19b2  Atom Processor C3000 "..., 1024) = 1024
read(20, "Atom Processor C3000 Series Inte"..., 1024) = 1024
read(20, "5 [Brookdale] Chipset Host Bridg"..., 1024) = 1024
read(20, "\t1028 04da  Vostro 3750\n\t\t17aa 2"..., 1024) = 1024
read(20, "o8,2 [Core i7, 15\", 2011]\n\t1c16 "..., 1024) = 1024
read(20, "ies/C200 Series Chipset Family S"..., 1024) = 1024
read(20, "USB Enhanced Host Controller #2\n"..., 1024) = 1024
read(20, "6 Series Chipset Family LPC Cont"..., 1024) = 1024
read(20, "C200 Series Chipset Family LPC C"..., 1024) = 1024
read(20, "  C600/X79 series chipset PCI Ex"..., 1024) = 1024
read(20, "eries chipset High Definition Au"..., 1024) = 1024
read(20, "rver\n\t1d3f  C608/C606/X79 series"..., 1024) = 1024
read(20, "64  C600/X79 series chipset Dual"..., 1024) = 1024
read(20, "E mode]\n\t1e01  7 Series Chipset "..., 1024) = 1024
read(20, "3 108d  VivoBook X202EV\n\t\t1043 1"..., 1024) = 1024
read(20, "\t1e20  7 Series/C216 Chipset Fam"..., 1024) = 1024
read(20, "1e26  Motherboard\n\t1e2d  7 Serie"..., 1024) = 1024
read(20, "mily IDE-r Controller\n\t1e3d  7 S"..., 1024) = 1024
read(20, " 7 Series Chipset Family LPC Con"..., 1024) = 1024
read(20, "7  Atom processor C2000 SoC Tran"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA2 Con"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA3 Con"..., 1024) = 1024
read(20, "36  Sky Lake-E IOxAPIC Configura"..., 1024) = 1024
read(20, "s\n\t2078  Sky Lake-E PCU Register"..., 1024) = 1024
read(20, "Series LPIO1 HSUART Controller #"..., 1024) = 1024
read(20, "CI Controller\n\t22b8  Atom/Celero"..., 1024) = 1024
read(20, "8000/J3xxx/N3xxx Series PCI Expr"..., 1024) = 1024
read(20, "A Controller [AHCI Mode]\n\t23a6  "..., 1024) = 1024
read(20, " 220 Integrated Digital Audio\n\t\t"..., 1024) = 1024
read(20, "7b 0507  TH7II-RAID\n\t\t8086 4532 "..., 1024) = 1024
read(20, "Deskpro EN Audio\n\t\t0e11 0088  Ev"..., 1024) = 1024
read(20, "T61/R61\n\t\t17c0 10d2  Medion Akoy"..., 1024) = 1024
read(20, "U Virtual Machine\n\t\t8086 3010  E"..., 1024) = 1024
read(20, "\n\t\t1028 04f7  PowerEdge R320 ser"..., 1024) = 1024
read(20, "86 3424  SE7501HG2 Mainboard\n\t\t8"..., 1024) = 1024
read(20, "/GR315MP\n\t\t134d 4c21  Dell Inspi"..., 1024) = 1024
read(20, "26  Optiplex GX260\n\t\t1028 0160  "..., 1024) = 1024
read(20, "\t1071 8160  MIM2000\n\t\t114a 0582 "..., 1024) = 1024
read(20, "D500\n\t\te4bf 0cc9  CC9-SAMBA\n\t\te4"..., 1024) = 1024
read(20, "roller\n\t\t1014 0524  ThinkPad T4x"..., 1024) = 1024
read(20, "33\n\t\t1071 8160  MIM2000\n\t\t144d c"..., 1024) = 1024
read(20, "004  D1451 Mainboard (SCENIC N30"..., 1024) = 1024
read(20, " QEMU Virtual Machine\n\t\t4c53 109"..., 1024) = 1024
read(20, "50 onboard UHCI\n\t\t1028 016d  Pow"..., 1024) = 1024
read(20, "865PE)\n\t\t1462 7280  865PE Neo2 ("..., 1024) = 1024
read(20, "Motherboard (865G)\n\t\t15d9 4580  "..., 1024) = 1024
read(20, "s server mainboard\n\t\t1028 0168  "..., 1024) = 1024
read(20, "e 2850 IDE Controller\n\t\t1028 017"..., 1024) = 1024
read(20, "rd EHCI\n\t\t1028 0183  PowerEdge 1"..., 1024) = 1024
read(20, "rd D865GLC\n\t\t8086 524c  D865PERL"..., 1024) = 1024
read(20, "ion QSFP28\n\t\t1cb8 0004  Omni-Pat"..., 1024) = 1024
read(20, "\n\t2501  82820 820 (Camino) Chips"..., 1024) = 1024
read(20, "UM Controller\n\t2547  E7500/E7501"..., 1024) = 1024
read(20, "c  d330 uT\n\t\t1043 80f2  P4P800/P"..., 1024) = 1024
read(20, "oot Port\n\t2582  82915G/GV/910GL "..., 1024) = 1024
read(20, "9c  NX6110/NC6120\n\t\t103c 308a  N"..., 1024) = 1024
read(20, "Computer\n\t\t1775 ce90  CE9\n\t\t4c53"..., 1024) = 1024
read(20, "el 200 D2020 mainboard\n\t\t1775 10"..., 1024) = 1024
read(20, " 5000 Series Chipset PCI Express"..., 1024) = 1024
read(20, "t FBD Registers\n\t\t103c 31fd  Pro"..., 1024) = 1024
read(20, "ers\n\t2614  E8500/E8501 Reserved "..., 1024) = 1024
read(20, "0  PowerEdge 6850 Reserved Regis"..., 1024) = 1024
read(20, "\n\t\t1028 0179  Optiplex GX280\n\t\t1"..., 1024) = 1024
read(20, " Mainboard\n\t\t1462 7028  915P/G N"..., 1024) = 1024
read(20, "orkstation\n\t\t103c 0944  Compaq n"..., 1024) = 1024
read(20, "43 80a6  P5GD1-VW Mainboard\n\t\t14"..., 1024) = 1024
read(20, "FB/FBM/FR/FW/FRW (ICH6 Family) I"..., 1024) = 1024
read(20, "01f0  PowerEdge R900 onboard USB"..., 1024) = 1024
read(20, "d9 8680  X7DVL-E-O motherboard\n\t"..., 1024) = 1024
read(20, " Datacenter SSD [Optane]\n\t\t1028 "..., 1024) = 1024
read(20, "45G/GZ Integrated Graphics Contr"..., 1024) = 1024
read(20, "5  ThinkPad T60\n\t\t17aa 2017  Thi"..., 1024) = 1024
read(20, "(ICH7 Family) LPC Interface Brid"..., 1024) = 1024
read(20, "3 8179  P5B-MX/WiFi-AP, P5KPL-VM"..., 1024) = 1024
read(20, "0 Laptop\n\t\t17aa 200d  ThinkPad R"..., 1024) = 1024
read(20, "d7  XPS M1210\n\t\t1028 01df  Power"..., 1024) = 1024
read(20, "08\n\t\t1043 8179  P5B-MX/WiFi-AP, "..., 1024) = 1024
read(20, "\n\t\t17aa 200a  ThinkPad R60/T60/X"..., 1024) = 1024
read(20, "on MIM 2240 Notebook PC [MD98100"..., 1024) = 1024
read(20, "efinition Audio Controller\n\t\t102"..., 1024) = 1024
read(20, "C200 audio [Realtek ALC861VD]\n\t\t"..., 1024) = 1024
read(20, " Modem Controller\n\t27de  82801G "..., 1024) = 1024
read(20, "r\n\t\t103c 30c1  Compaq 6910p\n\t\t17"..., 1024) = 1024
read(20, "01HB (ICH8) 4 port SATA Controll"..., 1024) = 1024
read(20, "GN-NR120E\n\t\t17aa 20a7  ThinkPad "..., 1024) = 1024
read(20, " 9005  Vaio VGN-FZ260E\n\t\t104d 90"..., 1024) = 1024
read(20, "Z260E\n\t\t104d 902d  VAIO VGN-NR12"..., 1024) = 1024
read(20, "ab  ThinkPad T61/R61\n\t\t17c0 4083"..., 1024) = 1024
read(20, "1\n\t\t1028 01da  OptiPlex 745\n\t\t10"..., 1024) = 1024
read(20, "\t1025 0121  Aspire 5920G\n\t\t1025 "..., 1024) = 1024
read(20, "io VGN-FZ260E\n\t\t104d 902d  VAIO "..., 1024) = 1024
read(20, "ATA Controller\n\t\t1028 0211  Opti"..., 1024) = 1024
read(20, "TA Controller\n\t\t1028 0211  Optip"..., 1024) = 1024
read(20, "934  82801I (ICH9 Family) USB UH"..., 1024) = 1024
read(20, " PowerEdge R610 USB UHCI Control"..., 1024) = 1024
read(20, "\n\t\t1462 7360  G33/P35 Neo\n\t\t17aa"..., 1024) = 1024
read(20, "Controller\n\t\t1028 0236  PowerEdg"..., 1024) = 1024
read(20, "ller #1\n\t\t1028 020d  Inspiron 53"..., 1024) = 1024
read(20, "M710 USB EHCI Controller\n\t\t103c "..., 1024) = 1024
read(20, "ICH9/ICH9R]\n\t\t8086 2940  Optiple"..., 1024) = 1024
read(20, " Controller\n\t2975  82946GZ/GL HE"..., 1024) = 1024
read(20, " PT IDER Controller\n\t29a7  82P96"..., 1024) = 1024
read(20, "76  P5K PRO Motherboard: Intel 8"..., 1024) = 1024
read(20, "\t29e5  82X38/X48 Express MEI Con"..., 1024) = 1024
read(20, "ile GM965/GL960 Integrated Graph"..., 1024) = 1024
read(20, " cc47  CCG-RUMBA\n\t2a11  Mobile G"..., 1024) = 1024
read(20, " Redirection\n\t2a50  Cantiga MEI "..., 1024) = 1024
read(20, "on Processor E7 Product Family S"..., 1024) = 1024
read(20, "\n\t2b50  Xeon Processor E7 Produc"..., 1024) = 1024
read(20, "vel Cache Coherence Engine 8\n\t2b"..., 1024) = 1024
read(20, "500/Core i7 Integrated Memory Co"..., 1024) = 1024
read(20, "cessor QuickPath Architecture Ge"..., 1024) = 1024
read(20, " Link 0\n\t2c91  Core Processor QP"..., 1024) = 1024
read(20, "ink 0\n\t2cd1  Xeon C5500/C3500 QP"..., 1024) = 1024
read(20, "Channel 2 Control\n\t2cf1  Xeon C5"..., 1024) = 1024
read(20, "5600 Series Integrated Memory Co"..., 1024) = 1024
read(20, " Chipset Integrated Graphics Con"..., 1024) = 1024
read(20, "3  4 Series Chipset Integrated G"..., 1024) = 1024
read(20, "eries Chipset PT IDER Controller"..., 1024) = 1024
read(20, "ng Unit\n\t2e70  CE Media Processo"..., 1024) = 1024
read(20, "\t2f0a  Xeon E7 v3/Xeon E5 v3/Cor"..., 1024) = 1024
read(20, "e Registers\n\t2f1f  Xeon E7 v3/Xe"..., 1024) = 1024
read(20, "rface\n\t2f36  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
read(20, "E5 v3/Core i7 Integrated Memory "..., 1024) = 1024
read(20, "83  Xeon E7 v3/Xeon E5 v3/Core i"..., 1024) = 1024
read(20, "mory Controller 0 Channel Target"..., 1024) = 1024
read(20, "sters\n\t2fb7  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
read(20, "d Memory Controller 1 Channel 1 "..., 1024) = 1024
read(20, "3/Core i7 Unicast Registers\n\t2fe"..., 1024) = 1024
read(20, "ffa  Xeon E7 v3/Xeon E5 v3/Core "..., 1024) = 1024
read(20, "usted Execution Engine Interface"..., 1024) = 1024
read(20, "ni Lake PCI Express Root Port\n\t3"..., 1024) = 1024
read(20, " (SL8Dx) in IOC Mode SAS/SATA\n\t3"..., 1024) = 1024
read(20, "t 7\n\t\t103c 330b  ProLiant ML150 "..., 1024) = 1024
read(20, "ickData Technology Device\n\t342c "..., 1024) = 1024
read(20, "ce Lake-LP Serial IO I2c Control"..., 1024) = 1024
read(20, "board\n\t3511  6310ESB PCI Express"..., 1024) = 1024
read(20, "\te4bf 0cc9  CC9-SAMBA\n\t\te4bf 0cd"..., 1024) = 1024
read(20, "or to I/O Controller\n\t\t1014 055e"..., 1024) = 1024
read(20, "0 Processor AMC\n\t3592  E7320 Mem"..., 1024) = 1024
read(20, "b5  3100 Chipset Enhanced DMA Co"..., 1024) = 1024
read(20, "500/C3500 DMI\n\t3708  Xeon C5500/"..., 1024) = 1024
read(20, " NTB Secondary\n\t3728  Xeon C5500"..., 1024) = 1024
read(20, "d 0010  88E1514 Ethernet OCP 2x1"..., 1024) = 1024
read(20, "020  Ethernet Connection X722 fo"..., 1024) = 1024
read(20, "oller\n\t3a22  82801JI (ICH10 Fami"..., 1024) = 1024
read(20, "10 USB UHCI Controller\n\t\t1028 02"..., 1024) = 1024
read(20, "028 028d  PowerEdge T410 USB UHC"..., 1024) = 1024
read(20, "xe Motherboard\n\t\t1043 82ea  P6T "..., 1024) = 1024
read(20, "(ICH10 Family) USB UHCI Controll"..., 1024) = 1024
read(20, "  PM55 Chipset LPC Interface Con"..., 1024) = 1024
read(20, " Interface Controller\n\t3b13  5 S"..., 1024) = 1024
read(20, " 0605  X8SIL\n\t\t15d9 060d  C7SIM-"..., 1024) = 1024
read(20, "\te4bf 50c1  PC1-GROOVE\n\t3b30  5 "..., 1024) = 1024
read(20, "SB Universal Host Controller\n\t3b"..., 1024) = 1024
read(20, "  EliteBook 8540p\n\t\t144d c06a  R"..., 1024) = 1024
read(20, " VECI Controller\n\t3b56  5 Series"..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO PCI Express "..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO Switch and I"..., 1024) = 1024
read(20, "r Target Address Decoder 3\n\t3cae"..., 1024) = 1024
read(20, "ation Registers\n\t3ce4  Xeon E5/C"..., 1024) = 1024
read(20, "e Lake S]\n\t3e33  8th/9th Gen Cor"..., 1024) = 1024
read(20, "troller Hub\n\t4003  5400 Chipset "..., 1024) = 1024
read(20, " Atom Processor E6xx Integrated "..., 1024) = 1024
read(20, "n\n\t\t8086 1c00  PRO/Wireless 3945"..., 1024) = 1024
read(20, " 2x2 ABG\n\t4230  PRO/Wireless 496"..., 1024) = 1024
read(20, "6 1316  WiFi Link 5100 ABG\n\t4238"..., 1024) = 1024
read(20, "E80578 Expansion Bus\n\t500e  LE80"..., 1024) = 1024
read(20, "l Expansion Bus\n\t503e  EP80579 G"..., 1024) = 1024
read(20, " v6/7th Gen Core Processor Host "..., 1024) = 1024
read(20, "UHD Graphics 620\n\t\t17aa 225e  Th"..., 1024) = 1024
read(20, "troller #3\n\t5ab2  Celeron N3350/"..., 1024) = 1024
read(20, "0  Celeron N3350/Pentium N4200/A"..., 1024) = 1024
read(20, " Express x4 Port 4\n\t65e5  5100 C"..., 1024) = 1024
read(20, "Xeon E3 v4/Xeon D PCI Express Ro"..., 1024) = 1024
read(20, "n D IIO Debug\n\t6f1a  Xeon E7 v4/"..., 1024) = 1024
read(20, "L-F\n\t6f27  Xeon E7 v4/Xeon E5 v4"..., 1024) = 1024
read(20, "e  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
read(20, " Address/Thermal/RAS\n\t6f6a  Xeon"..., 1024) = 1024
read(20, "1  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
read(20, "v4/Xeon E5 v4/Xeon E3 v4/Xeon D "..., 1024) = 1024
read(20, "4/Xeon D Memory Controller 0 - C"..., 1024) = 1024
read(20, " v4/Xeon D Power Control Unit\n\t6"..., 1024) = 1024
read(20, "hannel 0 Thermal Control\n\t6fd1  "..., 1024) = 1024
read(20, "eon E7 v4/Xeon E5 v4/Xeon E3 v4/"..., 1024) = 1024
read(20, "gent\n\t6ffd  Xeon E7 v4/Xeon E5 v"..., 1024) = 1024
read(20, "  CL7 mainboard\n\t\t4c53 1060  PC7"..., 1024) = 1024
read(20, "\t7192  440BX/ZX/DX - 82443BX/ZX/"..., 1024) = 1024
read(20, "3  82372FB PIIX5 SMBus\n\t7800  82"..., 1024) = 1024
read(20, "Controller\n\t8119  US15W/US15X/US"..., 1024) = 1024
read(20, "(SDC)\n\t84e2  460GX - 84460GX AGP"..., 1024) = 1024
read(20, "O Controller #1\n\t880a  Platform "..., 1024) = 1024
read(20, "olt 3 USB Controller\n\t8a17  Ice "..., 1024) = 1024
read(20, "  8 Series/C220 Series Chipset F"..., 1024) = 1024
read(20, "0 Series Chipset Family PCI Expr"..., 1024) = 1024
read(20, " Thermal Management Controller\n\t"..., 1024) = 1024
read(20, "KU LPC Controller\n\t8c42  8 Serie"..., 1024) = 1024
read(20, "er\n\t8c55  8 Series/C220 Series C"..., 1024) = 1024
read(20, "ontroller [RAID Mode]\n\t8c87  9 S"..., 1024) = 1024
read(20, "ies Chipset Family USB xHCI Cont"..., 1024) = 1024
read(20, "d12  C610/X99 series chipset PCI"..., 1024) = 1024
read(20, "s chipset USB Enhanced Host Cont"..., 1024) = 1024
read(20, "C Controller\n\t8d4a  C610/X99 ser"..., 1024) = 1024
read(20, "ntegrated RAID\n\t96a1  Integrated"..., 1024) = 1024
read(20, "40\n\t9c04  8 Series SATA Controll"..., 1024) = 1024
read(20, "1c  8 Series PCI Express Root Po"..., 1024) = 1024
read(20, "Series LPC Controller\n\t9c60  8 S"..., 1024) = 1024
read(20, "t Point-LP Secure Digital IO Con"..., 1024) = 1024
read(20, " Latitude 3570\n\t\t103c 8079  Elit"..., 1024) = 1024
read(20, "\n\t\t1025 115f  Acer Aspire E5-575"..., 1024) = 1024
read(20, " ThinkPad T570\n\t\t17aa 224f  Thin"..., 1024) = 1024
read(20, "Sunrise Point-LP LPC Controller\n"..., 1024) = 1024
read(20, "rise Point-LP HD Audio\n\t\t1025 10"..., 1024) = 1024
read(20, "n Point-LP MEI Controller #1\n\t9d"..., 1024) = 1024
read(20, "072  Notebook N150P\n\ta011  Atom "..., 1024) = 1024
read(20, "a  Tiger Lake-LP Serial IO I2C C"..., 1024) = 1024
read(20, "/C230 Series Chipset Family PCI "..., 1024) = 1024
read(20, "e4  XPS 15 9550\n\t\t103c 825b  OME"..., 1024) = 1024
read(20, "\n\ta13b  100 Series/C230 Series C"..., 1024) = 1024
read(20, "hipset LPC/eSPI Controller\n\ta153"..., 1024) = 1024
read(20, "ess Root Port #17\n\ta168  100 Ser"..., 1024) = 1024
read(20, "Root Port #9\n\ta199  C620 Series "..., 1024) = 1024
read(20, " Chipset Family MEI Controller #"..., 1024) = 1024
read(20, "MROM 1\n\ta1f8  Lewisburg IE: HECI"..., 1024) = 1024
read(20, "press Root Port #10\n\ta29a  200 S"..., 1024) = 1024
read(20, " PCH CSME HECI #1\n\ta2bb  200 Ser"..., 1024) = 1024
read(20, "#24\n\ta2f0  200 Series PCH HD Aud"..., 1024) = 1024
read(20, "PCH PCI Express Root Port #15\n\ta"..., 1024) = 1024
read(20, "l IO I2C Controller #0\n\ta369  Ca"..., 1024) = 1024
read(20, "\td132  Core Processor DMI\n\t\t1028"..., 1024) = 1024
read(20, "-Port Ethernet Network Adaptor S"..., 1024) = 1024
read(20, "P+\n80ee  InnoTek Systemberatung "..., 1024) = 1024
read(20, "oad Engine\n\t\t9004 7710  ANA-7711"..., 1024) = 1024
read(20, "2022 2-port 64 bit 10/100\n\t\t9004"..., 1024) = 1024
read(20, "W Dual AHA-394xAU/AUW/AUWD AIC-7"..., 1024) = 1024
read(20, "\t\t9005 0003  AAA-131U2 Array1000"..., 1024) = 1024
read(20, "f620  Compaq 64-Bit/66MHz Dual C"..., 1024) = 1024
read(20, "TK RAID EXT\n\t\t108e 7aac  STK RAI"..., 1024) = 1024
read(20, "005 02a5  ICP ICP5085BR\n\t\t9005 0"..., 1024) = 1024
read(20, "5 028d  ASR-2130S\n\t\t9005 029b  A"..., 1024) = 1024
read(20, "  Series 6 - ASR-61205 - 12 inte"..., 1024) = 1024
read(20, "/PCIe 3.0\n\t\t9005 0553  Series 8 "..., 1024) = 1024
read(20, "c460  RAID P460-M2\n\t\t193d c461  "..., 1024) = 1024
read(20, "\n\t\t9005 0908  SmartHBA 2100\n\t\t90"..., 1024) = 1024
read(20, "pirit-Lite non-RAID)\n\t043e  AIC-"..., 1024) = 1024
read(20, "1011  PRIMERGY RX300 onboard SCS"..., 1024) = 1024
read(20, "logy Inc\n\t6565  6565\n# nee Netmo"..., 1024) = 1024
read(20, "aptor\n\t9912  PCIe 9912 Multi-I/O"..., 1024) = 1024
read(20, "\naa42  Scitex Digital Video\naa55"..., 1024) = 1024
read(20, "DeckLink Studio\n\ta11e  DeckLink "..., 1024) = 1024
read(20, "ologies, Inc.\n\t0001  TurboCap Po"..., 1024) = 1024
read(20, "P/TE207P dual-span T1/E1/J1 card"..., 1024) = 1024
read(20, "E1/J1 card\n\t800c  Wildcard A8A 8"..., 1024) = 1024
read(20, "BAE9\n\t004e  PC104p-Biserial-III-"..., 1024) = 1024
read(20, "\n\te000  W89C940\ne159  Tiger Jet "..., 1024) = 1024
read(20, "Digi32 Pro\n\t9898  Digi32/8\neabb "..., 1024) = 1024
read(20, "A-48 Gig Ethernet/OC-3/OC-12/OC-"..., 1024) = 1024
read(20, "Inc. (Wrong ID)\nf05b  Foxconn In"..., 1024) = 1024
read(20, "Inc\n\ta0fa  BCM4210 iLine10 HomeP"..., 1024) = 1024
read(20, "PCI native mode-only controller,"..., 1024) = 1024
read(20, "\n\t\t00  VGA controller\n\t\t01  8514"..., 1024) = 1024
read(20, "get\n\t02  Multiport serial contro"..., 1024) = 1024
read(20, "OHCI\n\t01  ACCESS Bus\n\t02  SSA\n\t0"..., 1024) = 1024
read(20, "\t80  Signal processing controlle"..., 1024) = 320
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:03:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\20\27F\1\20\0\1\0\200\21\20\0\0\0\10\0\0\220\0\0 \226\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000090000000 0x0000000093f"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\345\31\20\27F\1\20\0\1\0\200\21\20\0\0\0\10\0\0\220\0\0 \226\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:03:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:03:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\27\30\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\27\30\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\300\235\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x000000009dc00000 0x000000009dc"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\300\235\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:17:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:08.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:08.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:09.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:09.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0a.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0a.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0b.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0b.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0e.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0e.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:0f.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:0f.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:10.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:10.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:11.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:11.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1d.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1d.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:17:1e.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:17:1e.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:18:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3007G\1\20\0\t\0\4\6\10\0\1\0\4\0\260\235\0\0\0\0\30\31\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x000000009db00000 0x000000009db"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3007G\1\20\0\t\0\4\6\10\0\1\0\4\0\260\235\0\0\0\0\30\31\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:18:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:18:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:19:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3057G\1\20\0\t\0\4\6\10\0\1\0\0\0\0\0\0\0\0\0\31\32\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3057G\1\20\0\t\0\4\6\10\0\1\0\0\0\0\0\0\0\0\0\31\32\33\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:19:03.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:19:03.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\375\37\r\0\0\0\0\0\0\f\200\1\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d1ffd000000 0x00000d1ffdf"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\375\37\r\0\0\0\0\0\0\f\200\1\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\374\37\r\0\0\0\0\0\0\f\0\1\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d1ffc000000 0x00000d1ffcf"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3227F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\374\37\r\0\0\0\0\0\0\f\0\1\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\373\37\r\0\0\0\0\0\0\f\200\0\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d1ffb000000 0x00000d1ffbf"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\373\37\r\0\0\0\0\0\0\f\200\0\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\372\37\r\0\0\0\0\0\0\f\0\0\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d1ffa000000 0x00000d1ffaf"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\3217F\5\20\0\t\0\0\2\10\0\200\0\f\0\0\372\37\r\0\0\0\0\0\0\f\0\0\377"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:1a:00.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:1a:00.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "1\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0:;;\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0:;;\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "16\n", 4096)                  = 3
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\20\253\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000ab100000 0x00000000ab1"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\20\253\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:08.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:08.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:09.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:09.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0a.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0b.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0c.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3a:0d.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3b:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\263\25\33\20F\5\20\0\0\0\7\2\10\0\0\0\f\0\0\376/\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d2ffe000000 0x00000d2ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\263\25\33\20F\5\20\0\0\0\7\2\10\0\0\0\f\0\0\376/\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:3b:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:3b:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "16\n", 4096)                  = 3
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/usr/share/hwdata/pci.ids", O_RDONLY|O_CLOEXEC) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1220928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n#\tList of PCI ID's\n#\n#\tVersion"..., 1024) = 1024
read(20, " Controller\n\t7a02  APB (Advanced"..., 1024) = 1024
read(20, "ID used in subsystem ID of the T"..., 1024) = 1024
read(20, "nk\n\t1700  IS64PH ISDN Adapter\n\t1"..., 1024) = 1024
read(20, " Bridge\n\t0046  Smart Array 64xx\n"..., 1024) = 1024
read(20, "400\n\t409d  Smart Array 6400 EM\n\t"..., 1024) = 1024
read(20, "ded UTP\n\tb012  Netelligent 10 T/"..., 1024) = 1024
read(20, "-3/P ThunderLAN 1.0\n\tf150  NetFl"..., 1024) = 1024
read(20, " to Ultra2 SCSI host adapter\n\t\t1"..., 1024) = 1024
read(20, "ode SAS3516\n\t\t1028 1f3a  PERC H7"..., 1024) = 1024
read(20, "D Controller RSP3DD080F\n\t0017  M"..., 1024) = 1024
read(20, ")\n\t\t4c53 1310  P017 mezzanine (6"..., 1024) = 1024
read(20, "3c1035 PCI-X Fusion-MPT Dual Ult"..., 1024) = 1024
read(20, "d Software RAID Technology II (E"..., 1024) = 1024
read(20, " SAS 9286-8e\n\t\t1000 9291  MegaRA"..., 1024) = 1024
read(20, "64A PCI-X Fusion-MPT SAS\n\t005d  "..., 1024) = 1024
read(20, "0  RS3SC008 RAID Controller\n\t\t80"..., 1024) = 1024
read(20, " PERC 6/i Integrated RAID Contro"..., 1024) = 1024
read(20, "ess Fusion-MPT SAS-2 [Meteor]\n\t0"..., 1024) = 1024
read(20, "1014 03b1  ServeRAID M1015 SAS/S"..., 1024) = 1024
read(20, "]\n\t\t1000 9251  MegaRAID SAS 9260"..., 1024) = 1024
read(20, "260  RAID Controller RS2BL040\n\t\t"..., 1024) = 1024
read(20, "-Express Fusion-MPT SAS-2\n\t0081 "..., 1024) = 1024
read(20, "\n\t\t8086 351b  RMS25LB080 RAID Co"..., 1024) = 1024
read(20, "R RACK\n\t\t1bd4 0028  12G SAS3008I"..., 1024) = 1024
read(20, " On Chip (ROC)\n\t00bf  SAS3404 Fu"..., 1024) = 1024
read(20, "16e\n# 9405W 16 internal port Cha"..., 1024) = 1024
read(20, "e  HBA355i MX\n\t\t1d49 0205  Think"..., 1024) = 1024
read(20, "roller SRCU42X\n\t0408  MegaRAID\n\t"..., 1024) = 1024
read(20, "1000 100c  MegaRAID SATA 300-12E"..., 1024) = 1024
read(20, "pter\n\t0701  83C885 NT50 DigitalS"..., 1024) = 1024
read(20, "egaRAID 12GSAS/PCIe Secure SAS39"..., 1024) = 1024
read(20, "egaRAID 518 SCSI 320-2 Controlle"..., 1024) = 1024
read(20, "ue I/O board\n\t0017  PROTO-3 PCI "..., 1024) = 1024
read(20, "c  Kryptos\n\t154e  Garfield\n\t1551"..., 1024) = 1024
read(20, "[Mobility IGP 320M]\n\t4137  RS200"..., 1024) = 1024
read(20, "55  RV350 [Radeon 9600]\n\t4157  R"..., 1024) = 1024
read(20, "\t4173  RV350 [Radeon 9550] (Seco"..., 1024) = 1024
read(20, "ller (EHCI)\n\t4367  SB300 USB Con"..., 1024) = 1024
read(20, "\n\t\t1025 0080  Aspire 5024WLMMi\n\t"..., 1024) = 1024
read(20, "-5 SATA\n\t\t103c 2813  DC5750 Micr"..., 1024) = 1024
read(20, "50  Satellite P305D-S8995E\n\t\t145"..., 1024) = 1024
read(20, "8995E\n\t\t1462 7368  K9AG Neo2\n\t\t1"..., 1024) = 1024
read(20, "B8x0/SB9x0 SATA Controller [Non-"..., 1024) = 1024
read(20, "D SB700\n\t\t15d9 a811  H8DGU\n\t4399"..., 1024) = 1024
read(20, "T]\n\t4630  XENOS Parent Die (XBOX"..., 1024) = 1024
read(20, "06a  Rage XL AGP\n\t474e  Rage XC "..., 1024) = 1024
read(20, "2 [3D Rage IIC PCI]\n\t\t1002 4756 "..., 1024) = 1024
read(20, "62  Xilleon 210 USB for X210\n\t48"..., 1024) = 1024
read(20, "4  Xilleon 243 HBIU for X243\n\t48"..., 1024) = 1024
read(20, "0 VE AGP\n\t4a69  R420 [Radeon X80"..., 1024) = 1024
read(20, "e LT PRO PCI\n\t\t1002 0004  Rage L"..., 1024) = 1024
read(20, "\t\t104d 80e7  VAIO PCG-GR214EP/GR"..., 1024) = 1024
read(20, "0  NC6000 laptop\n\t\t144d c00c  P3"..., 1024) = 1024
read(20, " AGP 4X TMDS]\n\t\t1002 0004  Rage "..., 1024) = 1024
read(20, "2 0172  FireGL 8700 64Mb\n\t514c  "..., 1024) = 1024
read(20, "0/Radeon VE\n\t\t1002 00ba  Radeon "..., 1024) = 1024
read(20, "Edge R900 Embedded ATI ES1000\n\t\t"..., 1024) = 1024
read(20, "\n\t5346  Rage 128 SF/4x AGP 2x\n\t\t"..., 1024) = 1024
read(20, "V-R80L256V-B (AGP)\n\t554e  R430 ["..., 1024) = 1024
read(20, " (Secondary)\n\t5874  RS480 [Radeo"..., 1024) = 1024
read(20, "bur Radeon 9250\n\t5961  RV280 [Ra"..., 1024) = 1024
read(20, " PCI bridge (external gfx0 port "..., 1024) = 1024
read(20, "xpress gpp port A)\n\t5a16  RD890/"..., 1024) = 1024
read(20, "RS4xx PCI Express Port 3\n\t5a39  "..., 1024) = 1024
read(20, "reMV 2200] (Secondary)\n\t5c61  RV"..., 1024) = 1024
read(20, " Edition] (Secondary)\n\t5d6f  R48"..., 1024) = 1024
read(20, "adeon HD 8790M]\n\t\t1028 0684  Fir"..., 1024) = 1024
read(20, "80X\n\t6649  Bonaire [FirePro W510"..., 1024) = 1024
read(20, "62 2938  Radeon R9 360 OEM\n\t\t146"..., 1024) = 1024
read(20, "718  Cayman XT [Radeon HD 6970]\n"..., 1024) = 1024
read(20, "M5950\n\t\t103c 1630  FirePro M5950"..., 1024) = 1024
read(20, "25 0386  Radeon HD 6650M\n\t\t1025 "..., 1024) = 1024
read(20, "Radeon HD 6630M\n\t\t1028 04c5  Rad"..., 1024) = 1024
read(20, "M\n\t\t144d c0b3  Radeon HD 6750M\n\t"..., 1024) = 1024
read(20, "1179 fb82  Radeon HD 7610M\n\t\t117"..., 1024) = 1024
read(20, "deon HD 7650A\n\t\t1462 2671  Radeo"..., 1024) = 1024
read(20, "0 Series]\n\t675d  Turks PRO [Rade"..., 1024) = 1024
read(20, "3c 161a  Radeon HD 6470M\n\t\t103c "..., 1024) = 1024
read(20, "Radeon HD 6490M\n\t\t103c 1855  Rad"..., 1024) = 1024
read(20, "470M\n\t\t1043 2001  Radeon HD 6470"..., 1024) = 1024
read(20, "79 fb82  Radeon HD 7470M\n\t\t1179 "..., 1024) = 1024
read(20, "Radeon HD 6470M\n\t\t1854 2015  Rad"..., 1024) = 1024
read(20, "50 / R5 230 OEM]\n\t\t1019 0016  Ra"..., 1024) = 1024
read(20, "ro W9000]\n\t6784  Tahiti [FirePro"..., 1024) = 1024
read(20, "970 GHz Edition]\n\t\t1458 2261  Ta"..., 1024) = 1024
read(20, " GL [FirePro W9100]\n\t\t1002 0335 "..., 1024) = 1024
read(20, "R9 290X Gaming\n\t\t1462 3082  R9 2"..., 1024) = 1024
read(20, "0b37  Radeon RX 480\n\t\t1028 1722 "..., 1024) = 1024
read(20, "3  Radeon RX 570 Pulse 4GB\n\t\t1da"..., 1024) = 1024
read(20, "n [Radeon RX 550 640SP / RX 560/"..., 1024) = 1024
read(20, "b 012b  FirePro D300\n\t\t148c 0908"..., 1024) = 1024
read(20, "750M\n\t\t17aa 3643  Radeon R9 A375"..., 1024) = 1024
read(20, "e Verde LE [Radeon HD 7730/8730]"..., 1024) = 1024
read(20, "D 7670M\n\t\t1028 056e  Radeon HD 7"..., 1024) = 1024
read(20, "179 fb11  Radeon HD 7670M\n\t\t1179"..., 1024) = 1024
read(20, "0M\n\t\t103c 17f4  Radeon HD 7650M\n"..., 1024) = 1024
read(20, " [Radeon PRO WX 8100/8200]\n\t686c"..., 1024) = 1024
read(20, "30]\n\t68a0  Broadway XT [Mobility"..., 1024) = 1024
read(20, "40SP Edition]\n\t68ba  Juniper XT "..., 1024) = 1024
read(20, "025 0312  Mobility Radeon HD 565"..., 1024) = 1024
read(20, "1025 036f  Mobility Radeon HD 56"..., 1024) = 1024
read(20, "n HD 5650\n\t\t1025 042e  Mobility "..., 1024) = 1024
read(20, "ility Radeon HD 5650\n\t\t1028 0448"..., 1024) = 1024
read(20, "deon HD 5650\n\t\t1179 fdd2  Radeon"..., 1024) = 1024
read(20, "1462 2240  Radeon HD 5570\n\t\t148c"..., 1024) = 1024
read(20, "6b  Mobility Radeon HD 5450\n\t\t10"..., 1024) = 1024
read(20, "cos [Radeon HD 6230]\n\t\t174b 6350"..., 1024) = 1024
read(20, "370M\n\t\t103c 162c  Radeon HD 6370"..., 1024) = 1024
read(20, "\t1179 fd50  Radeon HD 6330M\n\t\t11"..., 1024) = 1024
read(20, "3c2  EAH5450 SILENT/DI/512MD2 (L"..., 1024) = 1024
read(20, "74b e127  Radeon HD 5450\n\t\t174b "..., 1024) = 1024
read(20, "74b e127  Radeon HD 7350\n\t\t174b "..., 1024) = 1024
read(20, "103c 1318  Radeon R6 M255DX\n\t690"..., 1024) = 1024
read(20, "MCM]\n\t6995  Lexa XT [Radeon PRO "..., 1024) = 1024
read(20, "dary)\n\t\t1002 0323  All-In-Wonder"..., 1024) = 1024
read(20, "X1550 Series] (Secondary)\n\t7166 "..., 1024) = 1024
read(20, "V516 [Radeon X1600/X1650 Series]"..., 1024) = 1024
read(20, " RV530/M66 [Mobility Radeon X170"..., 1024) = 1024
read(20, "\n\t726b  R580 [Radeon X1900 GT] ("..., 1024) = 1024
read(20, "35  RS350M [Mobility Radeon 9000"..., 1024) = 1024
read(20, "o PCI Bridge (PCI Express Port 2"..., 1024) = 1024
read(20, "ity Radeon HD 4850 X2]\n\t944c  RV"..., 1024) = 1024
read(20, "L [FirePro V3750]\n\t94a0  RV740/M"..., 1024) = 1024
read(20, "\n\t9507  RV670 [Radeon HD 3830]\n\t"..., 1024) = 1024
read(20, "Mobility Radeon HD 4530\n\t\t103c 1"..., 1024) = 1024
read(20, "PRO [Radeon HD 2600 PRO AGP]\n\t95"..., 1024) = 1024
read(20, "adeon HD 3470\n\t\t1028 3243  C120D"..., 1024) = 1024
read(20, "\n\t964c  Sumo\n\t964e  Sumo\n\t964f  "..., 1024) = 1024
read(20, "eon HD 8310E]\n\t9836  Kabini [Rad"..., 1024) = 1024
read(20, "\n\t\t1458 d000  Radeon R7 Graphics"..., 1024) = 1024
read(20, "7  Trinity [Radeon HD 7620G]\n\t99"..., 1024) = 1024
read(20, "XT]\n\taa01  RV635 HDMI Audio [Rad"..., 1024) = 1024
read(20, "ts HDMI Audio [Radeon HD 6790/68"..., 1024) = 1024
read(20, "  Vega 20 HDMI Audio [Radeon VII"..., 1024) = 1024
read(20, "2C147\n\t0200  82C975\n\t0280  82C92"..., 1024) = 1024
read(20, "n\n100a  Phoenix Technologies\n100"..., 1024) = 1024
read(20, "0 Video\n\t0505  SCx200 XBus\n\t0510"..., 1024) = 1024
read(20, "ernet\n\t\t1113 1207  EN-1207-TX Fa"..., 1024) = 1024
read(20, " Ethernet\n\t\t108d 0017  GoCard 22"..., 1024) = 1024
read(20, " ab01  EtherFast 10/100 Cardbus "..., 1024) = 1024
read(20, "\t9005 1365  Dell PowerEdge RAID "..., 1024) = 1024
read(20, "undFusion Audio Accelerator]\n\t\t1"..., 1024) = 1024
read(20, "lta MP]\n\t000a  PCI to ISA Bridge"..., 1024) = 1024
read(20, "46  MPIC interrupt controller\n\t0"..., 1024) = 1024
read(20, " Adapter (ASMA)\n\t00fc  CPC710 Du"..., 1024) = 1024
read(20, "i\n\t\t1014 0259  ServeRAID-5i\n\t01c"..., 1024) = 1024
read(20, "\n\t0308  CalIOC2 PCI-E Root Port\n"..., 1024) = 1024
read(20, "CIe3 1.8GB Cache RAID SAS Adapte"..., 1024) = 1024
read(20, " 12Gb Quad SAS RAID+ Adapter(580"..., 1024) = 1024
read(20, "197\n\t3296  33C296A\n\t4296  34C296"..., 1024) = 1024
read(20, "roller\n\t9031  EIDE Controller\n\t9"..., 1024) = 1024
read(20, "tion 5\n\t1306  Griffin Function 6"..., 1024) = 1024
read(20, "ction 0\n\t1401  Family 15h (Model"..., 1024) = 1024
read(20, "Family 15h (Models 30h-3fh) Proc"..., 1024) = 1024
read(20, "ot Complex\n\t143b  Kingston/Clayt"..., 1024) = 1024
read(20, "h) Platform Security Processor\n\t"..., 1024) = 1024
read(20, "2 7c37  X570-A PRO motherboard\n\t"..., 1024) = 1024
read(20, "p/Matisse PTDMA\n\t1499  Starship/"..., 1024) = 1024
read(20, "542  Kryptos/Cato/Garfield/Garfi"..., 1024) = 1024
read(20, "CIe Ports [4:0]\n\t1560  Anubis Se"..., 1024) = 1024
read(20, "cessor Function 1\n\t1582  Family "..., 1024) = 1024
read(20, "Pavilion Laptop 15-cw1xxx\n\t15d2 "..., 1024) = 1024
read(20, "en/Raven2 Device 24: Function 0\n"..., 1024) = 1024
read(20, " 0\n\t1601  Family 15h Processor F"..., 1024) = 1024
read(20, "P Bridge\n\t1634  Renoir PCIe GPP "..., 1024) = 1024
read(20, "et - Fast 79C971\n\t\t103c 104c  Et"..., 1024) = 1024
read(20, "74 [PCscsi]\n\t\t1af4 1100  QEMU Vi"..., 1024) = 1024
read(20, "eries Chipset SATA Controller\n\t4"..., 1024) = 1024
read(20, "\t7410  AMD-766 [ViperPlus] ISA\n\t"..., 1024) = 1024
read(20, "FCH SATA Controller [AHCI mode]\n"..., 1024) = 1024
read(20, "oller\n\t780d  FCH Azalia Controll"..., 1024) = 1024
read(20, " 5124  ThinkPad E595\n\t790e  FCH "..., 1024) = 1024
read(20, "s\n\t0194  82C194\n\t2000  4DWave DX"..., 1024) = 1024
read(20, "3  TGUI 9753\n\t9754  TGUI 9754\n\t9"..., 1024) = 1024
read(20, "1641  M1641 Northbridge [Aladdin"..., 1024) = 1024
read(20, "ll\n\t0001  PowerEdge Expandable R"..., 1024) = 1024
read(20, "emote Access Card 4 Daughter Car"..., 1024) = 1024
read(20, "ntroller\n\t\t1028 00c5  PowerEdge "..., 1024) = 1024
read(20, " G200 SD\n\t\t102b ff04  Marvel G20"..., 1024) = 1024
read(20, "2b dbf9  G200 Multi-Monitor\n\t\t10"..., 1024) = 1024
read(20, "02b 0e02  Marvel G450 eTV\n\t\t102b"..., 1024) = 1024
read(20, "\n\t\t102b 0870  MED2mp-DVI\n\t\t102b "..., 1024) = 1024
read(20, "10 MGA G200eW WPCM450\n\t\t1028 023"..., 1024) = 1024
read(20, "  MURA-IPX-I4DHF\n\t\t102b 00c5  MU"..., 1024) = 1024
read(20, "I\n\t\t102b 2851  Spectrum PCI\n\t\t10"..., 1024) = 1024
read(20, " RAD LPX PCI\n\t\t102b 0101  Millen"..., 1024) = 1024
read(20, "lios frame grabber\n\t\t102b 4b80  "..., 1024) = 1024
read(20, "l frame grabber\n\t5e10  Morphis a"..., 1024) = 1024
read(20, "Ethernet Controller with WOL\n\t00"..., 1024) = 1024
read(20, "1a  [Nile II]\n\t0021  Vrc4373 [Ni"..., 1024) = 1024
read(20, "\n\t\t1010 0120  PowerVR Neon 250 A"..., 1024) = 1024
read(20, "ostro 3750\n\t\t1043 8413  P8P67 De"..., 1024) = 1024
read(20, "1734 1095  D2030-A1\n\t0186  AHCI "..., 1024) = 1024
read(20, "S41GX motherboard\n\t0745  745 Hos"..., 1024) = 1024
read(20, "2\n\t5513  5513 IDE Controller\n\t\t1"..., 1024) = 1024
read(20, "S6326 GUI Accelerator\n\t6330  661"..., 1024) = 1024
read(20, "otherboard\n\t\t15bd 1001  DFI 661F"..., 1024) = 1024
read(20, "o Accelerator\n\t\t1558 1103  SiS P"..., 1024) = 1024
read(20, "973A DeskDirect 10BaseT NIC\n\t\t10"..., 1024) = 1024
read(20, "oard\n\t1290  Auxiliary Diva Seria"..., 1024) = 1024
read(20, "2  P440\n\t\t103c 21c3  P441\n\t\t103c"..., 1024) = 1024
read(20, "03c 3381  iLO4\n\t3301  Integrated"..., 1024) = 1024
read(20, "  Micron\n\t1000  PC Tech RZ1000\n\t"..., 1024) = 1024
read(20, "tra2 Single Channel (NON ACPI)\n\t"..., 1024) = 1024
read(20, "hannel\n\t\t1044 c066  3010S Fibre "..., 1024) = 1024
read(20, "ia XL (Virge)\n1049  Fountain Tec"..., 1024) = 1024
read(20, "Tulip compatible 10/100 Ethernet"..., 1024) = 1024
read(20, " FIRE GL 1000 PRO\n\t\t1092 0157  F"..., 1024) = 1024
read(20, "R315MP\n\t8022  TSB43AB22 IEEE-139"..., 1024) = 1024
read(20, "028 00e5  Latitude C810\n\t\t1028 0"..., 1024) = 1024
read(20, "\t103c 0944  Compaq nc6220 Notebo"..., 1024) = 1024
read(20, "aq nw8440\n\t803d  PCIxx12 GemCore"..., 1024) = 1024
read(20, " 3b01  DWL-520+ 22Mbps PCI Wirel"..., 1024) = 1024
read(20, "PCI Adapter\n\t\t16ec 010e  USR5410"..., 1024) = 1024
read(20, "CI2250 PCI-to-PCI Bridge\n\tac28  "..., 1024) = 1024
read(20, "Pad A20m\n\t\t1014 023b  ThinkPad T"..., 1024) = 1024
read(20, "\t\t1028 018d  Inspiron 700m/710m\n"..., 1024) = 1024
read(20, "a DMA Controller\n\t90a3  Aeolia M"..., 1024) = 1024
read(20, "t Adapter\n\t\t1050 0840  W89C840 E"..., 1024) = 1024
read(20, "020  FIVE-EX based Fibre Channel"..., 1024) = 1024
read(20, "ator Board [RIB-2]\n\t\t14fb 0611  "..., 1024) = 1024
read(20, " rev.2\n\t\tecc0 0080  Mia rev.0\n\t\t"..., 1024) = 1024
read(20, "S1 family, encryption)\n\t6405  MP"..., 1024) = 1024
read(20, "d18  PDC20518/PDC40518 (SATAII 1"..., 1024) = 1024
read(20, "4] 4 Channel IDE RAID Controller"..., 1024) = 1024
read(20, "\n\t\t105d 0001  Imagine 128 series"..., 1024) = 1024
read(20, "c 0003  Barco Metheus 5 Megapixe"..., 1024) = 1024
read(20, "21 [Vesuvius v1] Host Bridge\n\t00"..., 1024) = 1024
read(20, "nel PCI-X U320 SCSI RAID Adapter"..., 1024) = 1024
read(20, "C (Sun GEM)\n\t0025  KeyLargo/Pang"..., 1024) = 1024
read(20, "56  U4 PCIe\n\t0057  U3 HT Bridge\n"..., 1024) = 1024
read(20, "PA3 3D-Graphics Controller]\n\t000"..., 1024) = 1024
read(20, "wide SCSI\n\t1022  ISP1022 Fast-wi"..., 1024) = 1024
read(20, "5  10/20/25GbE 2P 4820c CNA\n\t165"..., 1024) = 1024
read(20, "11H 100GbE Adapter (SR-IOV VF)\n\t"..., 1024) = 1024
read(20, "64-bit Fibre Channel Adapter\n\t\t1"..., 1024) = 1024
read(20, "\t1590 022d  5830C 32Gb Dual Port"..., 1024) = 1024
read(20, "nnel to PCI Express HBA\n\t\t103c 7"..., 1024) = 1024
read(20, "CA\n\t7322  IBA7322 QDR InfiniBand"..., 1024) = 1024
read(20, "bE Dual Port Mezzanine Card, FCo"..., 1024) = 1024
read(20, "1232HMKR NIC\n\t\t1077 0011  FastLi"..., 1024) = 1024
read(20, " Adapter\n\t\t1590 021e  10/25GbE 2"..., 1024) = 1024
read(20, "\t\t1077 0003  4x10GE QL41164HxRJ "..., 1024) = 1024
read(20, "0009  QLogic 2x1GE+2x10GE QL4116"..., 1024) = 1024
read(20, "s 10GbE Converged Network Adapte"..., 1024) = 1024
read(20, "1  5536-1P-PRI\n\t9033  5536-2P-PR"..., 1024) = 1024
read(20, "\t0008  RapidFire 3540 HSTR 100/1"..., 1024) = 1024
read(20, "nPCI Co-processor\n\t5ca0  Crypto "..., 1024) = 1024
read(20, "cho PCI Bus Module\n\t8001  Schizo"..., 1024) = 1024
read(20, "0 (MSMT496)\n\t07a0  Sun Expert3D-"..., 1024) = 1024
read(20, "\n\t1490  PXI-6534\n\t14e0  PCI-6110"..., 1024) = 1024
read(20, "\n\t2ee0  PXI-6120\n\t2ef0  PCI-6120"..., 1024) = 1024
read(20, "-6651\n\t7067  PXI-2529\n\t7068  PCI"..., 1024) = 1024
read(20, "2570\n\t70d1  PXI-6513\n\t70d2  PXI-"..., 1024) = 1024
read(20, "24\n\t70f3  PXI-6224\n\t70f6  cRIO-9"..., 1024) = 1024
read(20, " PCI-8254R\n\t7197  PXI-5402\n\t7198"..., 1024) = 1024
read(20, "9074\n\t72a4  PCIe-4065\n\t72a7  PCI"..., 1024) = 1024
read(20, "4498\n\t73a2  PXIe-4496\n\t73a5  PXI"..., 1024) = 1024
read(20, "-4132\n\t7405  PXIe-6674T\n\t7406  P"..., 1024) = 1024
read(20, "nterface\n\t7517  PCIe-8431/2 (RS-"..., 1024) = 1024
read(20, "2\n\tb001  PCI-1408\n\tb011  PXI-140"..., 1024) = 1024
read(20, "Ie-5186\n\t\t1093 7492  PXIe-4300\n\t"..., 1024) = 1024
read(20, "7R-S\n\t\t1093 7658  PXIe-5162 (4CH"..., 1024) = 1024
read(20, "4\n\t\t1093 7755  cRIO-9030\n\t\t1093 "..., 1024) = 1024
read(20, "1093 7996  PXIe-7912R\n\t\t1093 799"..., 1024) = 1024
read(20, "PCI-232/16 Interface\n\te111  PCI-"..., 1024) = 1024
read(20, "2  SiI 3112 [SATALink/SATARaid] "..., 1024) = 1024
read(20, "rporation\n\t0310  Bt848 Video Cap"..., 1024) = 1024
read(20, " PAL BG\n\t\t14f1 0003  Bt878a Medi"..., 1024) = 1024
read(20, "mly chosen\n\t\taa09 1469  Spectra8"..., 1024) = 1024
read(20, "Video Capture PAL BG\n\t\t127a 1722"..., 1024) = 1024
read(20, "M stereo receiver, audio section"..., 1024) = 1024
read(20, "eo Capture (Audio Section)\n\t\t127"..., 1024) = 1024
read(20, "9 Video Capture (Audio Section)\n"..., 1024) = 1024
read(20, "\n\t0208  SSIM1 SAS Adapter\n\t1001 "..., 1024) = 1024
read(20, "<-> IOBus Bridge\n\t\t10b5 9030  Di"..., 1024) = 1024
read(20, " PCI card\n\t4002  PCI9030 32-bit "..., 1024) = 1024
read(20, "8505  PEX 8505 5-lane, 5-port PC"..., 1024) = 1024
read(20, "Switch with DMA\n\t8612  PEX 8612 "..., 1024) = 1024
read(20, "xpress Gen 2 (5.0 GT/s) Switch\n\t"..., 1024) = 1024
read(20, "en 3 (8.0 GT/s) Switch\n\t\t1093 77"..., 1024) = 1024
read(20, "LCM220v2\n\t\t1369 a801  LCM200\n\t\t1"..., 1024) = 1024
read(20, "ce Modem\n\t\t1522 0002  RockForce "..., 1024) = 1024
read(20, "50) RS-422/485\n\t\td84d 4053  EX-4"..., 1024) = 1024
read(20, "bridge Pixel HPx Radar Input Car"..., 1024) = 1024
read(20, "  4422PCI [\"Do-All\" Telemetry Da"..., 1024) = 1024
read(20, "\n\t\t10b5 9030  Tormenta 3 Varion "..., 1024) = 1024
read(20, " 16/4 CardBus Adapter Mk2\n\t\t10b6"..., 1024) = 1024
read(20, "do]\n\t5055  3c555 Laptop Hurrican"..., 1024) = 1024
read(20, "us\n\t\t10b7 656b  3CCFEM656 10/100"..., 1024) = 1024
read(20, "erlink XL PCI\n\t9055  3c905B 100B"..., 1024) = 1024
read(20, " XL [Cyclone]\n\t9058  3c905B Delu"..., 1024) = 1024
read(20, "ink XL Server Adapter\n\t9805  3c9"..., 1024) = 1024
read(20, "171G-PCI]\n\t\t10b8 a011  EtherPowe"..., 1024) = 1024
read(20, "1513 [Aladdin]\n\t1521  M1521 [Ala"..., 1024) = 1024
read(20, " Northbridge [AGP8X,HyperTranspo"..., 1024) = 1024
read(20, "oard\n\t\t1849 5239  ASRock 939Dual"..., 1024) = 1024
read(20, "er\n\t\t1014 0535  ThinkPad R40e\n\t\t"..., 1024) = 1024
read(20, "c.\n10c5  Xerox Corporation\n10c6 "..., 1024) = 1024
read(20, "icGraph 128ZV+]\n\t8005  NM2200 [M"..., 1024) = 1024
read(20, "CSI-II]\n\t1300  ASC1300 / ASC3030"..., 1024) = 1024
read(20, "3\n\t0531  MX987x5\n\t\t1186 1200  DF"..., 1024) = 1024
read(20, "er V550\n\t\t10b4 273d  Velocity 44"..., 1024) = 1024
read(20, "5 [Riva TNT2 Ultra]\n\t\t1043 0200 "..., 1024) = 1024
read(20, " TNT2 Value 32Mb\n\t\t1102 102c  CT"..., 1024) = 1024
read(20, " GS\n\t0048  NV40 [GeForce 6800 XT"..., 1024) = 1024
read(20, "Series Mainboard\n\t\t10f1 2865  To"..., 1024) = 1024
read(20, "\n\t\t1565 8211  NF4 AM2L Mainboard"..., 1024) = 1024
read(20, "ainboard\n\t\t147b 1c1a  KN8-Ultra "..., 1024) = 1024
read(20, "K79G-1394 motherboard\n\t006c  nFo"..., 1024) = 1024
read(20, "Force 6800 LE]\n\t00c3  NV41 [GeFo"..., 1024) = 1024
read(20, "  nForce3 250Gb AGP Host to PCI "..., 1024) = 1024
read(20, "AC'97 Audio Controller\n\t\t1043 81"..., 1024) = 1024
read(20, " [GeForce PCX 4300]\n\t0100  NV10 "..., 1024) = 1024
read(20, "11\n\t\t10b0 0001  GeForce2 MX Jumb"..., 1024) = 1024
read(20, "014e  NV43GL [Quadro FX 540]\n\t01"..., 1024) = 1024
read(20, "0b0 0002  Gainward Pro/600 TV\n\t\t"..., 1024) = 1024
read(20, "lView MVGA-NVG18A\n\t0182  NV18 [G"..., 1024) = 1024
read(20, "nt\n\t01b7  nForce AGP to PCI Brid"..., 1024) = 1024
read(20, "er 1\n\t\ta0a0 03b9  UK79G-1394 mot"..., 1024) = 1024
read(20, "e 6100]\n\t\t105b 0cad  Winfast 610"..., 1024) = 1024
read(20, "vilion a1677c\n\t\t103c 30b7  Presa"..., 1024) = 1024
read(20, "L\n\t\t1043 8141  A8N-VM CSM Mainbo"..., 1024) = 1024
read(20, " Presario V6133CL\n\t0272  MCP51 M"..., 1024) = 1024
read(20, "Z-HD\n\t0297  G71M [GeForce Go 795"..., 1024) = 1024
read(20, "idge\n\t02f4  C51 Host Bridge\n\t02f"..., 1024) = 1024
read(20, "b7  Presario V6133CL\n\t\t1043 81cd"..., 1024) = 1024
read(20, "34 [GeForce FX 5500]\n\t\t1458 310d"..., 1024) = 1024
read(20, "36\n\t034e  NV36GL [Quadro FX 1100"..., 1024) = 1024
read(20, "nition Audio\n\t\t147b 1c24  KN9 se"..., 1024) = 1024
read(20, "uadro FX 550M]\n\t\t10de 039c  Quad"..., 1024) = 1024
read(20, " 400]\n\t03d5  C61 [GeForce 6100 n"..., 1024) = 1024
read(20, "iron 531\n\t\t1043 83a4  M4N68T ser"..., 1024) = 1024
read(20, "3  G84 [GeForce 8600 GS]\n\t0404  "..., 1024) = 1024
read(20, "VS 130M]\n\t042b  G86M [Quadro NVS"..., 1024) = 1024
read(20, " 30cf  Pavilion dv9668eg Laptop\n"..., 1024) = 1024
read(20, "7  ALiveNF7G-HDready\n\t0548  MCP6"..., 1024) = 1024
read(20, "R3.0 Memory Controller\n\t0569  MC"..., 1024) = 1024
read(20, "275]\n\t05e7  GT200GL [Tesla C1060"..., 1024) = 1024
read(20, "1682 2385  GeForce 9600 GSO 768m"..., 1024) = 1024
read(20, "9600 GS]\n\t0624  G94 [GeForce 960"..., 1024) = 1024
read(20, " 202d  GeForce GT 220M\n\t064a  G9"..., 1024) = 1024
read(20, "842  Tesla M2070\n\t\t10de 088f  Te"..., 1024) = 1024
read(20, "ec  G98M [GeForce G 105M]\n\t06ed "..., 1024) = 1024
read(20, " Controller\n\t0759  MCP78S [GeFor"..., 1024) = 1024
read(20, "1849 3662  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "ilion p6310f\n\t\t1043 82e8  M3N72-"..., 1024) = 1024
read(20, "3V motherboard\n\t\t1afa 7150  JW-I"..., 1024) = 1024
read(20, "73 Ethernet\n\t07e0  C73 [GeForce "..., 1024) = 1024
read(20, "1849 0849  K10N78FullHD-hSLI R3."..., 1024) = 1024
read(20, "M\n\t0874  C79 [ION]\n\t0876  C79 [G"..., 1024) = 1024
read(20, "NT\n\t\t1458 36a9  GV-N210D3-1GI (r"..., 1024) = 1024
read(20, "179 fd71  GeForce 315M\n\t\t1179 fd"..., 1024) = 1024
read(20, " Memory Controller\n\t\t10de cb79  "..., 1024) = 1024
read(20, "hernet\n\t0ab2  MCP79 Ethernet\n\t0a"..., 1024) = 1024
read(20, "ntroller\n\t\t103c 2a9e  Pavilion p"..., 1024) = 1024
read(20, "330]\n\t0ca8  GT215M [GeForce GTS "..., 1024) = 1024
read(20, " 445M]\n\t0dd3  GF106M [GeForce GT"..., 1024) = 1024
read(20, "\n\t0def  GF108M [NVS 5400M]\n\t0df0"..., 1024) = 1024
read(20, "PCIe x2 Bridge\n\t0e22  GF104 [GeF"..., 1024) = 1024
read(20, "LE]\n\t0fd1  GK107M [GeForce GT 65"..., 1024) = 1024
read(20, " Mac Edition]\n\t0fec  GK107M [GeF"..., 1024) = 1024
read(20, "3842 2790  GeForce GTX Titan\n# 0"..., 1024) = 1024
read(20, "GT 520]\n\t\t1043 83a0  ENGT520 SIL"..., 1024) = 1024
read(20, "3c 2afb  GeForce 705A\n\t\t17aa 309"..., 1024) = 1024
read(20, "8 [NVS 300]\n\t10ef  GP102 HDMI Au"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t1025 0773  GeFor"..., 1024) = 1024
read(20, " GeForce 820M\n\t\t1025 0921  GeFor"..., 1024) = 1024
read(20, "eForce 820M\n\t\t1028 068d  GeForce"..., 1024) = 1024
read(20, " 720M\n\t\t1043 1507  GeForce GT 62"..., 1024) = 1024
read(20, "\t\t1043 8643  GeForce 820M\n\t\t1043"..., 1024) = 1024
read(20, "S 5200M\n\t\t144d c0e4  NVS 5200M\n\t"..., 1024) = 1024
read(20, "Force GT 720M\n\t\t17aa 309c  GeFor"..., 1024) = 1024
read(20, "820M\n\t\t17aa 3818  GeForce 820M\n\t"..., 1024) = 1024
read(20, "0  GeForce 820M\n\t\t1854 0177  GeF"..., 1024) = 1024
read(20, "00\n\t118e  GK104 [GeForce GTX 760"..., 1024) = 1024
read(20, "c  GK104GLM [Quadro K5000M]\n\t11b"..., 1024) = 1024
read(20, "GeForce GTX 560]\n\t1202  GF114 [G"..., 1024) = 1024
read(20, "e GT 555M\n\t\t1854 3005  GeForce G"..., 1024) = 1024
read(20, "740M]\n\t1295  GK208M [GeForce 710"..., 1024) = 1024
read(20, "dro K620M / Quadro M500M]\n\t\t17aa"..., 1024) = 1024
read(20, "LM [Quadro M1200 Mobile]\n\t13b9  "..., 1024) = 1024
read(20, "ce GTX 960 OEM]\n\t1407  GM206 [Ge"..., 1024) = 1024
read(20, "1ad9  TU104 USB Type-C UCSI Cont"..., 1024) = 1024
read(20, " GP104M\n\t1bad  GP104 [GeForce GT"..., 1024) = 1024
read(20, "ile]\n\t\t17aa 39b9  GeForce GTX 10"..., 1024) = 1024
read(20, "\t1cb2  GP107GL [Quadro P600]\n\t1c"..., 1024) = 1024
read(20, "2  GP108BM [GeForce MX250]\n\t1d56"..., 1024) = 1024
read(20, "D RTX T10-16\n\t1e38  TU102GL\n\t1e3"..., 1024) = 1024
read(20, "X 2070\n\t1f04  TU106\n\t1f06  TU106"..., 1024) = 1024
read(20, "\n\t1fb8  TU117GLM [Quadro T2000 M"..., 1024) = 1024
read(20, "UX-L AnyFabric\n\t\t17aa 1059  Thin"..., 1024) = 1024
read(20, "10df e281  LPe16000B-M6 1-Port 1"..., 1024) = 1024
read(20, "ort 32Gb Fibre Channel Adapter\n\t"..., 1024) = 1024
read(20, "st Adapter\n\tf085  LP850 Fibre Ch"..., 1024) = 1024
read(20, "Fibre Channel Adapter\n\t\t10df f40"..., 1024) = 1024
read(20, "apter\n\tf901  LP9000 Fibre Channe"..., 1024) = 1024
read(20, " FCoE Adapter\n\tfe11  Zephyr-X Li"..., 1024) = 1024
read(20, " GPIB-PCI (AMCC5920 based)\n\t2011"..., 1024) = 1024
read(20, "ramestore\n\t82e2  Fastcom DIO24H-"..., 1024) = 1024
read(20, "\n\t\t103c 8079  EliteBook 840 G3\n\t"..., 1024) = 1024
read(20, "\n\t\t103c 1985  RTL8106E on Pavili"..., 1024) = 1024
read(20, "DRN-32TX\n\t\t11f6 8139  FN22-3(A) "..., 1024) = 1024
read(20, "8110SC/8169SC Gigabit Ethernet\n\t"..., 1024) = 1024
read(20, "hernet controller\n\t\t144d c652  R"..., 1024) = 1024
read(20, "  K8T NEO 2 motherboard\n\t\t1462 7"..., 1024) = 1024
read(20, "egrated PCI-e Bridge\n\t8197  Smar"..., 1024) = 1024
read(20, "0300  Spartan 3 Designs (Xilinx "..., 1024) = 1024
read(20, "001  NDR4000 [NR4600 Bridge]\n10f"..., 1024) = 1024
read(20, "1102 100a  SB0220/0229 SBLive! 5"..., 1024) = 1024
read(20, "BLive! 5.1\n\t\t1102 806b  SB0105 S"..., 1024) = 1024
read(20, "2 1006  SB0245 Audigy 2 OEM\n\t\t11"..., 1024) = 1024
read(20, "SB0410 SBLive! 24-bit\n\t\t1102 100"..., 1024) = 1024
read(20, "nd Blaster Recon3D / Z-Series]\n\t"..., 1024) = 1024
read(20, " b700  G700/U700  (AlphaTop (Tai"..., 1024) = 1024
read(20, "I RAID Controller)\n\t1740  Rocket"..., 1024) = 1024
read(20, "magic DVD/MPEG-4 A/V Decoder\n\t84"..., 1024) = 1024
read(20, "Mainboard\n\t0308  PT880 Ultra/PT8"..., 1024) = 1024
read(20, "2C586/B/VT82C686/A/B/VT8233/A/C/"..., 1024) = 1024
read(20, "ard]\n\t\t1043 802c  CUV4X mainboar"..., 1024) = 1024
read(20, "st Bridge\n\t1208  PT890 Host Brid"..., 1024) = 1024
read(20, "96  P4M800 Host Bridge\n\t2308  PT"..., 1024) = 1024
read(20, "2.0\n\t\t1462 7120  KT4AV motherboa"..., 1024) = 1024
read(20, "105M [Rhine-III]\n\t\t1186 1404  DF"..., 1024) = 1024
read(20, "00-8235)\n\t\t1019 1841  M811 (VT83"..., 1024) = 1024
read(20, "75Dual-880 Pro onboard audio (Re"..., 1024) = 1024
read(20, " Saturn Motherboard\n\t3074  VT823"..., 1024) = 1024
read(20, "ano VD01\n\t3106  VT6105/VT6106S ["..., 1024) = 1024
read(20, "2 7020  K8T Neo 2 Motherboard\n\t\t"..., 1024) = 1024
read(20, "\t1106 0000  KT4AV motherboard (K"..., 1024) = 1024
read(20, "700/VX700 Host Bridge\n\t324e  CX7"..., 1024) = 1024
read(20, "DRAM Bus Control\n\t3410  VX900 DR"..., 1024) = 1024
read(20, " Chrome 9 HCM Integrated Graphic"..., 1024) = 1024
read(20, "Chrome9 HD]\n\t7204  K8M800 Host B"..., 1024) = 1024
read(20, "133 AGP]\n\t8400  MVP4\n\t8409  VX85"..., 1024) = 1024
read(20, "trol\n\ta364  CN896/VN896/P4M900 P"..., 1024) = 1024
read(20, "DE Controller\n\tc410  VX900 PCI E"..., 1024) = 1024
read(20, "port\n\t0005  Tulip controller, po"..., 1024) = 1024
read(20, "7c  SIMATIC NET CP 5612\n\t407d  S"..., 1024) = 1024
read(20, "thernet Mini-PCI Card\n\t\t111a 102"..., 1024) = 1024
read(20, "5\n\t000b  GDT 6125/6525\n\t000c  GD"..., 1024) = 1024
read(20, "7558RN/7658RN\n\t016c  GDT 7533RN/"..., 1024) = 1024
read(20, "nc.\n\t0001  Powerbis Bridge\n# now"..., 1024) = 1024
read(20, "\n\t804b  PES8NT2 PCI Express Exte"..., 1024) = 1024
read(20, " 755d  PXIe-8374\n\t\t1093 75ff  PX"..., 1024) = 1024
read(20, " Systems Inc\n\t0200  ForeRunner P"..., 1024) = 1024
read(20, "\n\t\t15eb 1331  DT1301 with SAA712"..., 1024) = 1024
read(20, "3  SAA7131/SAA7133/SAA7135 Video"..., 1024) = 1024
read(20, " TV/FM tuner\n\t\t1458 9005  GT-P60"..., 1024) = 1024
read(20, "CardBus\n\t\t5168 3502  LifeView Fl"..., 1024) = 1024
read(20, "V Stereo\n\t\t11bd 002d  PCTV 300i "..., 1024) = 1024
read(20, "B-S Budget Rev AL\n\t\t1131 4f61  A"..., 1024) = 1024
read(20, "ppauge WinTV-NOVA-CI DVB card\n\t\t"..., 1024) = 1024
read(20, "TV HVR-2250\n\t\t0070 8900  WinTV H"..., 1024) = 1024
read(20, " Eiconcard S94\n\t7948  Eiconcard "..., 1024) = 1024
read(20, "Server Voice PRI Rev 2\n\t\t1133 e0"..., 1024) = 1024
read(20, "\n\t\t1133 e024  Diva Analog-4 PCI "..., 1024) = 1024
read(20, "0 Dual 40Gb Mezzanine\n\t\t1137 014"..., 1024) = 1024
read(20, "137 0216  VIC 1480 MLOM Ethernet"..., 1024) = 1024
read(20, "ine FCoE HBA\n\t\t1137 0084  VIC 12"..., 1024) = 1024
read(20, "anine Userspace NIC\n\t023e  1GigE"..., 1024) = 1024
read(20, "ntroller\n1145  Workbit Corporati"..., 1024) = 1024
read(20, " (SK-NET FDDI-FP64)\n\t\t1148 5843 "..., 1024) = 1024
read(20, "70LX Gigabit Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "8 5051  SK-9851 V2.0 Gigabit Eth"..., 1024) = 1024
read(20, "1259 2973  AT-2971SX v2 Gigabit "..., 1024) = 1024
read(20, "rePRIme T1 (1-port)\n\t000d  SyncP"..., 1024) = 1024
read(20, " AccelePort 8p\n\t0045  AccelePort"..., 1024) = 1024
read(20, "0181  10/100 EtherJet Cardbus Ad"..., 1024) = 1024
read(20, "00\n\t\t1014 0183  10/100 EtherJet "..., 1024) = 1024
read(20, "\t0015  CMIC-GC Host Bridge\n\t0016"..., 1024) = 1024
read(20, "E\n\t0214  BCM5785 [HT1000] IDE\n\t\t"..., 1024) = 1024
read(20, "owerEdge 2970 HT1000 SATA contro"..., 1024) = 1024
read(20, " Systems, Inc\n1174  Bridgeport M"..., 1024) = 1024
read(20, " ToPIC97\n\t\t1179 0001  Satellite "..., 1024) = 1024
read(20, " RAID Adapter\n\t\t117c 0049  Expre"..., 1024) = 1024
read(20, "5\n\t\t144d c006  vpr Matrix 170B4 "..., 1024) = 1024
read(20, "28 014f  Latitude X300 laptop\n\t\t"..., 1024) = 1024
read(20, "  Inspiron 1525\n\t\t103c 03b5  Pre"..., 1024) = 1024
read(20, "40w\n\t\t103c 30b7  Presario V6133C"..., 1024) = 1024
read(20, "\n1185  Dataworld International L"..., 1024) = 1024
read(20, "GE-528T Gigabit Ethernet Adapter"..., 1024) = 1024
read(20, "Road Runner Frame Grabber\n\t0044 "..., 1024) = 1024
read(20, "  AEC6712SUW SCSI\n\t8060  AEC6712"..., 1024) = 1024
read(20, "\n11a5  Microunity Systems Eng. I"..., 1024) = 1024
read(20, "7c01  WN511T RangeMax Next 300 M"..., 1024) = 1024
read(20, "001 Gigabit Ethernet Controller "..., 1024) = 1024
read(20, " Gigabit Ethernet Controller\n\t43"..., 1024) = 1024
read(20, "1854 0019  Marvell 88E8035 Fast "..., 1024) = 1024
read(20, "ast Ethernet Controller (LGE)\n\t\t"..., 1024) = 1024
read(20, "ler (Asus)\n\t\t107b 4009  Marvell "..., 1024) = 1024
read(20, "er (SOYO)\n\t\t1179 0001  Marvell 8"..., 1024) = 1024
read(20, "  Marvell 88E8053 Gigabit Ethern"..., 1024) = 1024
read(20, "Marvell 88E8053 Gigabit Ethernet"..., 1024) = 1024
read(20, "  AT-2874xx\n\t4611  GT-64115 Syst"..., 1024) = 1024
read(20, "SoC\n# This device ID was used fo"..., 1024) = 1024
read(20, "ae  Aztech System Ltd\n11af  Avid"..., 1024) = 1024
read(20, "on\n\t0051  PCTV HD 800i\n\tbede  AV"..., 1024) = 1024
read(20, " WinModem 56k Data+Fax\n\t\t1033 80"..., 1024) = 1024
read(20, " Data+Fax+Voice+VoiceView+Dsvd\n\t"..., 1024) = 1024
read(20, "Modem\n\t\t1468 0449  Presario 56k "..., 1024) = 1024
read(20, "enus Modem\n\t5801  USB\n\t5802  USS"..., 1024) = 1024
read(20, "re Wireless PCI Adapter\n\tab30  H"..., 1024) = 1024
read(20, "SM56 PCI modem\n11d5  Ikon Corpor"..., 1024) = 1024
read(20, "earch\n11e7  Toshiba America, Ele"..., 1024) = 1024
read(20, "LASAR-155 ATM SAR]\n\t7384  PM7384"..., 1024) = 1024
read(20, "nout PCIe Switches\n\t8546  PM8546"..., 1024) = 1024
read(20, "\t0042  RocketPort INFINITY 8-por"..., 1024) = 1024
read(20, "-port w/Octa Cable\n\t0066  Rocket"..., 1024) = 1024
read(20, "ort Plus uPCI 4-port w/Quad Cabl"..., 1024) = 1024
read(20, "SV or /X21 (2 ports)\n\t0301  PC30"..., 1024) = 1024
read(20, "ThinkPad R30\n\t\t1028 0152  Latitu"..., 1024) = 1024
read(20, "Controller\n\t8120  Integrated MMC"..., 1024) = 1024
read(20, "GP SGRAM\n\t\t121a 0004  Voodoo Ban"..., 1024) = 1024
read(20, " AMCC 5933 TMS320C80 DSP/Imaging"..., 1024) = 1024
read(20, "Q3DII (NX)\n\t50dc  3328 Audio\n\t\t1"..., 1024) = 1024
read(20, " NVTV PAL\n\t\t10de 0248  NVTV NTSC"..., 1024) = 1024
read(20, "CI v2.1]\n\t1100  C2 ISDN\n\t1200  T"..., 1024) = 1024
read(20, "arco, Inc.\n# nee Allied Telesyn "..., 1024) = 1024
read(20, "92 4000  Monster Sound MX400\n\t\t1"..., 1024) = 1024
read(20, "m]\n\t\t14fe 0428  ES56-PI Data Fax"..., 1024) = 1024
read(20, "er\n\t3877  ISL3877 [Prism Indigo]"..., 1024) = 1024
read(20, "coder\n# This is probably more li"..., 1024) = 1024
read(20, "811  SM811 LynxE\n\t0820  SM820 Ly"..., 1024) = 1024
read(20, ".00\n\t\t1462 6822  ES1371, ES1373 "..., 1024) = 1024
read(20, "erboard CP810E\n\t\t152d 8802  ES13"..., 1024) = 1024
read(20, "ioPCI On Motherboard FJ440ZX\n\t\t8"..., 1024) = 1024
read(20, "1277  Comstream\n1278  Transtech "..., 1024) = 1024
read(20, "56k Data/Fax/Voice Modem\n\t\t1048 "..., 1024) = 1024
read(20, "/R6 WW V.90 Modem\n\t\t1436 1203  I"..., 1024) = 1024
read(20, "  HSF 56k Data/Fax/Voice/Spkp Mo"..., 1024) = 1024
read(20, "\n\t9102  21x4x DEC-Tulip compatib"..., 1024) = 1024
read(20, "VC Technology, Inc.\n128a  Asante"..., 1024) = 1024
read(20, "9f  OEC Medical Systems, Inc.\n12"..., 1024) = 1024
read(20, "t Ethernet-T (3C986-T)\n\t00fa  Fa"..., 1024) = 1024
read(20, "884A/B/C)\n\t1008  56K FaxModem Mo"..., 1024) = 1024
read(20, "2 (UNIV, RS232/485)\n\t0006  Blue "..., 1024) = 1024
read(20, "t, CT-BUS/SC-BUS, loopstart FXO "..., 1024) = 1024
read(20, "8 AGP, NTSC TV-Out\n\t\t10b4 1b23  "..., 1024) = 1024
read(20, "7C9X442SL PCI Express Bridge Por"..., 1024) = 1024
read(20, "10  ST16C654 Quad UART\n\t0020  ST"..., 1024) = 1024
read(20, "r\n\t\t12eb 0088  AU8830 Vortex 3D "..., 1024) = 1024
read(20, "ectrum Signal Processing\n\t0001  "..., 1024) = 1024
read(20, " PCI-DDA02/12\n\t0021  PCI-DDA04/1"..., 1024) = 1024
read(20, "0f  Advanet Inc\n1310  Gespac\n131"..., 1024) = 1024
read(20, "orp.\n131c  Nippon Electro-Sensor"..., 1024) = 1024
read(20, "io 1S(16650)+2P\n\t2042  Trio 1S(1"..., 1024) = 1024
read(20, "133b  Softcom Microsystems\n133c "..., 1024) = 1024
read(20, "MicroModem 56\n\t7896  HSP MicroMo"..., 1024) = 1024
read(20, "5 Interface\n\t7801  Eight Port RS"..., 1024) = 1024
read(20, "ss)\n\t0306  TCR180PEX IRIG Timeco"..., 1024) = 1024
read(20, "t Fiber Giga Ethernet 546 Bypass"..., 1024) = 1024
read(20, "r Adapter\n\t0035  Silicom Quad po"..., 1024) = 1024
read(20, "MC-X Bypass\n\t0043  Silicom Quad "..., 1024) = 1024
read(20, "ter\n1375  Argosystems Inc\n1376  "..., 1024) = 1024
read(20, "ernet\n\t630a  GA630 Gigabit Ether"..., 1024) = 1024
read(20, "RS-232 PCI Express Serial Board)"..., 1024) = 1024
read(20, "-204J\n\t2180  Intellio C218 Turbo"..., 1024) = 1024
read(20, "200P / B400P]\n\t16b8  ISDN networ"..., 1024) = 1024
read(20, "C-E1 [beroNet BN2E1]\n\t\t1397 b565"..., 1024) = 1024
read(20, "r\n\t002f  9725 Compression and Se"..., 1024) = 1024
read(20, "  Motion Media Technology Ltd\n13"..., 1024) = 1024
read(20, "ik GmbH\n\t000e  Technotrend/Haupp"..., 1024) = 1024
read(20, " 10/100 Ethernet\n\tab06  RTL8139 "..., 1024) = 1024
read(20, " Coppercom Inc\n13f0  Sundance Te"..., 1024) = 1024
read(20, "ge\n\t\t270f 1103  CT-7NJS Ultra mo"..., 1024) = 1024
read(20, "11  HiFier Serenade\n\t\t14c3 1713 "..., 1024) = 1024
read(20, "n\n\t16ff  PCI-16xx series PCI mul"..., 1024) = 1024
read(20, "  ME-1400B\n\t140c  ME-1400C\n\t140d"..., 1024) = 1024
read(20, "54  ME-6100I/4/DIO\n\t6158  ME-610"..., 1024) = 1024
read(20, "7168  PCI2S550 (Dual 16550 UART)"..., 1024) = 1024
read(20, "1412 d634  M-Audio Delta Audioph"..., 1024) = 1024
read(20, " based)\n\t5353  Hyper-V virtual V"..., 1024) = 1024
read(20, "\n\t950b  OXCB950 Cardbus 16950 UA"..., 1024) = 1024
read(20, "3  Gold Card NetGlobal 56k+10/10"..., 1024) = 1024
read(20, "  T420-BT Unified Wire Ethernet "..., 1024) = 1024
read(20, "T440-BCH Unified Wire Ethernet C"..., 1024) = 1024
read(20, "20-CR Unified Wire Storage Contr"..., 1024) = 1024
read(20, "\t4586  T440-4086 10Gbase-T Unifi"..., 1024) = 1024
read(20, "ge Controller\n\t4683  T420X-4083 "..., 1024) = 1024
read(20, "nified Wire Ethernet Controller\n"..., 1024) = 1024
read(20, "thernet Controller [VF]\n\t480b  B"..., 1024) = 1024
read(20, "net Controller\n\t5005  T540-BCH U"..., 1024) = 1024
read(20, "Unified Wire Ethernet Controller"..., 1024) = 1024
read(20, "Controller\n\t5098  T580-5098 Unif"..., 1024) = 1024
read(20, "0AC Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "411  T520-LL-CR Unified Wire Eth"..., 1024) = 1024
read(20, " Wire Ethernet Controller\n\t5490 "..., 1024) = 1024
read(20, "r\n\t54a4  T540-50A4 Unified Wire "..., 1024) = 1024
read(20, "oller\n\t5509  T520-BT Unified Wir"..., 1024) = 1024
read(20, " Controller\n\t5582  T504-5082 Uni"..., 1024) = 1024
read(20, "orage Controller\n\t559d  T540-509"..., 1024) = 1024
read(20, " Storage Controller\n\t5602  T522-"..., 1024) = 1024
read(20, "Controller\n\t5617  T520-OCP-SO Un"..., 1024) = 1024
read(20, "Storage Controller\n\t5696  T580-5"..., 1024) = 1024
read(20, "Wire Storage Controller\n\t56ab  T"..., 1024) = 1024
read(20, "ed Wire Ethernet Controller\n\t571"..., 1024) = 1024
read(20, "\n\t5794  T540-5094 Unified Wire E"..., 1024) = 1024
read(20, "-CR Unified Wire Ethernet Contro"..., 1024) = 1024
read(20, "ller [VF]\n\t5887  T580-5087 Unifi"..., 1024) = 1024
read(20, " Wire Ethernet Controller [VF]\n\t"..., 1024) = 1024
read(20, "225-SO-CR Unified Wire Ethernet "..., 1024) = 1024
read(20, "088  T62100-6088 Unified Wire Et"..., 1024) = 1024
read(20, "ller\n\t6484  T64100-6084 Unified "..., 1024) = 1024
read(20, "580  T6225-6080 Unified Wire Sto"..., 1024) = 1024
read(20, "R Unified Wire Storage Controlle"..., 1024) = 1024
read(20, "806  T62100-OCP-SO Unified Wire "..., 1024) = 1024
read(20, "T62100-608a Unified Wire Etherne"..., 1024) = 1024
read(20, "icroelectronics Inc\n143e  Jones "..., 1024) = 1024
read(20, "Me XS1715 SSD 800GB\n\t\t1028 1f97 "..., 1024) = 1024
read(20, "SFF\n\t\t1028 1fda  Express Flash P"..., 1024) = 1024
read(20, " 1.6TB\n\t\t1028 2045  EMC PowerEdg"..., 1024) = 1024
read(20, "D MU AIC Gen4 1.6TB\n\t\t1028 2095 "..., 1024) = 1024
read(20, "er\n\tf436  AVerTV Hybrid+FM\n1462 "..., 1024) = 1024
read(20, "cts\n147e  Matsushita Graphic Com"..., 1024) = 1024
read(20, "CAN bus with 2/4/6 CAN controlle"..., 1024) = 1024
read(20, "  Mentor Graphics Corp.\n14ac  No"..., 1024) = 1024
read(20, "on\n14bc  Globespan Semiconductor"..., 1024) = 1024
read(20, "GbaseT [OCP1]\n\t0002  USI-4227-SF"..., 1024) = 1024
read(20, " Port 1-4\n\ta008  VScom PCI800EH "..., 1024) = 1024
read(20, "rial card\n14dc  Amplicon Livelin"..., 1024) = 1024
read(20, "  BCM5745X NetXtreme-E RDMA Part"..., 1024) = 1024
read(20, "tXtreme II BCM5716 Gigabit Ether"..., 1024) = 1024
read(20, "se-SX Dual Port\n\t\t10b7 1008  3C9"..., 1024) = 1024
read(20, " 3C996-SX 1000Base-SX\n\t\t10b7 100"..., 1024) = 1024
read(20, "r Adapter (PCI-X, 10,100,1000-T)"..., 1024) = 1024
read(20, " II BCM5708\n\t\t1028 0205  PowerEd"..., 1024) = 1024
read(20, "61 Gigabit Server Adapter\n\t\t1734"..., 1024) = 1024
read(20, "X/TX S2 series onboard LAN\n\t165a"..., 1024) = 1024
read(20, "6  NC332T Adapter\n\t\t103c 193d  N"..., 1024) = 1024
read(20, "itude D610\n\t\t1028 0187  Precisio"..., 1024) = 1024
read(20, "et PCI Express\n\t167f  NetLink BC"..., 1024) = 1024
read(20, "0492  PCIe2 2-port 10 GbE BaseT "..., 1024) = 1024
read(20, "it Ethernet\n\t\t103c 12bc  d530 CM"..., 1024) = 1024
read(20, "AR 20Gb 2-port 630M Adapter\n\t\t10"..., 1024) = 1024
read(20, "Series server mainboard\n\t\t14e4 0"..., 1024) = 1024
read(20, " 310c  NC370i Multifunction Giga"..., 1024) = 1024
read(20, "b 2-port 530M Adapter\n\t\t103c 18d"..., 1024) = 1024
read(20, "igabit Ethernet PCIe\n\t16b1  NetL"..., 1024) = 1024
read(20, "703 1000Base-T\n\t\t14e4 000a  NetX"..., 1024) = 1024
read(20, "MA Ethernet Controller\n\t16d7  BC"..., 1024) = 1024
read(20, "er\n\t16e1  NetXtreme-C Ethernet V"..., 1024) = 1024
read(20, "8 0196  Inspiron 5160\n\t\t1028 01a"..., 1024) = 1024
read(20, "packaged as a Linksys WPC54G ver"..., 1024) = 1024
read(20, "M4322 802.11a/b/g/n Wireless LAN"..., 1024) = 1024
read(20, "Card\n\t\t105b e003  T77H030.00 Wir"..., 1024) = 1024
read(20, "Wireless G Notebook Card\n\t\t1799 "..., 1024) = 1024
read(20, "PCI Adapter\n\t\t1737 0014  WMP54G "..., 1024) = 1024
read(20, "  BCM4307 Chipcommon I/O Control"..., 1024) = 1024
read(20, "ler\n\t\t1028 000d  Wireless 1510 W"..., 1024) = 1024
read(20, "\t4358  BCM43227 802.11b/g/n\n\t435"..., 1024) = 1024
read(20, "etwork Adapter\n\t4401  BCM4401 10"..., 1024) = 1024
read(20, "o Accelerator\n\t4710  BCM4710 Sen"..., 1024) = 1024
read(20, "net Switch\n\t5691  BCM5691 GE/10G"..., 1024) = 1024
read(20, "372  BCM56372 Switch ASIC\n\tb375 "..., 1024) = 1024
read(20, "4e7  3CX\n14e8  RAYCER Inc\n14e9  "..., 1024) = 1024
read(20, " 02c0  Compaq Scooter\n\t\t13e0 02d"..., 1024) = 1024
read(20, "ce/Spkp (w/Handset) Modem\n\t1066 "..., 1024) = 1024
read(20, "twork Adapter\n\t1815  HCF 56k Mod"..., 1024) = 1024
read(20, "set) Modem (SmartDAA)\n\t2066  HSF"..., 1024) = 1024
read(20, "Voice/Spkp (w/HS) CardBus Modem "..., 1024) = 1024
read(20, "1 2014  Devolo MikroLink 56K Mod"..., 1024) = 1024
read(20, "\t\t107d 665f  WinFast DTV1000-T\n\t"..., 1024) = 1024
read(20, "d\n\t\t7063 3000  pcHDTV HD3000 HDT"..., 1024) = 1024
read(20, "000  pcHDTV HD3000 HDTV\n\t\t7063 5"..., 1024) = 1024
read(20, "y T PCIe Dual\n\t\t18ac db78  Fusio"..., 1024) = 1024
read(20, "ANSAS MARINE (UK) Ltd\n14fc  Quad"..., 1024) = 1024
read(20, "0f  INTEC GmbH\n1510  BEHAVIOR TE"..., 1024) = 1024
read(20, "ata/Fax/Voice Modem\n\t\t1522 0500 "..., 1024) = 1024
read(20, "Super-G3 Fax Modem\n\t\t1522 3200  "..., 1024) = 1024
read(20, "der Controller\n\t0750  ENE PCI Sm"..., 1024) = 1024
read(20, "a ATA 133/100/66 Host Controller"..., 1024) = 1024
read(20, " Systems\n1545  VISIONTEK\n1546  I"..., 1024) = 1024
read(20, "ronics Industry Co Ltd\n1565  Bio"..., 1024) = 1024
read(20, "mpany\n1573  Lattice - Vantis\n157"..., 1024) = 1024
read(20, "Manager\n\t0002  Osprey Cluster Ma"..., 1024) = 1024
read(20, "teel Networks Inc\n15ac  North At"..., 1024) = 1024
read(20, "lash Recovery]\n\t020b  MT27710 Fa"..., 1024) = 1024
read(20, "trum-2, Secure Flash recovery mo"..., 1024) = 1024
read(20, "R Dual Port Mezzanine Card\n\t\t15b"..., 1024) = 1024
read(20, "\n\t\t103c 22f4  InfiniBand FDR/Eth"..., 1024) = 1024
read(20, "and-up single-port 40GbE MCX415A"..., 1024) = 1024
read(20, "G\n\t\t15b3 0025  ConnectX-4 Lx 25 "..., 1024) = 1024
read(20, "Family [ConnectX-6 Lx]\n\t1020  MT"..., 1024) = 1024
read(20, "iniHost III Ex]\n\t6340  MT25408A0"..., 1024) = 1024
read(20, " IB/Flex-10 10Gb Adapter\n\t\t103c "..., 1024) = 1024
read(20, "pto disabled\n\ta2d2  MT416842 Blu"..., 1024) = 1024
brk(NULL)                               = 0x1117000
brk(0x1139000)                          = 0x1139000
brk(NULL)                               = 0x1139000
brk(NULL)                               = 0x1139000
brk(0x1138000)                          = 0x1138000
brk(NULL)                               = 0x1138000
read(20, "6c  MT53100 [Spectrum-2]\n\tcf70  "..., 1024) = 1024
read(20, "w/ opto coupler)\n\t1004  APCI2032"..., 1024) = 1024
read(20, "bd  DFI Inc\n15be  Sola Electroni"..., 1024) = 1024
read(20, "acheflow Inc\n15e1  Voice Technol"..., 1024) = 1024
read(20, "mman - Canada Ltd\n1601  Tenta Te"..., 1024) = 1024
read(20, "rSync T4U (4 port X.21/V.35/V.24"..., 1024) = 1024
read(20, "tor and FEC\n1631  Packard Bell B"..., 1024) = 1024
read(20, "bps CNA - LL\n\t\t1657 0024  16Gbps"..., 1024) = 1024
read(20, "roceIII110\n\t5a21  ProceIII150\n\t5"..., 1024) = 1024
read(20, "  Actiontec Electronics Inc\n\t010"..., 1024) = 1024
read(20, "astleNet Technology Inc.\n\t1170  "..., 1024) = 1024
read(20, "11g Wireless CardBus Adapter\n\t\t0"..., 1024) = 1024
read(20, "eless 801.11g PCI card\n\t\t1186 3a"..., 1024) = 1024
read(20, "4b9 cb21  CB21 802.11a/b/g Cardb"..., 1024) = 1024
read(20, "p Card\n\t\t1799 3010  F6D3010 Dual"..., 1024) = 1024
read(20, " 802.11 b/g  MiniPCI Adapter, Re"..., 1024) = 1024
read(20, "062  IPN-W100CB 802.11abg Wirele"..., 1024) = 1024
read(20, "  AR242x 802.11abg NIC (PCI Expr"..., 1024) = 1024
read(20, " Wireless CardBus Adapter\n\t\t1154"..., 1024) = 1024
read(20, "ini PCI Adapter\n\t0029  AR922X Wi"..., 1024) = 1024
read(20, "\t\t1a32 0306  EM306 802.11bgn Wir"..., 1024) = 1024
read(20, "AW-NE785 / AW-NE785H 802.11bgn W"..., 1024) = 1024
read(20, "e card on a series 3 laptop\n\t\t1a"..., 1024) = 1024
read(20, "twork Adapter\n\t0050  QCA9887 802"..., 1024) = 1024
read(20, "sed vendor ID 0001\n\t\t0001 0001  "..., 1024) = 1024
read(20, "es\n16ce  Roland Corp.\n16d5  Acro"..., 1024) = 1024
read(20, " Reconfigurable Conduction-Coole"..., 1024) = 1024
read(20, "le & Hold\n\t4d4e  PMC482, APC482,"..., 1024) = 1024
read(20, "figurable Spartan-6 FPGA with pl"..., 1024) = 1024
read(20, "c cells, conduction-cooled\n\t7006"..., 1024) = 1024
read(20, "rtix-7 FPGA module 48 TTL channe"..., 1024) = 1024
read(20, "le 24 RS485 channels\n\t7053  APA7"..., 1024) = 1024
read(20, "irst, Inc.\n170b  NetOctave\n\t0100"..., 1024) = 1024
read(20, "9  ROL/F-100 Fast Ethernet Adapt"..., 1024) = 1024
read(20, " isolated\n\t0243  PCA7428CS_F1 - "..., 1024) = 1024
read(20, " III CN78XX Network Processor\n\t0"..., 1024) = 1024
read(20, "04  CN2350 [LiquidIO II] 2-port "..., 1024) = 1024
read(20, "NDERX Key Memory\n\ta017  THUNDERX"..., 1024) = 1024
read(20, "-CBC\n\ta030  THUNDERX L2C-MCI\n\ta0"..., 1024) = 1024
read(20, "ith N110 TDC\n\t000b  double 14bit"..., 1024) = 1024
read(20, " controller\n# port 5 of 8\n\t6814 "..., 1024) = 1024
read(20, "y Module\n17a0  Genesys Logic, In"..., 1024) = 1024
read(20, "4 v1 802.11g Wireless-G Notebook"..., 1024) = 1024
read(20, "17d3 1284  ARC-1284 24 Port PCIe"..., 1024) = 1024
read(20, "t PCIe 2.0 to SAS/SATA 6Gb RAID "..., 1024) = 1024
read(20, "rt 10-Gigabit Ethernet (PCI-X, F"..., 1024) = 1024
read(20, "\n17df  Dini Group\n\t1864  Virtex4"..., 1024) = 1024
read(20, "0a  Virtex7 PCIe ASIC Emulation "..., 1024) = 1024
read(20, " Design [DNPCIe_K7_10G_LL]\n\t1a05"..., 1024) = 1024
read(20, "27  EN2710 [c.Link] MoCA 2.0 Net"..., 1024) = 1024
read(20, "idge\n\t6021  R6021 Host Bridge\n# "..., 1024) = 1024
read(20, "bient Technologies Inc\n\t4000  Ha"..., 1024) = 1024
read(20, " Wireless Network PCI Adapter\n\t\t"..., 1024) = 1024
read(20, "r\n\t\t1948 3c24  C54Ri v2 Wireless"..., 1024) = 1024
read(20, "R PCIe\n\t\t103c 18ec  Ralink RT329"..., 1024) = 1024
read(20, "ISDN card\n\t3069  ISDN PCI DC-105"..., 1024) = 1024
read(20, " MT23108 InfiniHost HCA flash re"..., 1024) = 1024
read(20, "ort Serial\n\t4208  MIport 3PCIU8 "..., 1024) = 1024
read(20, "3XT/V5/V8\n\t0047  Volari 8300 (ch"..., 1024) = 1024
read(20, "18ec 0302  NIFIC (szedata2) 2x10"..., 1024) = 1024
read(20, "\t0064  NT20E Inline Card\n\t0071  "..., 1024) = 1024
read(20, "exsis] Switch Virtual P2P PCIe B"..., 1024) = 1024
read(20, "re UARTs\n\t0019  SuperFSCC Serial"..., 1024) = 1024
read(20, "05  Micronas USA, Inc.\n1912  Ren"..., 1024) = 1024
read(20, "m]\n\t\t10b8 0103  SMC10GPCIe-10BT "..., 1024) = 1024
read(20, "\n\t\t1924 6206  SFN5122F-R6 SFP+ S"..., 1024) = 1024
read(20, "Adapter\n\t\t1924 6103  SFN5121T-R3"..., 1024) = 1024
read(20, "ra 7000 Series 10/40G Adapter\n\t\t"..., 1024) = 1024
read(20, "  XtremeScale X2562 OCP 3.0 Dual"..., 1024) = 1024
read(20, "FE4002-A1\n\t\t1924 0301  SFE4003-A"..., 1024) = 1024
read(20, "T (fallback firmware)\n# nee Curt"..., 1024) = 1024
read(20, "022E\n\t0111  P1022\n\t\t1c7f 5200  E"..., 1024) = 1024
read(20, "r\n\ta00b  PWRficient SERDES\n\ta00c"..., 1024) = 1024
read(20, "468  Eee PC 1015PX\n# E2200, E220"..., 1024) = 1024
read(20, "43 81e4  P5B [JMB363]\n\t\t1458 b00"..., 1024) = 1024
read(20, "cessor\n199a  Pulse-LINK, Inc.\n19"..., 1024) = 1024
read(20, "10102-FM-E / OCe10102-FX-E for E"..., 1024) = 1024
read(20, "b  NC554FLB 10Gb 2-port FlexFabr"..., 1024) = 1024
read(20, "00C V3 3200GB HHHL AIC\n\t0200  Hi"..., 1024) = 1024
read(20, "ligent Management system chip w/"..., 1024) = 1024
read(20, "er (Virtual Function)\n\ta22f  HNS"..., 1024) = 1024
read(20, "  CAN interface PC104+ HS/HS\n\t00"..., 1024) = 1024
read(20, "ction\n\t2000  TILE-Gx PCI Express"..., 1024) = 1024
read(20, "a77  Lightfleet Corporation\n1a78"..., 1024) = 1024
read(20, "eroflex Gaisler\n1acc  Point of V"..., 1024) = 1024
read(20, "h card reader controller\n1aec  W"..., 1024) = 1024
read(20, "ilesystem\n# virtio 1.0\n\t1050  Vi"..., 1024) = 1024
read(20, "6  Netcope Technologies, a.s.\n\tc"..., 1024) = 1024
read(20, "\n\t000f  ADQDSP\n\t0014  ADQ412\n\t00"..., 1024) = 1024
read(20, "SATA 6Gb/s Controller\n\t9178  88S"..., 1024) = 1024
read(20, "6  DELTACAST\n\t0007  DELTA-3G-elp"..., 1024) = 1024
read(20, "s Corp.\n1baa  QNAP Systems, Inc."..., 1024) = 1024
read(20, "000\n# Kiowa M.2\n\t\t1bb1 0125  Nyt"..., 1024) = 1024
read(20, "io encoder / decoder\n1bb5  Quant"..., 1024) = 1024
read(20, "etwork Adapter\n\t4263  10G-PCIE3-"..., 1024) = 1024
read(20, " [Corfu]\n\ta000  FBC2CGG3 Capture"..., 1024) = 1024
read(20, "04f5  PCIe3 1.6TB NVMe Flash Ada"..., 1024) = 1024
read(20, "ation\n\t0001  Hunter PCI Express\n"..., 1024) = 1024
read(20, "actPCI Serial CAN-1 card\n# suppo"..., 1024) = 1024
read(20, "ress Root Port\n\t0713  ZX-100/ZX-"..., 1024) = 1024
read(20, "D Standard Host Bridge\n\t31b2  ZX"..., 1024) = 1024
read(20, "ler\n\t9286  ZX-D eMMC Host Contro"..., 1024) = 1024
read(20, " AQC107 NBase-T/IEEE 802.3bz Eth"..., 1024) = 1024
read(20, "l]\n\t1010  AR-ARKA-FX1 [Arkville "..., 1024) = 1024
read(20, "net Controller Port 2/Port3\n\t145"..., 1024) = 1024
read(20, "[Goya]\n# PCIe accelerator card f"..., 1024) = 1024
read(20, "ller VF\n\t\t1dd8 4000  Naples 100G"..., 1024) = 1024
read(20, " 1\n\te007  eMAG PCI Express Root "..., 1024) = 1024
read(20, "Acorn CLE-215+\n\t1525  Xilinx BCU"..., 1024) = 1024
read(20, " SmartNIC\n\t3010  10-Giga TOE Sma"..., 1024) = 1024
read(20, " TOE Dual Port SFP+/CX4 Low Prof"..., 1024) = 1024
read(20, "se-T/NBASE-T Ethernet Adapter\n\t\t"..., 1024) = 1024
read(20, "1.1 controller\n2a15  3D Vision(?"..., 1024) = 1024
read(20, "ipset CPU to PCI Bridge\n\t8012  V"..., 1024) = 1024
read(20, "\t3d3d 0116  Oxygen GVX1\n\t\t3d3d 0"..., 1024) = 1024
read(20, "0  ALS4000 Audio Chipset\n\t4710  "..., 1024) = 1024
read(20, "ort 10GbE Server Adapter\n\t\t152d "..., 1024) = 1024
read(20, "0 0003  WinTV PVR 250\n\t\t0070 000"..., 1024) = 1024
read(20, "CI Analog TV (NTSC+FM, Philips F"..., 1024) = 1024
read(20, " AVerTV Video Capture (NTSC-J, P"..., 1024) = 1024
read(20, "ric Company\n4624  Budker Institu"..., 1024) = 1024
read(20, "rd\n\t0c60  PCI-DIO-48H 8255 Digit"..., 1024) = 1024
read(20, "\t0f00  PCI-IIRO-8 Isolated Digit"..., 1024) = 1024
read(20, "\n\t1069  PCI-COM485/8 8x RS485 Ca"..., 1024) = 1024
read(20, "10dc  mPCIe-COM-4SM 4x RS232/RS4"..., 1024) = 1024
read(20, "SM 2x Isolated RS232/RS422/RS485"..., 1024) = 1024
read(20, "og Input w/FIFO Card\n\teca8  PCI-"..., 1024) = 1024
read(20, "rabber\n\t0030  [mvHYPERION-HD-SDI"..., 1024) = 1024
read(20, "\n\t0b04  BU-65569I4 MIL-STD-1553 "..., 1024) = 1024
read(20, "M] vers 1\n\t8882  86c868 [Vision "..., 1024) = 1024
read(20, "333 8904  86C365 Trio3D AGP\n\t890"..., 1024) = 1024
read(20, "\t1092 480e  Stealth III S540\n\t\t1"..., 1024) = 1024
read(20, "\n\t8c22  SuperSavage MX/128\n\t8c24"..., 1024) = 1024
read(20, "chnologies\n\t6178  DVB Tuner PCIe"..., 1024) = 1024
read(20, "de HID events.\n\tc110  Virtualize"..., 1024) = 1024
read(20, "nc.\n7063  pcHDTV\n\t2000  HD-2000\n"..., 1024) = 1024
read(20, "otebook PC [MD98410]\n\t\te4bf 50c1"..., 1024) = 1024
read(20, "Centrino Wireless-N 1000 BG\n\t\t80"..., 1024) = 1024
read(20, "ntrino Advanced-N + WiMAX 6250 2"..., 1024) = 1024
read(20, "01  Xeon E3-1200/2nd Generation "..., 1024) = 1024
read(20, "mily Integrated Graphics Control"..., 1024) = 1024
read(20, "\t1043 1477  N56VZ\n\t\t1043 844d  P"..., 1024) = 1024
read(20, "ller\n\t015d  Xeon E3-1200 v2/3rd "..., 1024) = 1024
read(20, " Bridge\n\t030d  80312 I/O Compani"..., 1024) = 1024
read(20, "3 Segment-B PCIe Express to PCI-"..., 1024) = 1024
read(20, "2375EB/SB PCI to EISA Bridge\n\t04"..., 1024) = 1024
read(20, "0SP Scalability Port 5 registers"..., 1024) = 1024
read(20, "\t06ea  Comet Lake PCH Serial IO "..., 1024) = 1024
read(20, "own Power Management Unit\n\t0811 "..., 1024) = 1024
read(20, "Wireless-N + WiMAX 6150\n\t\t8086 1"..., 1024) = 1024
read(20, "o Wireless-N 135 BGN\n\t\t8086 0462"..., 1024) = 1024
read(20, "ireless 7260\n# Wilkins Peak 2\n\t\t"..., 1024) = 1024
read(20, "e  Dual Band Wireless-AC 7260\n# "..., 1024) = 1024
read(20, "Wireless-N 7260\n# Wilkins Peak 2"..., 1024) = 1024
read(20, "Wilkins Peak 2\n\t\t8086 4270  Wire"..., 1024) = 1024
read(20, "\t8086 0470  Dual Band Wireless-A"..., 1024) = 1024
read(20, "ns Peak 1\n\t\t8086 8370  Dual Band"..., 1024) = 1024
read(20, "ak 2 AC\n\t\t8086 5010  Dual Band W"..., 1024) = 1024
read(20, "ne Peak 2 AGN\n\t\t8086 9000  Dual "..., 1024) = 1024
read(20, " Wireless-N 7265\n# Stone Peak 2 "..., 1024) = 1024
read(20, "\t1028 1fe4  Express Flash NVMe 4"..., 1024) = 1024
read(20, ".5\" U.2 (P4500)\n\t\t1137 0231  NVM"..., 1024) = 1024
read(20, "[3DNAND] 4.0TB AIC (P4500)\n\t\t1d4"..., 1024) = 1024
read(20, ".2 (P4600)\n\t\t1028 1fe7  Express "..., 1024) = 1024
read(20, "e4  Atom Processor D2xxx/N2xxx I"..., 1024) = 1024
read(20, "er\n\t0bf5  Atom Processor D2xxx/N"..., 1024) = 1024
read(20, "n E7 v4/Xeon E5 v4/Xeon E3 v4/Xe"..., 1024) = 1024
read(20, "al\n\t0c77  Atom Processor S1200 I"..., 1024) = 1024
read(20, "d Graphics Controller\n\t0d4c  Eth"..., 1024) = 1024
read(20, "t 2a\n\t0e05  Xeon E7 v2/Xeon E5 v"..., 1024) = 1024
read(20, "0\n\t\t1028 04f7  Xeon E5 v2 on Pow"..., 1024) = 1024
read(20, "Xeon E7 v2/Xeon E5 v2/Core i7 VT"..., 1024) = 1024
read(20, "3e  Xeon E7 v2/Xeon E5 v2/Core i"..., 1024) = 1024
read(20, "hannel Target Address Decoder Re"..., 1024) = 1024
read(20, "ent Register\n\t0ea0  Xeon E7 v2/X"..., 1024) = 1024
read(20, "el 0-3 ERROR Registers 0\n\t0eb3  "..., 1024) = 1024
read(20, "\t0ec9  Xeon E7 v2/Xeon E5 v2/Cor"..., 1024) = 1024
read(20, "gisters\n\t0eec  Xeon E7 v2/Xeon E"..., 1024) = 1024
read(20, "5 v2/Core i7 DDRIO\n\t0efa  Xeon E"..., 1024) = 1024
read(20, "ine\n\t0f1c  Atom Processor Z36xxx"..., 1024) = 1024
read(20, "36xxx/Z37xxx Series LPIO2 I2C Co"..., 1024) = 1024
read(20, "em 56 Cardbus II\n\t\t8086 200e  Pr"..., 1024) = 1024
read(20, "er)\n\t\t8086 1112  PRO/1000 T Desk"..., 1024) = 1024
read(20, "ction\n\t\t8086 1001  PRO/1000 MT S"..., 1024) = 1024
read(20, "esktop Adapter\n\t1014  82541ER Gi"..., 1024) = 1024
read(20, "thernet Controller\n\t\t8086 1000  "..., 1024) = 1024
read(20, "1CAM (ICH3) PRO/100 VE (LOM) Eth"..., 1024) = 1024
read(20, "03c  82801DB PRO/100 VM (CNR) Et"..., 1024) = 1024
read(20, "backplane\n\t1050  82562EZ 10/100 "..., 1024) = 1024
read(20, "e  PRO/1000 PT Dual Port Network"..., 1024) = 1024
read(20, "roller Mobile\n\t\t103c 30d5  530 L"..., 1024) = 1024
read(20, "9  82546GB Gigabit Ethernet Cont"..., 1024) = 1024
read(20, "\t8086 1082  PRO/1000 PT Server A"..., 1024) = 1024
read(20, "nt)\n\t108f  Active Management Tec"..., 1024) = 1024
read(20, " a11f  PRO/10GbE CX4 Server Adap"..., 1024) = 1024
read(20, "thernet Controller\n\t10b9  82572E"..., 1024) = 1024
read(20, "nnection\n\t10c6  82598EB 10-Gigab"..., 1024) = 1024
read(20, "6 a04c  Gigabit ET Dual Port Ser"..., 1024) = 1024
read(20, " Gigabit VT Quad Port Server Ada"..., 1024) = 1024
read(20, "igabit Network Connection\n\t\t8086"..., 1024) = 1024
read(20, "74L Gigabit Network Connection\n\t"..., 1024) = 1024
read(20, "\n\t\t15d9 0611  AOC-STGN-I2S [REV "..., 1024) = 1024
read(20, " PRO/1000 MF Server Adapter (LX)"..., 1024) = 1024
read(20, " (OTG)\n\t11a0  Merrifield SCU IPC"..., 1024) = 1024
read(20, "on LAN*\n\t\t0e11 3006  82559 Fast "..., 1024) = 1024
read(20, " Adapter\n\t\t1014 01f2  10/100 Eth"..., 1024) = 1024
read(20, "\t\t103c 1200  NetServer 10/100TX\n"..., 1024) = 1024
read(20, "6 0005  82557 10/100\n\t\t8086 0006"..., 1024) = 1024
read(20, "dapter\n\t\t8086 0050  EtherExpress"..., 1024) = 1024
read(20, "dem\n\t\t8086 200f  EtherExpress PR"..., 1024) = 1024
read(20, "86 2204  EtherExpress PRO/100+ M"..., 1024) = 1024
read(20, "00 S Network Connection\n\t\t8086 3"..., 1024) = 1024
read(20, "8086 1361  82806AA PCI64 Hub Con"..., 1024) = 1024
read(20, "ection\n\t\t8086 a10c  Gigabit ET Q"..., 1024) = 1024
read(20, " 7b13  Dual 10GBASE-T LP\n\t1520  "..., 1024) = 1024
read(20, "hernet Adapter\n\t\t1093 76b1  PCIe"..., 1024) = 1024
read(20, "nection\n\t\t108e 7b17  Quad Port G"..., 1024) = 1024
read(20, "ion\n\t\t8086 0001  Ethernet Server"..., 1024) = 1024
read(20, "verged Network Adapter X540-T2\n\t"..., 1024) = 1024
read(20, "8 1GbE interface\n\t\t1059 0130  T4"..., 1024) = 1024
read(20, "r\n\t\t1bd4 0030  10G SFP+ SP EP101"..., 1024) = 1024
read(20, "olt 3 Edition\n\t\t18d4 0c08  X550 "..., 1024) = 1024
read(20, "1570  Ethernet Connection I219-V"..., 1024) = 1024
read(20, "r X710\n\t\t8086 0001  Ethernet Con"..., 1024) = 1024
read(20, " for OCP NIC 3.0\n\t\t8086 00a2  Et"..., 1024) = 1024
read(20, "ce\n\t\t1590 0000  Ethernet 2-port "..., 1024) = 1024
read(20, " Adapter XL710-Q1\n\t\t8086 0003  E"..., 1024) = 1024
read(20, "3  Ethernet Converged Network Ad"..., 1024) = 1024
read(20, "PCIe x8 Bifurcated as x4x4, UEFI"..., 1024) = 1024
read(20, "\t8086 0007  Ethernet Network Ada"..., 1024) = 1024
read(20, "er E810-XXV-4\n\t\t8086 0008  Ether"..., 1024) = 1024
read(20, "ual Function\n\t15a9  X552 Virtual"..., 1024) = 1024
read(20, "erbolt 3 USB 3.1 Controller (Low"..., 1024) = 1024
read(20, "E-DA2\n\t\t8086 0001  Intel(R) Ethe"..., 1024) = 1024
read(20, "I [Titan Ridge 4C 2018]\n\t15ec  J"..., 1024) = 1024
read(20, "-t Adapter\n\t\t8086 0006  Ethernet"..., 1024) = 1024
read(20, "\t1610  Broadwell-U Host Bridge -"..., 1024) = 1024
read(20, "troller (x16)\n\t1902  HD Graphics"..., 1024) = 1024
read(20, "s\n\t\t1028 06e4  XPS 15 9550\n\t\t103"..., 1024) = 1024
read(20, "0\n\t193b  Iris Pro Graphics 580\n\t"..., 1024) = 1024
read(20, "\te4bf 1040  CU1-CHORUS\n\t\te4bf 31"..., 1024) = 1024
read(20, "r 0\n\t19b2  Atom Processor C3000 "..., 1024) = 1024
read(20, "Atom Processor C3000 Series Inte"..., 1024) = 1024
read(20, "5 [Brookdale] Chipset Host Bridg"..., 1024) = 1024
read(20, "\t1028 04da  Vostro 3750\n\t\t17aa 2"..., 1024) = 1024
read(20, "o8,2 [Core i7, 15\", 2011]\n\t1c16 "..., 1024) = 1024
read(20, "ies/C200 Series Chipset Family S"..., 1024) = 1024
read(20, "USB Enhanced Host Controller #2\n"..., 1024) = 1024
read(20, "6 Series Chipset Family LPC Cont"..., 1024) = 1024
read(20, "C200 Series Chipset Family LPC C"..., 1024) = 1024
read(20, "  C600/X79 series chipset PCI Ex"..., 1024) = 1024
read(20, "eries chipset High Definition Au"..., 1024) = 1024
read(20, "rver\n\t1d3f  C608/C606/X79 series"..., 1024) = 1024
read(20, "64  C600/X79 series chipset Dual"..., 1024) = 1024
read(20, "E mode]\n\t1e01  7 Series Chipset "..., 1024) = 1024
read(20, "3 108d  VivoBook X202EV\n\t\t1043 1"..., 1024) = 1024
read(20, "\t1e20  7 Series/C216 Chipset Fam"..., 1024) = 1024
read(20, "1e26  Motherboard\n\t1e2d  7 Serie"..., 1024) = 1024
read(20, "mily IDE-r Controller\n\t1e3d  7 S"..., 1024) = 1024
read(20, " 7 Series Chipset Family LPC Con"..., 1024) = 1024
read(20, "7  Atom processor C2000 SoC Tran"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA2 Con"..., 1024) = 1024
read(20, "m processor C2000 RAID SATA3 Con"..., 1024) = 1024
read(20, "36  Sky Lake-E IOxAPIC Configura"..., 1024) = 1024
read(20, "s\n\t2078  Sky Lake-E PCU Register"..., 1024) = 1024
read(20, "Series LPIO1 HSUART Controller #"..., 1024) = 1024
read(20, "CI Controller\n\t22b8  Atom/Celero"..., 1024) = 1024
read(20, "8000/J3xxx/N3xxx Series PCI Expr"..., 1024) = 1024
read(20, "A Controller [AHCI Mode]\n\t23a6  "..., 1024) = 1024
read(20, " 220 Integrated Digital Audio\n\t\t"..., 1024) = 1024
read(20, "7b 0507  TH7II-RAID\n\t\t8086 4532 "..., 1024) = 1024
read(20, "Deskpro EN Audio\n\t\t0e11 0088  Ev"..., 1024) = 1024
read(20, "T61/R61\n\t\t17c0 10d2  Medion Akoy"..., 1024) = 1024
read(20, "U Virtual Machine\n\t\t8086 3010  E"..., 1024) = 1024
read(20, "\n\t\t1028 04f7  PowerEdge R320 ser"..., 1024) = 1024
read(20, "86 3424  SE7501HG2 Mainboard\n\t\t8"..., 1024) = 1024
read(20, "/GR315MP\n\t\t134d 4c21  Dell Inspi"..., 1024) = 1024
read(20, "26  Optiplex GX260\n\t\t1028 0160  "..., 1024) = 1024
read(20, "\t1071 8160  MIM2000\n\t\t114a 0582 "..., 1024) = 1024
read(20, "D500\n\t\te4bf 0cc9  CC9-SAMBA\n\t\te4"..., 1024) = 1024
read(20, "roller\n\t\t1014 0524  ThinkPad T4x"..., 1024) = 1024
read(20, "33\n\t\t1071 8160  MIM2000\n\t\t144d c"..., 1024) = 1024
read(20, "004  D1451 Mainboard (SCENIC N30"..., 1024) = 1024
read(20, " QEMU Virtual Machine\n\t\t4c53 109"..., 1024) = 1024
read(20, "50 onboard UHCI\n\t\t1028 016d  Pow"..., 1024) = 1024
read(20, "865PE)\n\t\t1462 7280  865PE Neo2 ("..., 1024) = 1024
read(20, "Motherboard (865G)\n\t\t15d9 4580  "..., 1024) = 1024
read(20, "s server mainboard\n\t\t1028 0168  "..., 1024) = 1024
read(20, "e 2850 IDE Controller\n\t\t1028 017"..., 1024) = 1024
read(20, "rd EHCI\n\t\t1028 0183  PowerEdge 1"..., 1024) = 1024
read(20, "rd D865GLC\n\t\t8086 524c  D865PERL"..., 1024) = 1024
read(20, "ion QSFP28\n\t\t1cb8 0004  Omni-Pat"..., 1024) = 1024
read(20, "\n\t2501  82820 820 (Camino) Chips"..., 1024) = 1024
read(20, "UM Controller\n\t2547  E7500/E7501"..., 1024) = 1024
read(20, "c  d330 uT\n\t\t1043 80f2  P4P800/P"..., 1024) = 1024
read(20, "oot Port\n\t2582  82915G/GV/910GL "..., 1024) = 1024
read(20, "9c  NX6110/NC6120\n\t\t103c 308a  N"..., 1024) = 1024
read(20, "Computer\n\t\t1775 ce90  CE9\n\t\t4c53"..., 1024) = 1024
read(20, "el 200 D2020 mainboard\n\t\t1775 10"..., 1024) = 1024
read(20, " 5000 Series Chipset PCI Express"..., 1024) = 1024
read(20, "t FBD Registers\n\t\t103c 31fd  Pro"..., 1024) = 1024
read(20, "ers\n\t2614  E8500/E8501 Reserved "..., 1024) = 1024
read(20, "0  PowerEdge 6850 Reserved Regis"..., 1024) = 1024
read(20, "\n\t\t1028 0179  Optiplex GX280\n\t\t1"..., 1024) = 1024
read(20, " Mainboard\n\t\t1462 7028  915P/G N"..., 1024) = 1024
read(20, "orkstation\n\t\t103c 0944  Compaq n"..., 1024) = 1024
read(20, "43 80a6  P5GD1-VW Mainboard\n\t\t14"..., 1024) = 1024
read(20, "FB/FBM/FR/FW/FRW (ICH6 Family) I"..., 1024) = 1024
read(20, "01f0  PowerEdge R900 onboard USB"..., 1024) = 1024
read(20, "d9 8680  X7DVL-E-O motherboard\n\t"..., 1024) = 1024
read(20, " Datacenter SSD [Optane]\n\t\t1028 "..., 1024) = 1024
read(20, "45G/GZ Integrated Graphics Contr"..., 1024) = 1024
read(20, "5  ThinkPad T60\n\t\t17aa 2017  Thi"..., 1024) = 1024
read(20, "(ICH7 Family) LPC Interface Brid"..., 1024) = 1024
read(20, "3 8179  P5B-MX/WiFi-AP, P5KPL-VM"..., 1024) = 1024
read(20, "0 Laptop\n\t\t17aa 200d  ThinkPad R"..., 1024) = 1024
read(20, "d7  XPS M1210\n\t\t1028 01df  Power"..., 1024) = 1024
read(20, "08\n\t\t1043 8179  P5B-MX/WiFi-AP, "..., 1024) = 1024
read(20, "\n\t\t17aa 200a  ThinkPad R60/T60/X"..., 1024) = 1024
read(20, "on MIM 2240 Notebook PC [MD98100"..., 1024) = 1024
read(20, "efinition Audio Controller\n\t\t102"..., 1024) = 1024
read(20, "C200 audio [Realtek ALC861VD]\n\t\t"..., 1024) = 1024
read(20, " Modem Controller\n\t27de  82801G "..., 1024) = 1024
read(20, "r\n\t\t103c 30c1  Compaq 6910p\n\t\t17"..., 1024) = 1024
read(20, "01HB (ICH8) 4 port SATA Controll"..., 1024) = 1024
read(20, "GN-NR120E\n\t\t17aa 20a7  ThinkPad "..., 1024) = 1024
read(20, " 9005  Vaio VGN-FZ260E\n\t\t104d 90"..., 1024) = 1024
read(20, "Z260E\n\t\t104d 902d  VAIO VGN-NR12"..., 1024) = 1024
read(20, "ab  ThinkPad T61/R61\n\t\t17c0 4083"..., 1024) = 1024
read(20, "1\n\t\t1028 01da  OptiPlex 745\n\t\t10"..., 1024) = 1024
read(20, "\t1025 0121  Aspire 5920G\n\t\t1025 "..., 1024) = 1024
read(20, "io VGN-FZ260E\n\t\t104d 902d  VAIO "..., 1024) = 1024
read(20, "ATA Controller\n\t\t1028 0211  Opti"..., 1024) = 1024
read(20, "TA Controller\n\t\t1028 0211  Optip"..., 1024) = 1024
read(20, "934  82801I (ICH9 Family) USB UH"..., 1024) = 1024
read(20, " PowerEdge R610 USB UHCI Control"..., 1024) = 1024
read(20, "\n\t\t1462 7360  G33/P35 Neo\n\t\t17aa"..., 1024) = 1024
read(20, "Controller\n\t\t1028 0236  PowerEdg"..., 1024) = 1024
read(20, "ller #1\n\t\t1028 020d  Inspiron 53"..., 1024) = 1024
read(20, "M710 USB EHCI Controller\n\t\t103c "..., 1024) = 1024
read(20, "ICH9/ICH9R]\n\t\t8086 2940  Optiple"..., 1024) = 1024
read(20, " Controller\n\t2975  82946GZ/GL HE"..., 1024) = 1024
read(20, " PT IDER Controller\n\t29a7  82P96"..., 1024) = 1024
read(20, "76  P5K PRO Motherboard: Intel 8"..., 1024) = 1024
read(20, "\t29e5  82X38/X48 Express MEI Con"..., 1024) = 1024
read(20, "ile GM965/GL960 Integrated Graph"..., 1024) = 1024
read(20, " cc47  CCG-RUMBA\n\t2a11  Mobile G"..., 1024) = 1024
read(20, " Redirection\n\t2a50  Cantiga MEI "..., 1024) = 1024
read(20, "on Processor E7 Product Family S"..., 1024) = 1024
read(20, "\n\t2b50  Xeon Processor E7 Produc"..., 1024) = 1024
read(20, "vel Cache Coherence Engine 8\n\t2b"..., 1024) = 1024
read(20, "500/Core i7 Integrated Memory Co"..., 1024) = 1024
read(20, "cessor QuickPath Architecture Ge"..., 1024) = 1024
read(20, " Link 0\n\t2c91  Core Processor QP"..., 1024) = 1024
read(20, "ink 0\n\t2cd1  Xeon C5500/C3500 QP"..., 1024) = 1024
read(20, "Channel 2 Control\n\t2cf1  Xeon C5"..., 1024) = 1024
read(20, "5600 Series Integrated Memory Co"..., 1024) = 1024
read(20, " Chipset Integrated Graphics Con"..., 1024) = 1024
read(20, "3  4 Series Chipset Integrated G"..., 1024) = 1024
read(20, "eries Chipset PT IDER Controller"..., 1024) = 1024
read(20, "ng Unit\n\t2e70  CE Media Processo"..., 1024) = 1024
read(20, "\t2f0a  Xeon E7 v3/Xeon E5 v3/Cor"..., 1024) = 1024
read(20, "e Registers\n\t2f1f  Xeon E7 v3/Xe"..., 1024) = 1024
read(20, "rface\n\t2f36  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
read(20, "E5 v3/Core i7 Integrated Memory "..., 1024) = 1024
read(20, "83  Xeon E7 v3/Xeon E5 v3/Core i"..., 1024) = 1024
read(20, "mory Controller 0 Channel Target"..., 1024) = 1024
read(20, "sters\n\t2fb7  Xeon E7 v3/Xeon E5 "..., 1024) = 1024
read(20, "d Memory Controller 1 Channel 1 "..., 1024) = 1024
read(20, "3/Core i7 Unicast Registers\n\t2fe"..., 1024) = 1024
read(20, "ffa  Xeon E7 v3/Xeon E5 v3/Core "..., 1024) = 1024
read(20, "usted Execution Engine Interface"..., 1024) = 1024
read(20, "ni Lake PCI Express Root Port\n\t3"..., 1024) = 1024
read(20, " (SL8Dx) in IOC Mode SAS/SATA\n\t3"..., 1024) = 1024
read(20, "t 7\n\t\t103c 330b  ProLiant ML150 "..., 1024) = 1024
read(20, "ickData Technology Device\n\t342c "..., 1024) = 1024
read(20, "ce Lake-LP Serial IO I2c Control"..., 1024) = 1024
read(20, "board\n\t3511  6310ESB PCI Express"..., 1024) = 1024
read(20, "\te4bf 0cc9  CC9-SAMBA\n\t\te4bf 0cd"..., 1024) = 1024
read(20, "or to I/O Controller\n\t\t1014 055e"..., 1024) = 1024
read(20, "0 Processor AMC\n\t3592  E7320 Mem"..., 1024) = 1024
read(20, "b5  3100 Chipset Enhanced DMA Co"..., 1024) = 1024
read(20, "500/C3500 DMI\n\t3708  Xeon C5500/"..., 1024) = 1024
read(20, " NTB Secondary\n\t3728  Xeon C5500"..., 1024) = 1024
read(20, "d 0010  88E1514 Ethernet OCP 2x1"..., 1024) = 1024
read(20, "020  Ethernet Connection X722 fo"..., 1024) = 1024
read(20, "oller\n\t3a22  82801JI (ICH10 Fami"..., 1024) = 1024
read(20, "10 USB UHCI Controller\n\t\t1028 02"..., 1024) = 1024
read(20, "028 028d  PowerEdge T410 USB UHC"..., 1024) = 1024
read(20, "xe Motherboard\n\t\t1043 82ea  P6T "..., 1024) = 1024
read(20, "(ICH10 Family) USB UHCI Controll"..., 1024) = 1024
read(20, "  PM55 Chipset LPC Interface Con"..., 1024) = 1024
read(20, " Interface Controller\n\t3b13  5 S"..., 1024) = 1024
read(20, " 0605  X8SIL\n\t\t15d9 060d  C7SIM-"..., 1024) = 1024
read(20, "\te4bf 50c1  PC1-GROOVE\n\t3b30  5 "..., 1024) = 1024
read(20, "SB Universal Host Controller\n\t3b"..., 1024) = 1024
read(20, "  EliteBook 8540p\n\t\t144d c06a  R"..., 1024) = 1024
read(20, " VECI Controller\n\t3b56  5 Series"..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO PCI Express "..., 1024) = 1024
read(20, "Xeon E5/Core i7 IIO Switch and I"..., 1024) = 1024
read(20, "r Target Address Decoder 3\n\t3cae"..., 1024) = 1024
read(20, "ation Registers\n\t3ce4  Xeon E5/C"..., 1024) = 1024
read(20, "e Lake S]\n\t3e33  8th/9th Gen Cor"..., 1024) = 1024
read(20, "troller Hub\n\t4003  5400 Chipset "..., 1024) = 1024
read(20, " Atom Processor E6xx Integrated "..., 1024) = 1024
read(20, "n\n\t\t8086 1c00  PRO/Wireless 3945"..., 1024) = 1024
read(20, " 2x2 ABG\n\t4230  PRO/Wireless 496"..., 1024) = 1024
read(20, "6 1316  WiFi Link 5100 ABG\n\t4238"..., 1024) = 1024
read(20, "E80578 Expansion Bus\n\t500e  LE80"..., 1024) = 1024
read(20, "l Expansion Bus\n\t503e  EP80579 G"..., 1024) = 1024
read(20, " v6/7th Gen Core Processor Host "..., 1024) = 1024
read(20, "UHD Graphics 620\n\t\t17aa 225e  Th"..., 1024) = 1024
read(20, "troller #3\n\t5ab2  Celeron N3350/"..., 1024) = 1024
read(20, "0  Celeron N3350/Pentium N4200/A"..., 1024) = 1024
read(20, " Express x4 Port 4\n\t65e5  5100 C"..., 1024) = 1024
read(20, "Xeon E3 v4/Xeon D PCI Express Ro"..., 1024) = 1024
read(20, "n D IIO Debug\n\t6f1a  Xeon E7 v4/"..., 1024) = 1024
read(20, "L-F\n\t6f27  Xeon E7 v4/Xeon E5 v4"..., 1024) = 1024
read(20, "e  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
read(20, " Address/Thermal/RAS\n\t6f6a  Xeon"..., 1024) = 1024
read(20, "1  Xeon E7 v4/Xeon E5 v4/Xeon E3"..., 1024) = 1024
read(20, "v4/Xeon E5 v4/Xeon E3 v4/Xeon D "..., 1024) = 1024
read(20, "4/Xeon D Memory Controller 0 - C"..., 1024) = 1024
read(20, " v4/Xeon D Power Control Unit\n\t6"..., 1024) = 1024
read(20, "hannel 0 Thermal Control\n\t6fd1  "..., 1024) = 1024
read(20, "eon E7 v4/Xeon E5 v4/Xeon E3 v4/"..., 1024) = 1024
read(20, "gent\n\t6ffd  Xeon E7 v4/Xeon E5 v"..., 1024) = 1024
read(20, "  CL7 mainboard\n\t\t4c53 1060  PC7"..., 1024) = 1024
read(20, "\t7192  440BX/ZX/DX - 82443BX/ZX/"..., 1024) = 1024
read(20, "3  82372FB PIIX5 SMBus\n\t7800  82"..., 1024) = 1024
read(20, "Controller\n\t8119  US15W/US15X/US"..., 1024) = 1024
read(20, "(SDC)\n\t84e2  460GX - 84460GX AGP"..., 1024) = 1024
read(20, "O Controller #1\n\t880a  Platform "..., 1024) = 1024
read(20, "olt 3 USB Controller\n\t8a17  Ice "..., 1024) = 1024
read(20, "  8 Series/C220 Series Chipset F"..., 1024) = 1024
read(20, "0 Series Chipset Family PCI Expr"..., 1024) = 1024
read(20, " Thermal Management Controller\n\t"..., 1024) = 1024
read(20, "KU LPC Controller\n\t8c42  8 Serie"..., 1024) = 1024
read(20, "er\n\t8c55  8 Series/C220 Series C"..., 1024) = 1024
read(20, "ontroller [RAID Mode]\n\t8c87  9 S"..., 1024) = 1024
read(20, "ies Chipset Family USB xHCI Cont"..., 1024) = 1024
read(20, "d12  C610/X99 series chipset PCI"..., 1024) = 1024
read(20, "s chipset USB Enhanced Host Cont"..., 1024) = 1024
read(20, "C Controller\n\t8d4a  C610/X99 ser"..., 1024) = 1024
read(20, "ntegrated RAID\n\t96a1  Integrated"..., 1024) = 1024
read(20, "40\n\t9c04  8 Series SATA Controll"..., 1024) = 1024
read(20, "1c  8 Series PCI Express Root Po"..., 1024) = 1024
read(20, "Series LPC Controller\n\t9c60  8 S"..., 1024) = 1024
read(20, "t Point-LP Secure Digital IO Con"..., 1024) = 1024
read(20, " Latitude 3570\n\t\t103c 8079  Elit"..., 1024) = 1024
read(20, "\n\t\t1025 115f  Acer Aspire E5-575"..., 1024) = 1024
read(20, " ThinkPad T570\n\t\t17aa 224f  Thin"..., 1024) = 1024
read(20, "Sunrise Point-LP LPC Controller\n"..., 1024) = 1024
read(20, "rise Point-LP HD Audio\n\t\t1025 10"..., 1024) = 1024
read(20, "n Point-LP MEI Controller #1\n\t9d"..., 1024) = 1024
read(20, "072  Notebook N150P\n\ta011  Atom "..., 1024) = 1024
read(20, "a  Tiger Lake-LP Serial IO I2C C"..., 1024) = 1024
read(20, "/C230 Series Chipset Family PCI "..., 1024) = 1024
read(20, "e4  XPS 15 9550\n\t\t103c 825b  OME"..., 1024) = 1024
read(20, "\n\ta13b  100 Series/C230 Series C"..., 1024) = 1024
read(20, "hipset LPC/eSPI Controller\n\ta153"..., 1024) = 1024
read(20, "ess Root Port #17\n\ta168  100 Ser"..., 1024) = 1024
read(20, "Root Port #9\n\ta199  C620 Series "..., 1024) = 1024
read(20, " Chipset Family MEI Controller #"..., 1024) = 1024
read(20, "MROM 1\n\ta1f8  Lewisburg IE: HECI"..., 1024) = 1024
read(20, "press Root Port #10\n\ta29a  200 S"..., 1024) = 1024
read(20, " PCH CSME HECI #1\n\ta2bb  200 Ser"..., 1024) = 1024
read(20, "#24\n\ta2f0  200 Series PCH HD Aud"..., 1024) = 1024
read(20, "PCH PCI Express Root Port #15\n\ta"..., 1024) = 1024
read(20, "l IO I2C Controller #0\n\ta369  Ca"..., 1024) = 1024
read(20, "\td132  Core Processor DMI\n\t\t1028"..., 1024) = 1024
read(20, "-Port Ethernet Network Adaptor S"..., 1024) = 1024
read(20, "P+\n80ee  InnoTek Systemberatung "..., 1024) = 1024
read(20, "oad Engine\n\t\t9004 7710  ANA-7711"..., 1024) = 1024
read(20, "2022 2-port 64 bit 10/100\n\t\t9004"..., 1024) = 1024
read(20, "W Dual AHA-394xAU/AUW/AUWD AIC-7"..., 1024) = 1024
read(20, "\t\t9005 0003  AAA-131U2 Array1000"..., 1024) = 1024
read(20, "f620  Compaq 64-Bit/66MHz Dual C"..., 1024) = 1024
read(20, "TK RAID EXT\n\t\t108e 7aac  STK RAI"..., 1024) = 1024
read(20, "005 02a5  ICP ICP5085BR\n\t\t9005 0"..., 1024) = 1024
read(20, "5 028d  ASR-2130S\n\t\t9005 029b  A"..., 1024) = 1024
read(20, "  Series 6 - ASR-61205 - 12 inte"..., 1024) = 1024
read(20, "/PCIe 3.0\n\t\t9005 0553  Series 8 "..., 1024) = 1024
read(20, "c460  RAID P460-M2\n\t\t193d c461  "..., 1024) = 1024
read(20, "\n\t\t9005 0908  SmartHBA 2100\n\t\t90"..., 1024) = 1024
read(20, "pirit-Lite non-RAID)\n\t043e  AIC-"..., 1024) = 1024
read(20, "1011  PRIMERGY RX300 onboard SCS"..., 1024) = 1024
read(20, "logy Inc\n\t6565  6565\n# nee Netmo"..., 1024) = 1024
read(20, "aptor\n\t9912  PCIe 9912 Multi-I/O"..., 1024) = 1024
read(20, "\naa42  Scitex Digital Video\naa55"..., 1024) = 1024
read(20, "DeckLink Studio\n\ta11e  DeckLink "..., 1024) = 1024
read(20, "ologies, Inc.\n\t0001  TurboCap Po"..., 1024) = 1024
read(20, "P/TE207P dual-span T1/E1/J1 card"..., 1024) = 1024
read(20, "E1/J1 card\n\t800c  Wildcard A8A 8"..., 1024) = 1024
read(20, "BAE9\n\t004e  PC104p-Biserial-III-"..., 1024) = 1024
read(20, "\n\te000  W89C940\ne159  Tiger Jet "..., 1024) = 1024
read(20, "Digi32 Pro\n\t9898  Digi32/8\neabb "..., 1024) = 1024
read(20, "A-48 Gig Ethernet/OC-3/OC-12/OC-"..., 1024) = 1024
read(20, "Inc. (Wrong ID)\nf05b  Foxconn In"..., 1024) = 1024
read(20, "Inc\n\ta0fa  BCM4210 iLine10 HomeP"..., 1024) = 1024
read(20, "PCI native mode-only controller,"..., 1024) = 1024
read(20, "\n\t\t00  VGA controller\n\t\t01  8514"..., 1024) = 1024
read(20, "get\n\t02  Multiport serial contro"..., 1024) = 1024
read(20, "OHCI\n\t01  ACCESS Bus\n\t02  SSA\n\t0"..., 1024) = 1024
read(20, "\t80  Signal processing controlle"..., 1024) = 320
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\270\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000b8800000 0x00000000b88"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\270\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0e.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0e.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0f.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:0f.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:10.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:10.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:10.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:12.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:12.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:5d:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:12.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:12.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:15.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:15.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:16.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:16.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:5d:17.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:5d:17.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff1c000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff18000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff14000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff10000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\361\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff0c000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\300\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff08000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\200\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff04000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4@\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000d4ffff00000 0x00000d4ffff"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200! \6\0\20\0\7\0\200\10\20\0\200\0\4\0\360\377O\r\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:04.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:04.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200$ \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200% \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\306\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000c6000000 0x00000000c60"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200& \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\306\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\24 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:08.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\25 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:08.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:80:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\26 \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:80:08.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:80:08.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\323\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000d3800000 0x00000000d38"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\200\323\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:85:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:08.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:08.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:09.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:09.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0a.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0a.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\215 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0b.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0b.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0e.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0e.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:0f.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:0f.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:10.7/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:10.7/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\216 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:11.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:11.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200U \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200V \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200W \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1d.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1d.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\200 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\201 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\202 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\203 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.3/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.3/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\204 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\205 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\206 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:85:1e.6/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:85:1e.6/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:ae:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\341\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000e1000000 0x00000000e10"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\341\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:08.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:08.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200f \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:09.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:09.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0a.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0b.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200@ \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200A \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200B \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200C \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200D \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200E \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.5/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200F \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.6/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200G \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0c.7/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200H \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200I \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200J \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200K \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:ae:0d.3/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\330\330\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2000 G\5\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\330\330\0\360\0\0 "..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "4\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:01.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2001 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\331\331\0\360\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2001 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\331\331\0\360\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:01.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:01.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:02.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2002 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\332\332\0\340\340\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2002 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\332\332\0\340\340\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:02.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:02.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2003 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\333\333\0\320\320\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2003 \7\4\20\0\7\0\4\6\20\0\1\0\0\0\0\0\0\0\0\0\327\333\333\0\320\320\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:03.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "2.5 GT/s\n", 4096)            = 9
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:03.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2004 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2005 \0\0\20\0\7\0\200\10\20\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.2/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.2/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\357\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000ef000000 0x00000000ef0"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\2006 \6\0\20\0\7 \0\10\20\0\200\0\0\0\0\357\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:05.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:05.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0e.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0e.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0f.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:0f.1/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200X \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:10.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200Y \0\0\20\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:10.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:10.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:12.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200N \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.2/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.2/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200L \0\0\20\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.4/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "Unknown speed\n", 4096)       = 14
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:12.4/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "0\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d7:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200M \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:12.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:12.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:15.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:15.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.4/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.4/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:16.5/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:16.5/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\30 \0\0\0\0\7\0\200\10\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.0/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.0/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x0000000000000000 0x00000000000"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200\210 \0\0\0\0\7\0\1\21\0\0\200\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d7:17.1/current_link_speed", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d7:17.1/current_link_width", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/sys/bus/pci/devices/0000:d8:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T\nF\5\20\0\0\2\10\1\10\0\0\0\4\0\341\356\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/resource", O_RDONLY|O_CLOEXEC) = 20
read(20, "0x00000000eee10000 0x00000000eee"..., 512) = 512
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/config", O_RDONLY|O_CLOEXEC) = 20
pread64(20, "\206\200T\nF\5\20\0\0\2\10\1\10\0\0\0\4\0\341\356\0\0\0\0\0\0\0\0\0\0\0\0"..., 256, 0) = 64
pread64(20, "", 192, 64)                = 0
close(20)                               = 0
open("/sys/bus/pci/devices/0000:d8:00.0/current_link_speed", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "8 GT/s\n", 4096)              = 7
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/devices/0000:d8:00.0/current_link_width", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "4\n", 4096)                   = 2
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/sys/bus/pci/slots/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
getdents(20, /* 9 entries */, 32768)    = 216
open("/sys/bus/pci/slots/0/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:18:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/1/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:3b:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/0-1/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:01:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/124/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:d8:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/125/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:d9:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/126/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:da:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
open("/sys/bus/pci/slots/127/address", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(21, "0000:db:00\n", 4096)          = 11
close(21)                               = 0
munmap(0x2b383f461000, 4096)            = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(19, "sys/class/net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 8 entries */, 32768)    = 192
newfstatat(19, "sys/class/net/eno4/device/net/eno4", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:00.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:00.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/class/mic/mic0", 0x7ffc05e47b30, 0) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:00.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:04.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:04.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:08.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:08.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:08.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:11.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:11.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:11.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 43 entries */, 32768)   = 1384
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata1", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata1/host0", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata2", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata2/host1", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata3", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata3/host2", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata4", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata4/host3", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata5", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata5/host4", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata6", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:11.5//ata6/host5", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:11.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:14.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:14.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 36 entries */, 32768)   = 1192
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:14.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:14.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:14.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:14.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 39 entries */, 32768)   = 1552
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:16.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:16.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:16.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:16.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:17.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:17.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 45 entries */, 32768)   = 1472
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata7", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata7/host6", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata8", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata8/host7", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata9", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata9/host8", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata10", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata10/host9", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata11", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata11/host10", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata12", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata12/host11", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata13", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata13/host12", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata14", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 7 entries */, 32768)    = 208
openat(19, "sys/bus/pci/devices/0000:00:17.0//ata14/host13", O_RDONLY|O_DIRECTORY) = 22
fstat(22, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(22, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(22, F_SETFD, FD_CLOEXEC)          = 0
getdents(22, /* 6 entries */, 32768)    = 176
getdents(22, /* 0 entries */, 32768)    = 0
close(22)                               = 0
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:17.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//net", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//infiniband", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//dma", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//drm", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:02:00.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//block", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:02:00.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 39 entries */, 32768)   = 1328
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:02:00.0//mic", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//net", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//infiniband", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//dma", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//drm", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:03:00.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//block", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:03:00.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 35 entries */, 32768)   = 1208
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:03:00.0//mic", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1016
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1048
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:1f.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:00:1f.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//net", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 72
openat(19, "sys/bus/pci/devices/0000:1a:00.0//net/eno1/address", O_RDONLY) = 21
read(21, "48:dc:2d:0b:1c:ba\n", 127)    = 18
close(21)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//net/eno1/device/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//net/eno1/dev_id", O_RDONLY) = 21
read(21, "0x0\n", 15)                   = 4
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/node_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cba:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/sys_image_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cba:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/1/state", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/1/lid", O_RDONLY) = 21
read(21, "0x1\n", 10)                   = 4
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/1/lid_mask_count", O_RDONLY) = 21
read(21, "0\n", 10)                     = 2
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/1/gids/0", O_RDONLY) = 21
read(21, "48dc:2d0b:1cba:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/1/gids/1", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.0//infiniband/i40iw3/ports/2/state", O_RDONLY) = -1 ENOENT (No such file or directory)
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//dma", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//drm", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//block", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 49 entries */, 32768)   = 1648
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.0//mic", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//net", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 72
openat(19, "sys/bus/pci/devices/0000:1a:00.1//net/eno2/address", O_RDONLY) = 21
read(21, "48:dc:2d:0b:1c:bb\n", 127)    = 18
close(21)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//net/eno2/device/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//net/eno2/dev_id", O_RDONLY) = 21
read(21, "0x0\n", 15)                   = 4
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/node_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbb:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/sys_image_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbb:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/1/state", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/1/lid", O_RDONLY) = 21
read(21, "0x1\n", 10)                   = 4
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/1/lid_mask_count", O_RDONLY) = 21
read(21, "0\n", 10)                     = 2
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/1/gids/0", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbb:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/1/gids/1", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.1//infiniband/i40iw2/ports/2/state", O_RDONLY) = -1 ENOENT (No such file or directory)
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//dma", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//drm", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//block", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 49 entries */, 32768)   = 1648
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.1//mic", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//net", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 72
openat(19, "sys/bus/pci/devices/0000:1a:00.2//net/eno3/address", O_RDONLY) = 21
read(21, "48:dc:2d:0b:1c:bc\n", 127)    = 18
close(21)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//net/eno3/device/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//net/eno3/dev_id", O_RDONLY) = 21
read(21, "0x0\n", 15)                   = 4
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/node_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbc:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/sys_image_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbc:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/1/state", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/1/lid", O_RDONLY) = 21
read(21, "0x1\n", 10)                   = 4
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/1/lid_mask_count", O_RDONLY) = 21
read(21, "0\n", 10)                     = 2
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/1/gids/0", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbc:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/1/gids/1", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.2//infiniband/i40iw0/ports/2/state", O_RDONLY) = -1 ENOENT (No such file or directory)
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//dma", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//drm", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//block", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 49 entries */, 32768)   = 1648
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.2//mic", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//net", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 72
openat(19, "sys/bus/pci/devices/0000:1a:00.3//net/eno4/address", O_RDONLY) = 21
read(21, "48:dc:2d:0b:1c:bd\n", 127)    = 18
close(21)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//net/eno4/device/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//net/eno4/dev_id", O_RDONLY) = 21
read(21, "0x0\n", 15)                   = 4
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/node_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbd:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/sys_image_guid", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbd:0000", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/1/state", O_RDONLY) = 21
read(21, "1", 1)                        = 1
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/1/lid", O_RDONLY) = 21
read(21, "0x1\n", 10)                   = 4
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/1/lid_mask_count", O_RDONLY) = 21
read(21, "0\n", 10)                     = 2
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/1/gids/0", O_RDONLY) = 21
read(21, "48dc:2d0b:1cbd:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/1/gids/1", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.3//infiniband/i40iw1/ports/2/state", O_RDONLY) = -1 ENOENT (No such file or directory)
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//dma", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//drm", 0x7ffc05e47700, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//block", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:1a:00.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 49 entries */, 32768)   = 1648
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:1a:00.3//mic", 0x7ffc05e47710, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:08.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:08.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:09.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:09.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0a.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0a.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0b.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0b.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0e.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0e.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:0f.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:0f.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:10.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:10.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:11.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:11.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:11.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:11.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:11.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1d.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1d.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:17:1e.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:17:1e.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//net", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//net", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 72
openat(19, "sys/bus/pci/devices/0000:3b:00.0//net/ib0/address", O_RDONLY) = 21
read(21, "00:00:06:a8:fe:80:00:00:00:00:00"..., 127) = 60
close(21)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//net/ib0/device/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//net/ib0/dev_id", O_RDONLY) = 21
read(21, "0x0\n", 15)                   = 4
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}, AT_SYMLINK_NOFOLLOW) = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/node_guid", O_RDONLY) = 21
read(21, "0c42:a103:00dd:0bee", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/sys_image_guid", O_RDONLY) = 21
read(21, "0c42:a103:00dd:0bee", 19)     = 19
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/state", O_RDONLY) = 21
read(21, "4", 1)                        = 1
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/lid", O_RDONLY) = 21
read(21, "0x4cb\n", 10)                 = 6
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/lid_mask_count", O_RDONLY) = 21
read(21, "0\n", 10)                     = 2
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/0", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0c42:a103:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/1", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/2", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/3", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/4", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/5", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/6", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/7", O_RDONLY) = 21
read(21, "fe80:0000:0000:0000:0000:0000:00"..., 39) = 39
close(21)                               = 0
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/1/gids/8", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3b:00.0//infiniband/mlx5_0/ports/2/state", O_RDONLY) = -1 ENOENT (No such file or directory)
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//dma", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//drm", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3b:00.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//block", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3b:00.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 45 entries */, 32768)   = 1520
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3b:00.0//mic", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:09.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:09.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:09.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0a.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0a.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0b.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0b.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0c.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0c.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:3a:0d.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:3a:0d.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:0e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0f.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0f.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0f.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:0f.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:0f.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:10.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:10.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:10.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:10.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:10.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:12.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:12.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:15.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:15.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:15.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:15.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:15.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:16.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:16.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:17.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:17.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:17.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:5d:17.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:5d:17.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:04.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:04.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:08.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:80:08.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:80:08.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:08.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:08.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:09.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:09.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0a.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0a.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0b.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0b.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0e.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0e.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:0f.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:0f.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:10.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:10.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:11.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:11.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:11.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:11.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:11.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1d.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1d.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:85:1e.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:85:1e.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:08.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:08.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:08.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:09.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:09.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:09.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0a.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0a.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0b.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0b.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.6//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.6/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.6//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.7//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0c.7/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0c.7//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.3//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:ae:0d.3/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:ae:0d.3//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d8:00.0//net", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d8:00.0//infiniband", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d8:00.0//dma", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d8:00.0//drm", 0x7ffc05e47740, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d8:00.0//nvme", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 3 entries */, 32768)    = 80
openat(19, "sys/bus/pci/devices/0000:d8:00.0//nvme/nvme0", O_RDONLY|O_DIRECTORY) = 21
fstat(21, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(21, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(21, F_SETFD, FD_CLOEXEC)          = 0
getdents(21, /* 18 entries */, 32768)   = 568
openat(19, "sys/bus/pci/devices/0000:d8:00.0//nvme/nvme0/nvme0n1/dev", O_RDONLY) = 22
read(22, "259:0\n", 127)                = 6
close(22)                               = 0
openat(19, "run/udev/data/b259:0", O_RDONLY) = -1 ENOENT (No such file or directory)
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
getdents(21, /* 0 entries */, 32768)    = 0
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d8:00.0//mic", 0x7ffc05e47750, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:05.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1072
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:05.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0e.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0e.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0e.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0e.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:0e.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0f.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0f.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 32 entries */, 32768)   = 1112
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0f.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:0f.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:0f.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:10.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:10.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 28 entries */, 32768)   = 952
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:10.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:10.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:10.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 31 entries */, 32768)   = 1080
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.2//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.2/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.2//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 30 entries */, 32768)   = 1040
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:12.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:12.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:15.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:15.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:15.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:15.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:15.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.4//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.4/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.4//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.5//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:16.5/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 26 entries */, 32768)   = 880
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:16.5//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:17.0//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:17.0/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 920
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.0//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//net", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//infiniband", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//dma", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//drm", 0x7ffc05e47760, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:17.1//nvme", O_RDONLY|O_DIRECTORY) = -1 ENOENT (No such file or directory)
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//block", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:d7:17.1/", O_RDONLY|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
fcntl(20, F_GETFL)                      = 0x18000 (flags O_RDONLY|O_LARGEFILE|O_DIRECTORY)
fcntl(20, F_SETFD, FD_CLOEXEC)          = 0
getdents(20, /* 27 entries */, 32768)   = 912
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
newfstatat(19, "sys/bus/pci/devices/0000:d7:17.1//mic", 0x7ffc05e47770, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
openat(19, "sys/bus/pci/devices/0000:00:00.0/local_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:17:00.0/local_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:3a:00.0/local_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:5d:05.0/local_cpus", O_RDONLY) = 20
read(20, "000000ff,ffff0000,00ffffff\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:80:04.0/local_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:85:05.0/local_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:ae:05.0/local_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(19, "sys/bus/pci/devices/0000:d7:00.0/local_cpus", O_RDONLY) = 20
read(20, "ffffff00,0000ffff,ff000000\n", 4097) = 27
close(20)                               = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
open("/proc/mounts", O_RDONLY|O_CLOEXEC) = 20
futex(0x2b3842af7570, FUTEX_WAKE_PRIVATE, 2147483647) = 0
fstat(20, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "overlay / overlay ro,seclabel,no"..., 1024) = 1024
statfs("/dev/hugepages", {f_type=HUGETLBFS_MAGIC, f_bsize=2097152, f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={val=[0, 0]}, f_namelen=255, f_frsize=2097152, f_flags=ST_VALID|ST_RELATIME}) = 0
access("/dev/hugepages", R_OK|W_OK)     = -1 EACCES (Permission denied)
read(20, "ertini tmpfs rw,seclabel,nosuid,"..., 1024) = 1024
read(20, "osuid,nodev,relatime,fd=17,pgrp="..., 1024) = 567
read(20, "", 1024)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
access("/dev/shm", W_OK)                = 0
stat("/sys/class/infiniband", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/cvmfs/vae.gsi.de/centos7/spack-0.17/opt/linux-centos7-x86_64/gcc-8.1.0/openmpi-3.1.6-55d4p7423fcg6figm3s67efkv5vlefcc/share/openmpi/mca-btl-openib-device-params.ini", O_RDONLY) = 20
ioctl(20, TCGETS, 0x7ffc05e48830)       = -1 ENOSYS (Function not implemented)
brk(NULL)                               = 0x1138000
brk(0x1162000)                          = 0x1162000
fstat(20, {st_mode=S_IFREG|0644, st_size=11928, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "#\n# Copyright (c) 2006-2013 Cisc"..., 8192) = 8192
read(20, "al/2008-June/051920.html\n# 0x1fc"..., 8192) = 3736
read(20, "", 4096)                      = 0
read(20, "", 8192)                      = 0
ioctl(20, TCGETS, 0x7ffc05e487a0)       = -1 ENOSYS (Function not implemented)
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
brk(NULL)                               = 0x1162000
brk(NULL)                               = 0x1162000
brk(0x1152000)                          = 0x1152000
brk(NULL)                               = 0x1152000
openat(AT_FDCWD, "/sys/class/infiniband_verbs", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
getdents(20, /* 8 entries */, 32768)    = 240
stat("/sys/class/infiniband_verbs/abi_version", {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
stat("/sys/class/infiniband_verbs/uverbs0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/ibdev", O_RDONLY|O_CLOEXEC) = 21
read(21, "mlx5_0\n", 64)                = 7
close(21)                               = 0
stat("/sys/class/infiniband/mlx5_0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs0", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 192), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/abi_version", O_RDONLY|O_CLOEXEC) = 21
read(21, "1\n", 8)                      = 2
close(21)                               = 0
open("/sys/class/infiniband_verbs/uverbs0/device/modalias", O_RDONLY|O_CLOEXEC) = 21
read(21, "pci:v000015B3d0000101Bsv000015B3"..., 512) = 54
close(21)                               = 0
stat("/sys/class/infiniband_verbs/uverbs1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/ibdev", O_RDONLY|O_CLOEXEC) = 21
read(21, "i40iw0\n", 64)                = 7
close(21)                               = 0
stat("/sys/class/infiniband/i40iw0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs1", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 193), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/abi_version", O_RDONLY|O_CLOEXEC) = 21
read(21, "0\n", 8)                      = 2
close(21)                               = 0
open("/sys/class/infiniband_verbs/uverbs1/device/modalias", O_RDONLY|O_CLOEXEC) = 21
read(21, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(21)                               = 0
stat("/sys/class/infiniband_verbs/uverbs2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/ibdev", O_RDONLY|O_CLOEXEC) = 21
read(21, "i40iw1\n", 64)                = 7
close(21)                               = 0
stat("/sys/class/infiniband/i40iw1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs2", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 194), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/abi_version", O_RDONLY|O_CLOEXEC) = 21
read(21, "0\n", 8)                      = 2
close(21)                               = 0
open("/sys/class/infiniband_verbs/uverbs2/device/modalias", O_RDONLY|O_CLOEXEC) = 21
read(21, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(21)                               = 0
stat("/sys/class/infiniband_verbs/uverbs3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/ibdev", O_RDONLY|O_CLOEXEC) = 21
read(21, "i40iw2\n", 64)                = 7
close(21)                               = 0
stat("/sys/class/infiniband/i40iw2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs3", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 195), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/abi_version", O_RDONLY|O_CLOEXEC) = 21
read(21, "0\n", 8)                      = 2
close(21)                               = 0
open("/sys/class/infiniband_verbs/uverbs3/device/modalias", O_RDONLY|O_CLOEXEC) = 21
read(21, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(21)                               = 0
stat("/sys/class/infiniband_verbs/uverbs4", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/ibdev", O_RDONLY|O_CLOEXEC) = 21
read(21, "i40iw3\n", 64)                = 7
close(21)                               = 0
stat("/sys/class/infiniband/i40iw3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs4", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 196), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/abi_version", O_RDONLY|O_CLOEXEC) = 21
read(21, "0\n", 8)                      = 2
close(21)                               = 0
open("/sys/class/infiniband_verbs/uverbs4/device/modalias", O_RDONLY|O_CLOEXEC) = 21
read(21, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(21)                               = 0
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/sys/class/infiniband/mlx5_0/device/local_cpus", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "000000ff,ffff0000,00ffffff\n", 4096) = 27
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/sys/class/infiniband/i40iw0/device/local_cpus", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "000000ff,ffff0000,00ffffff\n", 4096) = 27
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/sys/class/infiniband/i40iw1/device/local_cpus", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "000000ff,ffff0000,00ffffff\n", 4096) = 27
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/sys/class/infiniband/i40iw2/device/local_cpus", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "000000ff,ffff0000,00ffffff\n", 4096) = 27
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/sys/class/infiniband/i40iw3/device/local_cpus", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f461000
read(20, "000000ff,ffff0000,00ffffff\n", 4096) = 27
read(20, "", 4096)                      = 0
close(20)                               = 0
munmap(0x2b383f461000, 4096)            = 0
openat(AT_FDCWD, "/proc/self/task", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 20
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
sched_getaffinity(74127, 16, [0, 48])   = 16
sched_getaffinity(74128, 16, [0, 48])   = 16
sched_getaffinity(74129, 16, [0, 48])   = 16
fstat(20, {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
lseek(20, 0, SEEK_SET)                  = 0
getdents(20, /* 5 entries */, 32768)    = 144
getdents(20, /* 0 entries */, 32768)    = 0
close(20)                               = 0
open("/dev/infiniband/uverbs0", O_RDWR|O_CLOEXEC) = 20
mmap(NULL, 204800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f5c4000
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e46ed0) = -1 ENOSPC (No space left on device)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e46e20) = 0
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0) = 0x2b383f461000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x1000) = 0x2b383f462000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x2000) = 0x2b383f463000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x3000) = 0x2b383f464000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x4000) = 0x2b383f5f6000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x5000) = 0x2b383f5f7000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x6000) = 0x2b383f5f8000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 20, 0x7000) = 0x2b383f5f9000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 20, 0x500000) = 0x2b383f5fa000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 20, 0x700000) = 0x2b383f5fb000
open("/proc/cpuinfo", O_RDONLY)         = 22
fstat(22, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f5fc000
read(22, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(22, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
read(22, "1 sse4_2 x2apic movbe popcnt tsc"..., 1024) = 1024
read(22, "gs\t\t: fpu vme de pse tsc msr pae"..., 1024) = 1024
read(22, ": 3\nvendor_id\t: GenuineIntel\ncpu"..., 1024) = 1024
read(22, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(22, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(22, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(22, "or_id\t: GenuineIntel\ncpu family\t"..., 1024) = 1024
read(22, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(22, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(22, "me de pse tsc msr pae mce cx8 ap"..., 1024) = 1024
read(22, "id\t: GenuineIntel\ncpu family\t: 6"..., 1024) = 1024
read(22, "12bw avx512vl xsaveopt xsavec xg"..., 1024) = 1024
read(22, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(22, "vme de pse tsc msr pae mce cx8 a"..., 1024) = 1024
read(22, "r_id\t: GenuineIntel\ncpu family\t:"..., 1024) = 1024
read(22, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(22, "pic movbe popcnt tsc_deadline_ti"..., 1024) = 1024
read(22, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(22, "dor_id\t: GenuineIntel\ncpu family"..., 1024) = 1024
read(22, "avx512bw avx512vl xsaveopt xsave"..., 1024) = 1024
read(22, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(22, "fpu vme de pse tsc msr pae mce c"..., 1024) = 1024
read(22, "endor_id\t: GenuineIntel\ncpu fami"..., 1024) = 1024
read(22, "d avx512bw avx512vl xsaveopt xsa"..., 1024) = 1024
read(22, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(22, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(22, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(22, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(22, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(22, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(22, "24\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(22, "12cd avx512bw avx512vl xsaveopt "..., 1024) = 1024
read(22, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(22, "\t: fpu vme de pse tsc msr pae mc"..., 1024) = 1024
read(22, "7\nvendor_id\t: GenuineIntel\ncpu f"..., 1024) = 1024
read(22, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(22, "2 x2apic movbe popcnt tsc_deadli"..., 1024) = 1024
read(22, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(22, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(22, "cd avx512bw avx512vl xsaveopt xs"..., 1024) = 1024
read(22, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(22, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(22, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(22, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(22, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(22, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(22, "36\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(22, "512cd avx512bw avx512vl xsaveopt"..., 1024) = 1024
read(22, "e4_2 x2apic movbe popcnt tsc_dea"..., 1024) = 1024
read(22, "lags\t\t: fpu vme de pse tsc msr p"..., 1024) = 1024
read(22, "r\t: 39\nvendor_id\t: GenuineIntel\n"..., 1024) = 1024
read(22, "wb avx512cd avx512bw avx512vl xs"..., 1024) = 1024
read(22, "se4_1 sse4_2 x2apic movbe popcnt"..., 1024) = 1024
read(22, "\t: yes\nflags\t\t: fpu vme de pse t"..., 1024) = 1024
read(22, "processor\t: 42\nvendor_id\t: Genui"..., 1024) = 1024
read(22, "shopt clwb avx512cd avx512bw avx"..., 1024) = 1024
read(22, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(22, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(22, "ement:\n\nprocessor\t: 45\nvendor_id"..., 1024) = 1024
read(22, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(22, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(22, "d level\t: 22\nwp\t\t: yes\nflags\t\t: "..., 1024) = 1024
read(22, "er management:\n\nprocessor\t: 48\nv"..., 1024) = 1024
read(22, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(22, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(22, "\t: 22\nwp\t\t: yes\nflags\t\t: fpu vme"..., 1024) = 1024
read(22, "gement:\n\nprocessor\t: 51\nvendor_i"..., 1024) = 1024
read(22, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(22, "d dca sse4_1 sse4_2 x2apic movbe"..., 1024) = 1024
read(22, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(22, "t:\n\nprocessor\t: 54\nvendor_id\t: G"..., 1024) = 1024
read(22, "ushopt clwb avx512cd avx512bw av"..., 1024) = 1024
read(22, " dca sse4_1 sse4_2 x2apic movbe "..., 1024) = 1024
read(22, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(22, "t:\n\nprocessor\t: 57\nvendor_id\t: G"..., 1024) = 1024
read(22, "lushopt clwb avx512cd avx512bw a"..., 1024) = 1024
read(22, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(22, "22\nwp\t\t: yes\nflags\t\t: fpu vme de"..., 1024) = 1024
read(22, "ent:\n\nprocessor\t: 60\nvendor_id\t:"..., 1024) = 1024
read(22, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(22, "pcid dca sse4_1 sse4_2 x2apic mo"..., 1024) = 1024
read(22, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(22, "ement:\n\nprocessor\t: 63\nvendor_id"..., 1024) = 1024
read(22, " clflushopt clwb avx512cd avx512"..., 1024) = 1024
read(22, "m pcid dca sse4_1 sse4_2 x2apic "..., 1024) = 1024
read(22, "l\t: 22\nwp\t\t: yes\nflags\t\t: fpu vm"..., 1024) = 1024
read(22, "agement:\n\nprocessor\t: 66\nvendor_"..., 1024) = 1024
read(22, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(22, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(22, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(22, "anagement:\n\nprocessor\t: 69\nvendo"..., 1024) = 1024
read(22, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(22, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(22, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(22, " management:\n\nprocessor\t: 72\nven"..., 1024) = 1024
read(22, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(22, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(22, "evel\t: 22\nwp\t\t: yes\nflags\t\t: fpu"..., 1024) = 1024
read(22, "management:\n\nprocessor\t: 75\nvend"..., 1024) = 1024
read(22, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(22, "pdcm pcid dca sse4_1 sse4_2 x2ap"..., 1024) = 1024
read(22, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(22, "anagement:\n\nprocessor\t: 78\nvendo"..., 1024) = 1024
read(22, "map clflushopt clwb avx512cd avx"..., 1024) = 1024
read(22, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(22, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(22, "anagement:\n\nprocessor\t: 81\nvendo"..., 1024) = 1024
read(22, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(22, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(22, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(22, " management:\n\nprocessor\t: 84\nven"..., 1024) = 1024
read(22, "x smap clflushopt clwb avx512cd "..., 1024) = 1024
read(22, "pr pdcm pcid dca sse4_1 sse4_2 x"..., 1024) = 1024
read(22, "uid level\t: 22\nwp\t\t: yes\nflags\t\t"..., 1024) = 1024
read(22, "ower management:\n\nprocessor\t: 87"..., 1024) = 1024
read(22, "eed adx smap clflushopt clwb avx"..., 1024) = 1024
read(22, " cx16 xtpr pdcm pcid dca sse4_1 "..., 1024) = 1024
read(22, ": yes\ncpuid level\t: 22\nwp\t\t: yes"..., 1024) = 1024
read(22, "irtual\npower management:\n\nproces"..., 1024) = 1024
read(22, "12dq rdseed adx smap clflushopt "..., 1024) = 1024
read(22, "sdbg fma cx16 xtpr pdcm pcid dca"..., 1024) = 1024
read(22, "ception\t: yes\ncpuid level\t: 22\nw"..., 1024) = 1024
read(22, "8 bits virtual\npower management:"..., 1024) = 1024
read(22, "12f avx512dq rdseed adx smap clf"..., 1024) = 1024
read(22, "2 ssse3 sdbg fma cx16 xtpr pdcm "..., 1024) = 1024
read(22, "s\nfpu_exception\t: yes\ncpuid leve"..., 1024) = 1024
read(22, "sical, 48 bits virtual\npower man"..., 1024) = 42
read(22, "", 1024)                      = 0
close(22)                               = 0
munmap(0x2b383f5fc000, 4096)            = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e46be0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e46ef0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e46cf0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
madvise(0x1102000, 4096, MADV_DONTFORK) = 0
madvise(0x1104000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e482c0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48130) = 0
madvise(0x1106000, 4096, MADV_DONTFORK) = 0
brk(NULL)                               = 0x1152000
brk(0x1177000)                          = 0x1177000
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e481a0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
brk(NULL)                               = 0x1177000
brk(NULL)                               = 0x1177000
brk(0x116f000)                          = 0x116f000
brk(NULL)                               = 0x116f000
madvise(0x1106000, 4096, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e486f0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484e0) = 0
madvise(0x1104000, 4096, MADV_DOFORK)   = 0
madvise(0x1102000, 4096, MADV_DOFORK)   = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48600) = 0
mprotect(0x2b3842825000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842825000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282c000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282c000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842822000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842822000, 4096, PROT_READ|PROT_EXEC) = 0
mmap(NULL, 315392, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b383f5fc000
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484c0) = 0
open("/sys/class/infiniband/mlx5_0/ports/1/gids/0", O_RDONLY|O_CLOEXEC) = 22
read(22, "fe80:0000:0000:0000:0c42:a103:00"..., 41) = 40
close(22)                               = 0
open("/dev/infiniband/uverbs1", O_RDWR|O_CLOEXEC) = 22
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48670) = -1 ENOSPC (No space left on device)
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e485c0) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 22, 0) = 0x2b3847e44000
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 22, 0) = 0x2b3847e45000
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48450) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48340) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e481b0) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e483a0) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e486f0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
munmap(0x2b3847e45000, 4096)            = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e484e0) = 0
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48520) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(22, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
open("/dev/infiniband/uverbs2", O_RDWR|O_CLOEXEC) = 24
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48670) = -1 ENOSPC (No space left on device)
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e485c0) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 24, 0) = 0x2b3847e45000
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 24, 0) = 0x2b3847e46000
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48450) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48340) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e481b0) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e483a0) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e486f0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
munmap(0x2b3847e46000, 4096)            = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e484e0) = 0
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48520) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(24, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
open("/dev/infiniband/uverbs3", O_RDWR|O_CLOEXEC) = 26
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48670) = -1 ENOSPC (No space left on device)
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e485c0) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 26, 0) = 0x2b3847e46000
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 26, 0) = 0x2b3847e47000
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48450) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48340) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e481b0) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e483a0) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e486f0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
munmap(0x2b3847e47000, 4096)            = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e484e0) = 0
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48520) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(26, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
open("/dev/infiniband/uverbs4", O_RDWR|O_CLOEXEC) = 28
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48670) = -1 ENOSPC (No space left on device)
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e485c0) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 28, 0) = 0x2b3847e47000
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_SHARED, 28, 0) = 0x2b3847e48000
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48450) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48340) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e481b0) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e483c0) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e483a0) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48590) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e486f0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
munmap(0x2b3847e48000, 4096)            = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e486b0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e484e0) = 0
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48520) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(28, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
open("/sys/class/misc/rdma_cm/abi_version", O_RDONLY|O_CLOEXEC) = 30
read(30, "4\n", 8)                      = 2
close(30)                               = 0
openat(AT_FDCWD, "/sys/class/infiniband_verbs", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 30
getdents(30, /* 8 entries */, 32768)    = 240
stat("/sys/class/infiniband_verbs/abi_version", {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
stat("/sys/class/infiniband_verbs/uverbs0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/ibdev", O_RDONLY|O_CLOEXEC) = 31
read(31, "mlx5_0\n", 64)                = 7
close(31)                               = 0
stat("/sys/class/infiniband/mlx5_0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs0", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 192), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/abi_version", O_RDONLY|O_CLOEXEC) = 31
read(31, "1\n", 8)                      = 2
close(31)                               = 0
open("/sys/class/infiniband_verbs/uverbs0/device/modalias", O_RDONLY|O_CLOEXEC) = 31
read(31, "pci:v000015B3d0000101Bsv000015B3"..., 512) = 54
close(31)                               = 0
stat("/sys/class/infiniband_verbs/uverbs1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/ibdev", O_RDONLY|O_CLOEXEC) = 31
read(31, "i40iw0\n", 64)                = 7
close(31)                               = 0
stat("/sys/class/infiniband/i40iw0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs1", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 193), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/abi_version", O_RDONLY|O_CLOEXEC) = 31
read(31, "0\n", 8)                      = 2
close(31)                               = 0
open("/sys/class/infiniband_verbs/uverbs1/device/modalias", O_RDONLY|O_CLOEXEC) = 31
read(31, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(31)                               = 0
stat("/sys/class/infiniband_verbs/uverbs2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/ibdev", O_RDONLY|O_CLOEXEC) = 31
read(31, "i40iw1\n", 64)                = 7
close(31)                               = 0
stat("/sys/class/infiniband/i40iw1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs2", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 194), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/abi_version", O_RDONLY|O_CLOEXEC) = 31
read(31, "0\n", 8)                      = 2
close(31)                               = 0
open("/sys/class/infiniband_verbs/uverbs2/device/modalias", O_RDONLY|O_CLOEXEC) = 31
read(31, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(31)                               = 0
stat("/sys/class/infiniband_verbs/uverbs3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/ibdev", O_RDONLY|O_CLOEXEC) = 31
read(31, "i40iw2\n", 64)                = 7
close(31)                               = 0
stat("/sys/class/infiniband/i40iw2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs3", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 195), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/abi_version", O_RDONLY|O_CLOEXEC) = 31
read(31, "0\n", 8)                      = 2
close(31)                               = 0
open("/sys/class/infiniband_verbs/uverbs3/device/modalias", O_RDONLY|O_CLOEXEC) = 31
read(31, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(31)                               = 0
stat("/sys/class/infiniband_verbs/uverbs4", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/ibdev", O_RDONLY|O_CLOEXEC) = 31
read(31, "i40iw3\n", 64)                = 7
close(31)                               = 0
stat("/sys/class/infiniband/i40iw3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs4", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 196), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/abi_version", O_RDONLY|O_CLOEXEC) = 31
read(31, "0\n", 8)                      = 2
close(31)                               = 0
open("/sys/class/infiniband_verbs/uverbs4/device/modalias", O_RDONLY|O_CLOEXEC) = 31
read(31, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(31)                               = 0
getdents(30, /* 0 entries */, 32768)    = 0
close(30)                               = 0
open("/sys/class/infiniband/mlx5_0/node_guid", O_RDONLY|O_CLOEXEC) = 30
read(30, "0c42:a103:00dd:0bee\n", 24)   = 20
close(30)                               = 0
open("/sys/class/infiniband/i40iw0/node_guid", O_RDONLY|O_CLOEXEC) = 30
read(30, "48dc:2d0b:1cbc:0000\n", 24)   = 20
close(30)                               = 0
open("/sys/class/infiniband/i40iw1/node_guid", O_RDONLY|O_CLOEXEC) = 30
read(30, "48dc:2d0b:1cbd:0000\n", 24)   = 20
close(30)                               = 0
open("/sys/class/infiniband/i40iw2/node_guid", O_RDONLY|O_CLOEXEC) = 30
read(30, "48dc:2d0b:1cbb:0000\n", 24)   = 20
close(30)                               = 0
open("/sys/class/infiniband/i40iw3/node_guid", O_RDONLY|O_CLOEXEC) = 30
read(30, "48dc:2d0b:1cba:0000\n", 24)   = 20
close(30)                               = 0
open("/dev/infiniband/rdma_cm", O_RDWR|O_CLOEXEC) = 30
write(30, "\0\0\0\0\30\0\4\0000\234\20\1\0\0\0\0\300\207\344\5\374\177\0\0?\1\2\0\0\0\0\0", 32) = 32
write(30, "\24\0\0\0\210\0\0\0\0\0\0\0000\0\0\0\33\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 144) = 144
write(30, "\23\0\0\0\20\0\20\1\0\206\344\5\374\177\0\0\0\0\0\0\0\0\0\0", 24) = 24
write(30, "\23\0\0\0\20\0\20\1\0\206\344\5\374\177\0\0\0\0\0\0\2\0\0\0", 24) = 24
write(30, "\1\0\0\0\20\0\4\0\260\207\344\5\374\177\0\0\0\0\0\0\0\0\0\0", 24) = 24
close(30)                               = 0
open("/dev/infiniband/rdma_cm", O_RDWR|O_CLOEXEC) = 30
write(30, "\0\0\0\0\30\0\4\0000\234\20\1\0\0\0\0@\210\344\5\374\177\0\0\6\1\2\0\0\0\0\0", 32) = 32
write(30, "\24\0\0\0\210\0\0\0\0\0\0\0\20\0\0\0\2\0\0\0\n\24\2\230\0\0\0\0\0\0\0\0"..., 144) = 144
write(30, "\23\0\0\0\20\0\20\1\200\206\344\5\374\177\0\0\0\0\0\0\0\0\0\0", 24) = 24
openat(AT_FDCWD, "/sys/class/infiniband_verbs", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 31
getdents(31, /* 8 entries */, 32768)    = 240
stat("/sys/class/infiniband_verbs/abi_version", {st_mode=S_IFREG|0444, st_size=4096, ...}) = 0
stat("/sys/class/infiniband_verbs/uverbs0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/ibdev", O_RDONLY|O_CLOEXEC) = 32
read(32, "mlx5_0\n", 64)                = 7
close(32)                               = 0
stat("/sys/class/infiniband/mlx5_0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs0", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 192), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs0/abi_version", O_RDONLY|O_CLOEXEC) = 32
read(32, "1\n", 8)                      = 2
close(32)                               = 0
open("/sys/class/infiniband_verbs/uverbs0/device/modalias", O_RDONLY|O_CLOEXEC) = 32
read(32, "pci:v000015B3d0000101Bsv000015B3"..., 512) = 54
close(32)                               = 0
stat("/sys/class/infiniband_verbs/uverbs1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/ibdev", O_RDONLY|O_CLOEXEC) = 32
read(32, "i40iw0\n", 64)                = 7
close(32)                               = 0
stat("/sys/class/infiniband/i40iw0", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs1", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 193), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs1/abi_version", O_RDONLY|O_CLOEXEC) = 32
read(32, "0\n", 8)                      = 2
close(32)                               = 0
open("/sys/class/infiniband_verbs/uverbs1/device/modalias", O_RDONLY|O_CLOEXEC) = 32
read(32, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(32)                               = 0
stat("/sys/class/infiniband_verbs/uverbs2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/ibdev", O_RDONLY|O_CLOEXEC) = 32
read(32, "i40iw1\n", 64)                = 7
close(32)                               = 0
stat("/sys/class/infiniband/i40iw1", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs2", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 194), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs2/abi_version", O_RDONLY|O_CLOEXEC) = 32
read(32, "0\n", 8)                      = 2
close(32)                               = 0
open("/sys/class/infiniband_verbs/uverbs2/device/modalias", O_RDONLY|O_CLOEXEC) = 32
read(32, "pci:v00008086d000037D1sv000019E5"..., 512) = 54
close(32)                               = 0
stat("/sys/class/infiniband_verbs/uverbs3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/ibdev", O_RDONLY|O_CLOEXEC) = 32
read(32, "i40iw2\n", 64)                = 7
close(32)                               = 0
stat("/sys/class/infiniband/i40iw2", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs3", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 195), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs3/abi_version", O_RDONLY|O_CLOEXEC) = 32
read(32, "0\n", 8)                      = 2
close(32)                               = 0
open("/sys/class/infiniband_verbs/uverbs3/device/modalias", O_RDONLY|O_CLOEXEC) = 32
read(32, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(32)                               = 0
stat("/sys/class/infiniband_verbs/uverbs4", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/ibdev", O_RDONLY|O_CLOEXEC) = 32
read(32, "i40iw3\n", 64)                = 7
close(32)                               = 0
stat("/sys/class/infiniband/i40iw3", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
stat("/dev/infiniband/uverbs4", {st_mode=S_IFCHR|0666, st_rdev=makedev(231, 196), ...}) = 0
open("/sys/class/infiniband_verbs/uverbs4/abi_version", O_RDONLY|O_CLOEXEC) = 32
read(32, "0\n", 8)                      = 2
close(32)                               = 0
open("/sys/class/infiniband_verbs/uverbs4/device/modalias", O_RDONLY|O_CLOEXEC) = 32
read(32, "pci:v00008086d000037D2sv000019E5"..., 512) = 54
close(32)                               = 0
getdents(31, /* 0 entries */, 32768)    = 0
close(31)                               = 0
open("/sys/class/infiniband/mlx5_0/node_guid", O_RDONLY|O_CLOEXEC) = 31
read(31, "0c42:a103:00dd:0bee\n", 24)   = 20
close(31)                               = 0
open("/dev/infiniband/uverbs0", O_RDWR|O_CLOEXEC) = 31
mmap(NULL, 204800, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847e48000
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e46b80) = -1 ENOSPC (No space left on device)
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e46ad0) = 0
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0) = 0x2b3847e7a000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x1000) = 0x2b3847e7b000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x2000) = 0x2b3847e7c000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x3000) = 0x2b3847e7d000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x4000) = 0x2b3847e7e000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x5000) = 0x2b3847e7f000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x6000) = 0x2b3847e80000
mmap(NULL, 4096, PROT_WRITE, MAP_SHARED, 31, 0x7000) = 0x2b3847e81000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 31, 0x500000) = 0x2b3847e82000
mmap(NULL, 4096, PROT_READ, MAP_SHARED, 31, 0x700000) = 0x2b3847e83000
open("/proc/cpuinfo", O_RDONLY)         = 33
fstat(33, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847e84000
read(33, "processor\t: 0\nvendor_id\t: Genuin"..., 1024) = 1024
read(33, "clwb avx512cd avx512bw avx512vl "..., 1024) = 1024
read(33, "1 sse4_2 x2apic movbe popcnt tsc"..., 1024) = 1024
read(33, "gs\t\t: fpu vme de pse tsc msr pae"..., 1024) = 1024
read(33, ": 3\nvendor_id\t: GenuineIntel\ncpu"..., 1024) = 1024
read(33, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(33, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(33, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(33, "or_id\t: GenuineIntel\ncpu family\t"..., 1024) = 1024
read(33, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(33, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(33, "me de pse tsc msr pae mce cx8 ap"..., 1024) = 1024
read(33, "id\t: GenuineIntel\ncpu family\t: 6"..., 1024) = 1024
read(33, "12bw avx512vl xsaveopt xsavec xg"..., 1024) = 1024
read(33, "c movbe popcnt tsc_deadline_time"..., 1024) = 1024
read(33, "vme de pse tsc msr pae mce cx8 a"..., 1024) = 1024
read(33, "r_id\t: GenuineIntel\ncpu family\t:"..., 1024) = 1024
read(33, "x512bw avx512vl xsaveopt xsavec "..., 1024) = 1024
read(33, "pic movbe popcnt tsc_deadline_ti"..., 1024) = 1024
read(33, "u vme de pse tsc msr pae mce cx8"..., 1024) = 1024
read(33, "dor_id\t: GenuineIntel\ncpu family"..., 1024) = 1024
read(33, "avx512bw avx512vl xsaveopt xsave"..., 1024) = 1024
read(33, "2apic movbe popcnt tsc_deadline_"..., 1024) = 1024
read(33, "fpu vme de pse tsc msr pae mce c"..., 1024) = 1024
read(33, "endor_id\t: GenuineIntel\ncpu fami"..., 1024) = 1024
read(33, "d avx512bw avx512vl xsaveopt xsa"..., 1024) = 1024
read(33, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(33, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(33, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(33, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(33, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(33, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(33, "24\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(33, "12cd avx512bw avx512vl xsaveopt "..., 1024) = 1024
read(33, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(33, "\t: fpu vme de pse tsc msr pae mc"..., 1024) = 1024
read(33, "7\nvendor_id\t: GenuineIntel\ncpu f"..., 1024) = 1024
read(33, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(33, "2 x2apic movbe popcnt tsc_deadli"..., 1024) = 1024
read(33, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(33, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(33, "cd avx512bw avx512vl xsaveopt xs"..., 1024) = 1024
read(33, " x2apic movbe popcnt tsc_deadlin"..., 1024) = 1024
read(33, ": fpu vme de pse tsc msr pae mce"..., 1024) = 1024
read(33, "\nvendor_id\t: GenuineIntel\ncpu fa"..., 1024) = 1024
read(33, "2cd avx512bw avx512vl xsaveopt x"..., 1024) = 1024
read(33, "_2 x2apic movbe popcnt tsc_deadl"..., 1024) = 1024
read(33, "\t\t: fpu vme de pse tsc msr pae m"..., 1024) = 1024
read(33, "36\nvendor_id\t: GenuineIntel\ncpu "..., 1024) = 1024
read(33, "512cd avx512bw avx512vl xsaveopt"..., 1024) = 1024
read(33, "e4_2 x2apic movbe popcnt tsc_dea"..., 1024) = 1024
read(33, "lags\t\t: fpu vme de pse tsc msr p"..., 1024) = 1024
read(33, "r\t: 39\nvendor_id\t: GenuineIntel\n"..., 1024) = 1024
read(33, "wb avx512cd avx512bw avx512vl xs"..., 1024) = 1024
read(33, "se4_1 sse4_2 x2apic movbe popcnt"..., 1024) = 1024
read(33, "\t: yes\nflags\t\t: fpu vme de pse t"..., 1024) = 1024
read(33, "processor\t: 42\nvendor_id\t: Genui"..., 1024) = 1024
read(33, "shopt clwb avx512cd avx512bw avx"..., 1024) = 1024
read(33, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(33, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(33, "ement:\n\nprocessor\t: 45\nvendor_id"..., 1024) = 1024
read(33, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(33, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(33, "d level\t: 22\nwp\t\t: yes\nflags\t\t: "..., 1024) = 1024
read(33, "er management:\n\nprocessor\t: 48\nv"..., 1024) = 1024
read(33, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(33, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(33, "\t: 22\nwp\t\t: yes\nflags\t\t: fpu vme"..., 1024) = 1024
read(33, "gement:\n\nprocessor\t: 51\nvendor_i"..., 1024) = 1024
read(33, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(33, "d dca sse4_1 sse4_2 x2apic movbe"..., 1024) = 1024
read(33, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(33, "t:\n\nprocessor\t: 54\nvendor_id\t: G"..., 1024) = 1024
read(33, "ushopt clwb avx512cd avx512bw av"..., 1024) = 1024
read(33, " dca sse4_1 sse4_2 x2apic movbe "..., 1024) = 1024
read(33, "\nwp\t\t: yes\nflags\t\t: fpu vme de p"..., 1024) = 1024
read(33, "t:\n\nprocessor\t: 57\nvendor_id\t: G"..., 1024) = 1024
read(33, "lushopt clwb avx512cd avx512bw a"..., 1024) = 1024
read(33, "id dca sse4_1 sse4_2 x2apic movb"..., 1024) = 1024
read(33, "22\nwp\t\t: yes\nflags\t\t: fpu vme de"..., 1024) = 1024
read(33, "ent:\n\nprocessor\t: 60\nvendor_id\t:"..., 1024) = 1024
read(33, "lflushopt clwb avx512cd avx512bw"..., 1024) = 1024
read(33, "pcid dca sse4_1 sse4_2 x2apic mo"..., 1024) = 1024
read(33, ": 22\nwp\t\t: yes\nflags\t\t: fpu vme "..., 1024) = 1024
read(33, "ement:\n\nprocessor\t: 63\nvendor_id"..., 1024) = 1024
read(33, " clflushopt clwb avx512cd avx512"..., 1024) = 1024
read(33, "m pcid dca sse4_1 sse4_2 x2apic "..., 1024) = 1024
read(33, "l\t: 22\nwp\t\t: yes\nflags\t\t: fpu vm"..., 1024) = 1024
read(33, "agement:\n\nprocessor\t: 66\nvendor_"..., 1024) = 1024
read(33, "ap clflushopt clwb avx512cd avx5"..., 1024) = 1024
read(33, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(33, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(33, "anagement:\n\nprocessor\t: 69\nvendo"..., 1024) = 1024
read(33, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(33, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(33, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(33, " management:\n\nprocessor\t: 72\nven"..., 1024) = 1024
read(33, " smap clflushopt clwb avx512cd a"..., 1024) = 1024
read(33, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(33, "evel\t: 22\nwp\t\t: yes\nflags\t\t: fpu"..., 1024) = 1024
read(33, "management:\n\nprocessor\t: 75\nvend"..., 1024) = 1024
read(33, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(33, "pdcm pcid dca sse4_1 sse4_2 x2ap"..., 1024) = 1024
read(33, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(33, "anagement:\n\nprocessor\t: 78\nvendo"..., 1024) = 1024
read(33, "map clflushopt clwb avx512cd avx"..., 1024) = 1024
read(33, "dcm pcid dca sse4_1 sse4_2 x2api"..., 1024) = 1024
read(33, "vel\t: 22\nwp\t\t: yes\nflags\t\t: fpu "..., 1024) = 1024
read(33, "anagement:\n\nprocessor\t: 81\nvendo"..., 1024) = 1024
read(33, "smap clflushopt clwb avx512cd av"..., 1024) = 1024
read(33, " pdcm pcid dca sse4_1 sse4_2 x2a"..., 1024) = 1024
read(33, "level\t: 22\nwp\t\t: yes\nflags\t\t: fp"..., 1024) = 1024
read(33, " management:\n\nprocessor\t: 84\nven"..., 1024) = 1024
read(33, "x smap clflushopt clwb avx512cd "..., 1024) = 1024
read(33, "pr pdcm pcid dca sse4_1 sse4_2 x"..., 1024) = 1024
read(33, "uid level\t: 22\nwp\t\t: yes\nflags\t\t"..., 1024) = 1024
read(33, "ower management:\n\nprocessor\t: 87"..., 1024) = 1024
read(33, "eed adx smap clflushopt clwb avx"..., 1024) = 1024
read(33, " cx16 xtpr pdcm pcid dca sse4_1 "..., 1024) = 1024
read(33, ": yes\ncpuid level\t: 22\nwp\t\t: yes"..., 1024) = 1024
read(33, "irtual\npower management:\n\nproces"..., 1024) = 1024
read(33, "12dq rdseed adx smap clflushopt "..., 1024) = 1024
read(33, "sdbg fma cx16 xtpr pdcm pcid dca"..., 1024) = 1024
read(33, "ception\t: yes\ncpuid level\t: 22\nw"..., 1024) = 1024
read(33, "8 bits virtual\npower management:"..., 1024) = 1024
read(33, "12f avx512dq rdseed adx smap clf"..., 1024) = 1024
read(33, "2 ssse3 sdbg fma cx16 xtpr pdcm "..., 1024) = 1024
read(33, "s\nfpu_exception\t: yes\ncpuid leve"..., 1024) = 1024
read(33, "sical, 48 bits virtual\npower man"..., 1024) = 42
read(33, "", 1024)                      = 0
close(33)                               = 0
munmap(0x2b3847e84000, 4096)            = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e46890) = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e46ba0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e469a0) = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e481f0) = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e48170) = 0
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e48410) = 0
write(30, "\23\0\0\0\20\0\20\1\200\206\344\5\374\177\0\0\0\0\0\0\2\0\0\0", 24) = 24
write(30, "\1\0\0\0\20\0\4\0000\210\344\5\374\177\0\0\0\0\0\0\0\0\0\0", 24) = 24
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e48800) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(31, RDMA_VERBS_IOCTL, 0x7ffc05e48650) = 0
close(30)                               = 0
open("/dev/infiniband/rdma_cm", O_RDWR|O_CLOEXEC) = 30
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48650) = 0
brk(NULL)                               = 0x116f000
brk(0x119e000)                          = 0x119e000
madvise(0x116d000, 65536, MADV_DONTFORK) = 0
madvise(0x117e000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e481c0) = 0
madvise(0x1180000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e481c0) = 0
brk(NULL)                               = 0x119e000
brk(0x11c1000)                          = 0x11c1000
madvise(0x1191000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e485b0) = 0
madvise(0x11a2000, 12288, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48230) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
open("/sys/class/infiniband/mlx5_0/ports/1/gids/0", O_RDONLY|O_CLOEXEC) = 34
read(34, "fe80:0000:0000:0000:0c42:a103:00"..., 41) = 40
close(34)                               = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
mmap(NULL, 528384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847e84000
mmap(NULL, 1052672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3850e1f000
socket(AF_INET, SOCK_DGRAM, IPPROTO_IP) = 34
ioctl(34, SIOCETHTOOL, 0x7ffc05e48830)  = 0
close(34)                               = 0
socket(AF_INET, SOCK_STREAM, IPPROTO_IP) = 34
setsockopt(34, SOL_TCP, TCP_NODELAY, [1], 4) = 0
setsockopt(34, SOL_SOCKET, SO_REUSEADDR, [0], 4) = 0
bind(34, {sa_family=AF_INET, sin_port=htons(1024), sin_addr=inet_addr("0.0.0.0")}, 16) = 0
getsockname(34, {sa_family=AF_INET, sin_port=htons(1024), sin_addr=inet_addr("0.0.0.0")}, [16]) = 0
listen(34, 128)                         = 0
fcntl(34, F_GETFL)                      = 0x2 (flags O_RDWR)
fcntl(34, F_SETFL, O_RDWR|O_NONBLOCK)   = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
brk(NULL)                               = 0x11c1000
brk(0x11e3000)                          = 0x11e3000
access("/dev/shm", W_OK)                = 0
access("/dev/shm", W_OK)                = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0x11c4a24, FUTEX_WAIT_PRIVATE, 1, NULL) = 0
futex(0x11c49f0, FUTEX_WAKE_PRIVATE, 1) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
mmap(NULL, 139264, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847f05000
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
madvise(0x11d8000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
madvise(0x11dd000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
madvise(0x11e0000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
brk(NULL)                               = 0x11e3000
brk(0x1209000)                          = 0x1209000
madvise(0x11e3000, 20480, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
madvise(0x11e9000, 20480, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
madvise(0x11ef000, 102400, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
brk(NULL)                               = 0x1209000
brk(0x1243000)                          = 0x1243000
madvise(0x1209000, 102400, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
mmap(NULL, 536576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847f27000
madvise(0x2b3847f28000, 528384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
mmap(NULL, 536576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3850f20000
madvise(0x2b3850f21000, 528384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48690) = 0
mmap(NULL, 1056768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3850fa3000
madvise(0x2b3850fa4000, 1048576, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 1056768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38510a5000
madvise(0x2b38510a6000, 1048576, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x1223000, 4096, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48740) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48820) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e487f0) = 0
madvise(0x1223000, 4096, MADV_DOFORK)   = 0
madvise(0x1224000, 16384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48740) = 0
brk(NULL)                               = 0x1243000
brk(0x1266000)                          = 0x1266000
madvise(0x1235000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48740) = 0
madvise(0x124a000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48740) = 0
brk(NULL)                               = 0x1266000
brk(0x1290000)                          = 0x1290000
madvise(0x125f000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48740) = 0
madvise(0x1274000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e482c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484c0) = 0
madvise(0x1285000, 16384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e482c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484c0) = 0
madvise(0x128a000, 16384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e482c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484c0) = 0
brk(NULL)                               = 0x1290000
brk(0x12b1000)                          = 0x12b1000
madvise(0x1293000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e482c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e484c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48540) = 0
madvise(0x12a6000, 8192, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x12ab000, 8192, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48620) = 0
brk(NULL)                               = 0x12b1000
brk(0x12e2000)                          = 0x12e2000
madvise(0x12b0000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x12c4000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
brk(NULL)                               = 0x12e2000
brk(0x130a000)                          = 0x130a000
madvise(0x12d8000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x12ec000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
brk(NULL)                               = 0x130a000
brk(0x1332000)                          = 0x1332000
madvise(0x1300000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x1314000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
brk(NULL)                               = 0x1332000
brk(0x135a000)                          = 0x135a000
madvise(0x1328000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
madvise(0x133c000, 69632, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48620) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38511a7000
madvise(0x2b38511a8000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b385120a000
madvise(0x2b385120b000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b385126d000
madvise(0x2b385126e000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38512d0000
madvise(0x2b38512d1000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3851333000
madvise(0x2b3851334000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3851396000
madvise(0x2b3851397000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
brk(NULL)                               = 0x135a000
brk(0x137c000)                          = 0x137c000
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38513f9000
madvise(0x2b38513fa000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 405504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b385145c000
madvise(0x2b385145d000, 397312, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48620) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38514bf000
madvise(0x2b38514c0000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38516c2000
madvise(0x2b38516c3000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38518c5000
madvise(0x2b38518c6000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3851ac8000
madvise(0x2b3851ac9000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3851ccb000
madvise(0x2b3851ccc000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3851ece000
madvise(0x2b3851ecf000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38520d1000
madvise(0x2b38520d2000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
mmap(NULL, 2109440, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38522d4000
madvise(0x2b38522d5000, 2101248, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48430) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48620) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
mmap(NULL, 1064960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b38524d7000
write(1, "\n", 1)                       = 1
write(1, " Fortran IO test             \n", 30) = 30
write(1, " ----------------------------\n", 30) = 30
write(1, "\n", 1)                       = 1
write(1, " Using            2  process(es)"..., 33) = 33
write(1, " Matrix size is   (          50 "..., 64) = 64
write(1, "\n", 1)                       = 1
write(1, " Iterations =            2\n", 27) = 27
write(1, " Data / process =   0.9536743164"..., 50) = 50
write(1, " Total amount of data written = "..., 64) = 64
write(1, "\n", 1)                       = 1
write(1, " Fortran IO used\n", 17)      = 17
write(1, "\n", 1)                       = 1
brk(NULL)                               = 0x137c000
brk(0x13a5000)                          = 0x13a5000
madvise(0x1374000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48370) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
madvise(0x1385000, 16384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48370) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
madvise(0x138a000, 16384, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48370) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
madvise(0x1393000, 65536, MADV_DONTFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48370) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48570) = 0
futex(0x1313c80, FUTEX_WAKE_PRIVATE, 1) = 1
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48510) = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 1 ([{fd=5, revents=POLLIN}])
read(5, "\1\0\0\0\0\0\0\0", 8)          = 8
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 1 ([{fd=5, revents=POLLIN}])
read(5, "\1\0\0\0\0\0\0\0", 8)          = 8
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
stat("data_1_000000", 0x7ffc05e48740)   = -1 ENOENT (No such file or directory)
access("data_1_000000", F_OK)           = -1 ENOENT (No such file or directory)
write(1, " gnu_cc open specs ...\n", 23) = 23
access("/etc/sysconfig/strcasecmp-nonascii", F_OK) = -1 ENOENT (No such file or directory)
stat("data_1_000000", 0x7ffc05e485c0)   = -1 ENOENT (No such file or directory)
open("data_1_000000", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0666) = 35
fstat(35, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
brk(NULL)                               = 0x13a5000
brk(0x13c6000)                          = 0x13c6000
stat("data_1_000000", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
write(1, " opening  file: data_1_000000   "..., 87) = 87
write(1, "Device ID:                      "..., 49) = 49
write(1, "Inode number:                   "..., 49) = 49
write(1, "File mode (octal):              "..., 49) = 49
write(1, "Number of links:                "..., 49) = 49
write(1, "Owner's uid:                    "..., 49) = 49
write(1, "Owner's gid:                    "..., 49) = 49
write(1, "Device where located:           "..., 49) = 49
write(1, "File size:                      "..., 49) = 49
open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 36
fstat(36, {st_mode=S_IFREG|0644, st_size=2309, ...}) = 0
fstat(36, {st_mode=S_IFREG|0644, st_size=2309, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2b3847faa000
read(36, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\10\0\0\0\0"..., 4096) = 2309
lseek(36, -1467, SEEK_CUR)              = 842
read(36, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\t\0\0\0\0"..., 4096) = 1467
close(36)                               = 0
munmap(0x2b3847faa000, 4096)            = 0
write(1, "Last access time:            Wed"..., 49) = 49
write(1, "Last modification time       Wed"..., 49) = 49
write(1, "Last status change time:     Wed"..., 49) = 49
write(1, "Preferred block size:           "..., 49) = 49
write(1, "No. of blocks allocated:        "..., 49) = 49
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
write(1, " node : lxbk0775                "..., 329) = 329
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
write(35, "\0\0\0@33\343?\0\0\0`ff\346?\0\0\0\240\231\231\351?\0\0\0\340\314\314\354?"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0@33\373?\0\0\0\340\314\314\374?\0\0\0`ff\376?\0\0\0\0\0\0\0@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\351?\0\0\0\340\314\314\354?\0\0\0\0\0\0\360?\0\0\0\240\231\231\361?"..., 8000) = 8000
write(35, "\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0`ff\376?\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@"..., 8000) = 8000
write(35, "\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360?\0\0\0\240\231\231\361?\0\0\0@33\363?\0\0\0\340\314\314\364?"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@\0\0\0`ff\2@\0\0\0@33\3@"..., 8000) = 8000
write(35, "\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@"..., 8000) = 8000
write(35, "\0\0\0@33\363?\0\0\0\340\314\314\364?\0\0\0`ff\366?\0\0\0\0\0\0\370?"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0`ff\2@\0\0\0@33\3@\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@"..., 8000) = 8000
write(35, "\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@"..., 8000) = 8000
write(35, "\0\0\0`ff\366?\0\0\0\0\0\0\370?\0\0\0\240\231\231\371?\0\0\0@33\373?"..., 8000) = 8000
write(35, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\371?\0\0\0@33\373?\0\0\0\340\314\314\374?\0\0\0`ff\376?"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@"..., 8000) = 8000
write(35, "\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\374?\0\0\0`ff\376?\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@"..., 8000) = 8000
write(35, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8000) = 8000
write(35, "\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@"..., 8000) = 8000
write(35, "\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@\0\0\0`ff\2@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@"..., 8000) = 8000
write(35, "\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\1@\0\0\0`ff\2@\0\0\0@33\3@\0\0\0\0\0\0\4@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@"..., 8000) = 8000
write(35, "\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@"..., 8000) = 8000
write(35, "\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@"..., 8000) = 8000
write(35, "\0\0\0@33\3@\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@"..., 8000) = 8000
write(35, "\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@"..., 8000) = 8000
write(35, "\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@"..., 8000) = 8000
write(35, "\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@"..., 8000) = 8000
write(35, "\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@"..., 8000) = 8000
write(35, "\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@"..., 8000) = 8000
write(35, "\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@"..., 8000) = 8000
write(35, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@"..., 8000) = 8000
write(35, "\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@"..., 8000) = 8000
write(35, "\0\0\0`ff\36@\0\0\0\340\314\314\36@\0\0\0@33\37@\0\0\0\240\231\231\37@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@"..., 8000) = 8000
write(35, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8000) = 8000
write(35, "\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@"..., 8000) = 8000
write(35, "\0\0\0@33\37@\0\0\0\240\231\231\37@\0\0\0\0\0\0 @\0\0\0@33 @"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0 @\0\0\0@33 @\0\0\0`ff @\0\0\0\240\231\231 @"..., 8000) = 8000
write(35, "\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@"..., 8000) = 8000
write(35, "\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@"..., 8000) = 8000
write(35, "\0\0\0`ff @\0\0\0\240\231\231 @\0\0\0\340\314\314 @\0\0\0\0\0\0!@"..., 8000) = 8000
write(35, "\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@"..., 8000) = 8000
write(35, "\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314 @\0\0\0\0\0\0!@\0\0\0@33!@\0\0\0`ff!@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@\0\0\0@33\37@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@"..., 8000) = 8000
write(35, "\0\0\0@33!@\0\0\0`ff!@\0\0\0\240\231\231!@\0\0\0\340\314\314!@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\36@\0\0\0@33\37@\0\0\0\240\231\231\37@\0\0\0\0\0\0 @"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231!@\0\0\0\340\314\314!@\0\0\0\0\0\0\"@\0\0\0@33\"@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\37@\0\0\0\0\0\0 @\0\0\0@33 @\0\0\0`ff @"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\"@\0\0\0@33\"@\0\0\0`ff\"@\0\0\0\240\231\231\"@"..., 8000) = 8000
write(35, "\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@"..., 8000) = 8000
write(35, "\0\0\0@33 @\0\0\0`ff @\0\0\0\240\231\231 @\0\0\0\340\314\314 @"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@"..., 8000) = 8000
write(35, "\0\0\0`ff\"@\0\0\0\240\231\231\"@\0\0\0\340\314\314\"@\0\0\0\0\0\0#@"..., 8000) = 8000
write(35, "\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231 @\0\0\0\340\314\314 @\0\0\0\0\0\0!@\0\0\0@33!@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\"@\0\0\0\0\0\0#@\0\0\0@33#@\0\0\0`ff#@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277"..., 8000) = 8000
close(35)                               = 0
write(1, " time =    3.1345115974545479E-0"..., 78) = 78
stat("data_1_000000", {st_mode=S_IFREG|0644, st_size=1000000, ...}) = 0
open("data_1_000000", O_RDWR|O_CLOEXEC) = 35
fstat(35, {st_mode=S_IFREG|0644, st_size=1000000, ...}) = 0
unlink("data_1_000000")                 = 0
close(35)                               = 0
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
stat("data_2_000000", 0x7ffc05e48740)   = -1 ENOENT (No such file or directory)
access("data_2_000000", F_OK)           = -1 ENOENT (No such file or directory)
write(1, " gnu_cc open specs ...\n", 23) = 23
stat("data_2_000000", 0x7ffc05e485c0)   = -1 ENOENT (No such file or directory)
open("data_2_000000", O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0666) = 35
fstat(35, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
stat("data_2_000000", {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
write(1, " opening  file: data_2_000000   "..., 87) = 87
write(1, "Device ID:                      "..., 49) = 49
write(1, "Inode number:                   "..., 49) = 49
write(1, "File mode (octal):              "..., 49) = 49
write(1, "Number of links:                "..., 49) = 49
write(1, "Owner's uid:                    "..., 49) = 49
write(1, "Owner's gid:                    "..., 49) = 49
write(1, "Device where located:           "..., 49) = 49
write(1, "File size:                      "..., 49) = 49
write(1, "Last access time:            Wed"..., 49) = 49
write(1, "Last modification time       Wed"..., 49) = 49
write(1, "Last status change time:     Wed"..., 49) = 49
write(1, "Preferred block size:           "..., 49) = 49
write(1, "No. of blocks allocated:        "..., 49) = 49
uname({sysname="Linux", nodename="lxbk0775", ...}) = 0
write(1, " node : lxbk0775                "..., 329) = 329
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
write(35, "\0\0\0@33\343?\0\0\0`ff\346?\0\0\0\240\231\231\351?\0\0\0\340\314\314\354?"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0@33\373?\0\0\0\340\314\314\374?\0\0\0`ff\376?\0\0\0\0\0\0\0@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\351?\0\0\0\340\314\314\354?\0\0\0\0\0\0\360?\0\0\0\240\231\231\361?"..., 8000) = 8000
write(35, "\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0`ff\376?\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@"..., 8000) = 8000
write(35, "\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360?\0\0\0\240\231\231\361?\0\0\0@33\363?\0\0\0\340\314\314\364?"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@\0\0\0`ff\2@\0\0\0@33\3@"..., 8000) = 8000
write(35, "\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@"..., 8000) = 8000
write(35, "\0\0\0@33\363?\0\0\0\340\314\314\364?\0\0\0`ff\366?\0\0\0\0\0\0\370?"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0`ff\2@\0\0\0@33\3@\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@"..., 8000) = 8000
write(35, "\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@"..., 8000) = 8000
write(35, "\0\0\0`ff\366?\0\0\0\0\0\0\370?\0\0\0\240\231\231\371?\0\0\0@33\373?"..., 8000) = 8000
write(35, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\371?\0\0\0@33\373?\0\0\0\340\314\314\374?\0\0\0`ff\376?"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@"..., 8000) = 8000
write(35, "\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\374?\0\0\0`ff\376?\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@"..., 8000) = 8000
write(35, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8000) = 8000
write(35, "\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@"..., 8000) = 8000
write(35, "\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\0@\0\0\0\340\314\314\0@\0\0\0\240\231\231\1@\0\0\0`ff\2@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@"..., 8000) = 8000
write(35, "\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\1@\0\0\0`ff\2@\0\0\0@33\3@\0\0\0\0\0\0\4@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@"..., 8000) = 8000
write(35, "\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@"..., 8000) = 8000
write(35, "\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@"..., 8000) = 8000
write(35, "\0\0\0@33\3@\0\0\0\0\0\0\4@\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\4@\0\0\0\240\231\231\5@\0\0\0`ff\6@\0\0\0@33\7@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@"..., 8000) = 8000
write(35, "\0\0\0`ff\6@\0\0\0@33\7@\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@"..., 8000) = 8000
write(35, "\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@"..., 8000) = 8000
write(35, "\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@"..., 8000) = 8000
write(35, "\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\t@\0\0\0`ff\n@\0\0\0@33\v@\0\0\0\0\0\0\f@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@"..., 8000) = 8000
write(35, "\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@"..., 8000) = 8000
write(35, "\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@"..., 8000) = 8000
write(35, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@\0\0\0`ff\16@\0\0\0@33\17@"..., 8000) = 8000
write(35, "\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@"..., 8000) = 8000
write(35, "\0\0\0`ff\36@\0\0\0\340\314\314\36@\0\0\0@33\37@\0\0\0\240\231\231\37@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@"..., 8000) = 8000
write(35, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8000) = 8000
write(35, "\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@"..., 8000) = 8000
write(35, "\0\0\0@33\37@\0\0\0\240\231\231\37@\0\0\0\0\0\0 @\0\0\0@33 @"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\20@\0\0\0`ff\20@\0\0\0\340\314\314\20@\0\0\0@33\21@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0 @\0\0\0@33 @\0\0\0`ff @\0\0\0\240\231\231 @"..., 8000) = 8000
write(35, "\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@"..., 8000) = 8000
write(35, "\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@"..., 8000) = 8000
write(35, "\0\0\0`ff @\0\0\0\240\231\231 @\0\0\0\340\314\314 @\0\0\0\0\0\0!@"..., 8000) = 8000
write(35, "\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@"..., 8000) = 8000
write(35, "\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@\0\0\0`ff\22@\0\0\0\340\314\314\22@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@\0\0\0\340\314\314\32@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314 @\0\0\0\0\0\0!@\0\0\0@33!@\0\0\0`ff!@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@\0\0\0@33\27@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@\0\0\0@33\37@"..., 8000) = 8000
write(35, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8000) = 8000
write(35, "\0\0\0`ff\32@\0\0\0\340\314\314\32@\0\0\0@33\33@\0\0\0\240\231\231\33@"..., 8000) = 8000
write(35, "\0\0\0@33!@\0\0\0`ff!@\0\0\0\240\231\231!@\0\0\0\340\314\314!@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\26@\0\0\0@33\27@\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\36@\0\0\0@33\37@\0\0\0\240\231\231\37@\0\0\0\0\0\0 @"..., 8000) = 8000
write(35, "\0\0\0@33\23@\0\0\0\240\231\231\23@\0\0\0\0\0\0\24@\0\0\0`ff\24@"..., 8000) = 8000
write(35, "\0\0\0@33\33@\0\0\0\240\231\231\33@\0\0\0\0\0\0\34@\0\0\0`ff\34@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231!@\0\0\0\340\314\314!@\0\0\0\0\0\0\"@\0\0\0@33\"@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\27@\0\0\0\0\0\0\30@\0\0\0`ff\30@\0\0\0\340\314\314\30@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\37@\0\0\0\0\0\0 @\0\0\0@33 @\0\0\0`ff @"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\34@\0\0\0`ff\34@\0\0\0\340\314\314\34@\0\0\0@33\35@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\"@\0\0\0@33\"@\0\0\0`ff\"@\0\0\0\240\231\231\"@"..., 8000) = 8000
write(35, "\0\0\0`ff\30@\0\0\0\340\314\314\30@\0\0\0@33\31@\0\0\0\240\231\231\31@"..., 8000) = 8000
write(35, "\0\0\0@33 @\0\0\0`ff @\0\0\0\240\231\231 @\0\0\0\340\314\314 @"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\24@\0\0\0@33\25@\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\34@\0\0\0@33\35@\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@"..., 8000) = 8000
write(35, "\0\0\0`ff\"@\0\0\0\240\231\231\"@\0\0\0\340\314\314\"@\0\0\0\0\0\0#@"..., 8000) = 8000
write(35, "\0\0\0@33\31@\0\0\0\240\231\231\31@\0\0\0\0\0\0\32@\0\0\0`ff\32@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231 @\0\0\0\340\314\314 @\0\0\0\0\0\0!@\0\0\0@33!@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\25@\0\0\0\0\0\0\26@\0\0\0`ff\26@\0\0\0\340\314\314\26@"..., 8000) = 8000
write(35, "\0\0\0\240\231\231\35@\0\0\0\0\0\0\36@\0\0\0`ff\36@\0\0\0\340\314\314\36@"..., 8000) = 8000
write(35, "\0\0\0\340\314\314\"@\0\0\0\0\0\0#@\0\0\0@33#@\0\0\0`ff#@"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277"..., 8000) = 8000
write(35, "\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277\0\0\0\0\0\0\360\277"..., 8000) = 8000
close(35)                               = 0
write(1, " time =    4.1722228750586510E-0"..., 78) = 78
stat("data_2_000000", {st_mode=S_IFREG|0644, st_size=1000000, ...}) = 0
open("data_2_000000", O_RDWR|O_CLOEXEC) = 35
fstat(35, {st_mode=S_IFREG|0644, st_size=1000000, ...}) = 0
unlink("data_2_000000")                 = 0
close(35)                               = 0
write(1, "\n", 1)                       = 1
write(1, " min_time =    3.134511597454547"..., 86) = 86
write(1, " mean_time =    3.65336723625659"..., 88) = 88
write(1, "\n", 1)                       = 1
write(1, "\n", 1)                       = 1
write(1, " -----------------------\n", 25) = 25
write(1, " Fortan IO test finished\n", 25) = 25
write(1, " -----------------------\n", 25) = 25
write(1, "\n", 1)                       = 1
munmap(0x2b38524d7000, 1064960)         = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
poll([{fd=5, events=POLLIN}, {fd=34, events=POLLIN}], 2, 0) = 0 (Timeout)
nanosleep({tv_sec=0, tv_nsec=100000}, NULL) = 0
munmap(0x2b3847f05000, 139264)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1274000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1285000, 16384, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x128a000, 16384, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1293000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1374000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1385000, 16384, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x138a000, 16384, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48990) = 0
madvise(0x1393000, 65536, MADV_DOFORK)  = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e489e0) = 0
madvise(0x1224000, 16384, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e489e0) = 0
madvise(0x1235000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e489e0) = 0
madvise(0x124a000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e489e0) = 0
madvise(0x125f000, 65536, MADV_DOFORK)  = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e486c0) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48890) = 0
madvise(0x11a2000, 12288, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48ad0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48920) = 0
madvise(0x1191000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e488e0) = 0
madvise(0x1180000, 65536, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e488e0) = 0
madvise(0x116d000, 65536, MADV_DOFORK)  = 0
close(33)                               = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11dd000, 4096, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11e0000, 4096, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12a6000, 8192, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12ab000, 8192, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11e3000, 20480, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11e9000, 20480, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12b0000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12c4000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12d8000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x12ec000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x1300000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x1314000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x1328000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x133c000, 69632, MADV_DOFORK)  = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11ef000, 102400, MADV_DOFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x1209000, 102400, MADV_DOFORK) = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38511a8000, 397312, MADV_DOFORK) = 0
munmap(0x2b38511a7000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b385120b000, 397312, MADV_DOFORK) = 0
munmap(0x2b385120a000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b385126e000, 397312, MADV_DOFORK) = 0
munmap(0x2b385126d000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38512d1000, 397312, MADV_DOFORK) = 0
munmap(0x2b38512d0000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3851334000, 397312, MADV_DOFORK) = 0
munmap(0x2b3851333000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3851397000, 397312, MADV_DOFORK) = 0
munmap(0x2b3851396000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38513fa000, 397312, MADV_DOFORK) = 0
munmap(0x2b38513f9000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b385145d000, 397312, MADV_DOFORK) = 0
munmap(0x2b385145c000, 405504)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3847f28000, 528384, MADV_DOFORK) = 0
munmap(0x2b3847f27000, 536576)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3850f21000, 528384, MADV_DOFORK) = 0
munmap(0x2b3850f20000, 536576)          = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38514c0000, 2101248, MADV_DOFORK) = 0
munmap(0x2b38514bf000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38516c3000, 2101248, MADV_DOFORK) = 0
munmap(0x2b38516c2000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38518c6000, 2101248, MADV_DOFORK) = 0
munmap(0x2b38518c5000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3851ac9000, 2101248, MADV_DOFORK) = 0
munmap(0x2b3851ac8000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3851ccc000, 2101248, MADV_DOFORK) = 0
munmap(0x2b3851ccb000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b3851ecf000, 2101248, MADV_DOFORK) = 0
munmap(0x2b3851ece000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38520d2000, 2101248, MADV_DOFORK) = 0
munmap(0x2b38520d1000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x2b38522d5000, 2101248, MADV_DOFORK) = 0
munmap(0x2b38522d4000, 2109440)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48880) = 0
madvise(0x11d8000, 4096, MADV_DOFORK)   = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e488e0) = 0
madvise(0x2b3850fa4000, 1048576, MADV_DOFORK) = 0
munmap(0x2b3850fa3000, 1056768)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e488e0) = 0
madvise(0x117e000, 4096, MADV_DOFORK)   = 0
madvise(0x2b38510a6000, 1048576, MADV_DOFORK) = 0
munmap(0x2b38510a5000, 1056768)         = 0
ioctl(20, RDMA_VERBS_IOCTL, 0x7ffc05e48940) = 0
munmap(0x2b383f461000, 4096)            = 0
munmap(0x2b383f462000, 4096)            = 0
munmap(0x2b383f463000, 4096)            = 0
munmap(0x2b383f464000, 4096)            = 0
munmap(0x2b383f5f6000, 4096)            = 0
munmap(0x2b383f5f7000, 4096)            = 0
munmap(0x2b383f5f8000, 4096)            = 0
munmap(0x2b383f5f9000, 4096)            = 0
munmap(0x2b383f5fa000, 4096)            = 0
munmap(0x2b383f5fb000, 4096)            = 0
close(20)                               = 0
close(21)                               = 0
munmap(0x2b383f5c4000, 204800)          = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
close(30)                               = 0
shutdown(34, SHUT_RDWR)                 = 0
close(34)                               = 0
munmap(0x2b3847e84000, 528384)          = 0
munmap(0x2b3850e1f000, 1052672)         = 0
mprotect(0x2b3842822000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842822000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282d000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b384282c000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b384282c000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842826000, 4096, PROT_READ|PROT_EXEC) = 0
mprotect(0x2b3842825000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC) = 0
mprotect(0x2b3842825000, 4096, PROT_READ|PROT_EXEC) = 0
munmap(0x2b383f5fc000, 315392)          = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
futex(0x7ffc05e48acc, FUTEX_WAIT_PRIVATE, 1, NULL) = 0
futex(0x7ffc05e48a98, FUTEX_WAKE_PRIVATE, 1) = 0
write(14, "\1\0\0\0\0\0\0\0", 8)        = 8
futex(0xf94ac0, FUTEX_WAKE_PRIVATE, 1)  = 1
munmap(0x2b383f456000, 4096)            = 0
munmap(0x2b383f455000, 4096)            = 0
munmap(0x2b3845dc9000, 4194304)         = 0
munmap(0x2b38461c9000, 4194304)         = 0
munmap(0x2b383f454000, 4096)            = 0
munmap(0x2b383f453000, 4096)            = 0
epoll_ctl(10, EPOLL_CTL_DEL, 14, 0x7ffc05e488e4) = 0
close(14)                               = 0
close(11)                               = 0
close(13)                               = 0
close(10)                               = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e486a0) = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e486a0) = 0
munmap(0x2b383f54b000, 184320)          = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48a70) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e488c0) = 0
madvise(0x1022000, 20480, MADV_DOFORK)  = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e488c0) = 0
madvise(0x2b3850a1e000, 4194304, MADV_DOFORK) = 0
munmap(0x2b3850a1d000, 4202496)         = 0
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48ab0) = -1 EPROTONOSUPPORT (Protocol not supported)
ioctl(16, RDMA_VERBS_IOCTL, 0x7ffc05e48900) = -1 EBUSY (Device or resource busy)
munmap(0x2b383f457000, 4096)            = 0
munmap(0x2b383f458000, 4096)            = 0
munmap(0x2b383f459000, 4096)            = 0
munmap(0x2b383f45a000, 4096)            = 0
munmap(0x2b383f45b000, 4096)            = 0
munmap(0x2b383f45c000, 4096)            = 0
munmap(0x2b383f45d000, 4096)            = 0
munmap(0x2b383f45e000, 4096)            = 0
munmap(0x2b383f45f000, 4096)            = 0
munmap(0x2b383f460000, 4096)            = 0
close(16)                               = 0
close(17)                               = 0
munmap(0x2b383f477000, 204800)          = 0
write(9, "\1\0\0\0\0\0\0\0", 8)         = 8
futex(0xf4c8f0, FUTEX_WAKE_PRIVATE, 1)  = 1
close(9)                                = 0
close(7)                                = 0
close(8)                                = 0
close(5)                                = 0
close(3)                                = 0
close(4)                                = 0
close(19)                               = 0
exit_group(0)                           = ?
+++ exited with 0 +++

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
       [not found]       ` <trinity-9bf94afe-e773-4366-b0b2-ae398de80664-1645651097363@3c-app-gmx-bs49>
@ 2022-02-23 21:23         ` Bertini, Denis Dr.
  2022-02-23 21:38           ` Harald Anlauf
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-23 21:23 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: fortran

Hi Harald,

I ran also the same with gfortran v11.2. together with singularity and

did not work as well.

Then i change the defintion of the buffer size in unix.c to default at 1 MiB

and it works.

What do you mean by vendor?

Do you think the problem could be linked to running fortran within singularity container?

Best

Denis

________________________________
From: Harald Anlauf <anlauf@gmx.de>
Sent: Wednesday, February 23, 2022 10:18:17 PM
To: Bertini, Denis Dr.
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

if I'm reading the strace output correctly, you're running the app
with gfortran-8 (too old) under singularity (virtualization software).

I'm afraid you need to contact your vendor or system folks.

Cheers,
Harald


Gesendet: Mittwoch, 23. Februar 2022 um 21:59 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Harald Anlauf" <anlauf@gmx.de>, "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Harald,



I do not know why the attachment was not sent with my email
I try again
Best
Denis


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 21:23         ` Bertini, Denis Dr.
@ 2022-02-23 21:38           ` Harald Anlauf
  2022-02-24  7:57             ` Bertini, Denis Dr.
  0 siblings, 1 reply; 20+ messages in thread
From: Harald Anlauf @ 2022-02-23 21:38 UTC (permalink / raw)
  To: Bertini, Denis Dr.; +Cc: fortran

Hi Denis,

if editing of unix.c works: is it possible that you either
misspelled the name of the environment variable, forgot to
export it, or if you are running under MPI, you need to make
sure that the variable is MPI-exported to all ranks?

Cheers,
Harald
 

Gesendet: Mittwoch, 23. Februar 2022 um 22:23 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Harald Anlauf" <anlauf@gmx.de>
Cc: "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Harald,
I ran also the same with gfortran v11.2. together with singularity and
did not work as well.
Then i change the defintion of the buffer size in unix.c to default at 1 MiB
and it works.
What do you mean by vendor?
Do you think the problem could be linked to running fortran within singularity container?
Best 
Denis
------------------------------------------------------------

From: Harald Anlauf <anlauf@gmx.de>
Sent: Wednesday, February 23, 2022 10:18:17 PM
To: Bertini, Denis Dr.
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)
 

Hi Denis,
 
if I'm reading the strace output correctly, you're running the app
with gfortran-8 (too old) under singularity (virtualization software).
 
I'm afraid you need to contact your vendor or system folks.
 
Cheers,
Harald
 
 

Gesendet: Mittwoch, 23. Februar 2022 um 21:59 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Harald Anlauf" <anlauf@gmx.de>, "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Harald,
 
I do not know why the attachment was not sent with my email
I try again
Best
Denis

 

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-23 21:38           ` Harald Anlauf
@ 2022-02-24  7:57             ` Bertini, Denis Dr.
  2022-02-24  8:13               ` Tobias Burnus
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-24  7:57 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: fortran

Hi Harald,


Good point.

I  export both environment variables

export GFORTRAN_UNFORMATTED_BUFFER_SIZE=1024000
export GFORTRAN_UNBUFFERED_ALL=n


directly in the script wich is used within the sbatch main submit script.

I added ( in case ) the export also in my .bashrc profile.

So i guess all ranks got the exported variables.


Additonnaly i ran interactively my test program without slurm on with just one MPI process on

one of the node in our cluster.

Tracing it then shows as well the fixed buffer size of 8kiB.

So i guess there is something not working with setting of the runtime variable, may be not from


io/unix.c


but from


runtime/environ.c


where this variables should be set ?


I am now testing with gcc11.2 that i modified and re-compile from source.

Will send then the output trace

Regards,

Denis


________________________________
From: Harald Anlauf <anlauf@gmx.de>
Sent: Wednesday, February 23, 2022 10:38:20 PM
To: Bertini, Denis Dr.
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

if editing of unix.c works: is it possible that you either
misspelled the name of the environment variable, forgot to
export it, or if you are running under MPI, you need to make
sure that the variable is MPI-exported to all ranks?

Cheers,
Harald


Gesendet: Mittwoch, 23. Februar 2022 um 22:23 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Harald Anlauf" <anlauf@gmx.de>
Cc: "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Harald,
I ran also the same with gfortran v11.2. together with singularity and
did not work as well.
Then i change the defintion of the buffer size in unix.c to default at 1 MiB
and it works.
What do you mean by vendor?
Do you think the problem could be linked to running fortran within singularity container?
Best
Denis
------------------------------------------------------------

From: Harald Anlauf <anlauf@gmx.de>
Sent: Wednesday, February 23, 2022 10:18:17 PM
To: Bertini, Denis Dr.
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)


Hi Denis,

if I'm reading the strace output correctly, you're running the app
with gfortran-8 (too old) under singularity (virtualization software).

I'm afraid you need to contact your vendor or system folks.

Cheers,
Harald



Gesendet: Mittwoch, 23. Februar 2022 um 21:59 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Harald Anlauf" <anlauf@gmx.de>, "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Harald,

I do not know why the attachment was not sent with my email
I try again
Best
Denis



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-24  7:57             ` Bertini, Denis Dr.
@ 2022-02-24  8:13               ` Tobias Burnus
  2022-02-24  8:15                 ` Bertini, Denis Dr.
  0 siblings, 1 reply; 20+ messages in thread
From: Tobias Burnus @ 2022-02-24  8:13 UTC (permalink / raw)
  To: Bertini, Denis Dr., Harald Anlauf; +Cc: fortran

Hi,

On 24.02.22 08:57, Bertini, Denis Dr. via Fortran wrote:
> Additonnaly i ran interactively my test program without slurm on with just one MPI process on

I think you either use Open MPI or MPICH. Can you try setting the environment variable
when invoking MPI by adding the -x or -env (-envlist, ...) option like in:

Open MPI
    mpirun -x GFORTRAN_UNFORMATTED_BUFFER_SIZE=1024000 ...

cf. https://www.open-mpi.org/doc/v1.8/man1/mpirun.1.php

or

MPICH:
    mpiexec -env GFORTRAN_UNFORMATTED_BUFFER_SIZE 1024000 ...

cf. https://www.mpich.org/static/docs/v3.1/www1/mpiexec.html

See linked man pages for details and additional environment-related options.

Tobias

-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-24  8:13               ` Tobias Burnus
@ 2022-02-24  8:15                 ` Bertini, Denis Dr.
  2022-02-24  8:20                   ` Tobias Burnus
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-24  8:15 UTC (permalink / raw)
  To: Tobias Burnus, Harald Anlauf; +Cc: fortran

Hi Tobias

I can try that but on our cluster we are bound to use

srun (slurm).

Do you know how to use the same functionality with srun

to set the environment variables.

Best

Denis

________________________________
From: Tobias Burnus <tobias@codesourcery.com>
Sent: Thursday, February 24, 2022 9:13:18 AM
To: Bertini, Denis Dr.; Harald Anlauf
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi,

On 24.02.22 08:57, Bertini, Denis Dr. via Fortran wrote:
> Additonnaly i ran interactively my test program without slurm on with just one MPI process on

I think you either use Open MPI or MPICH. Can you try setting the environment variable
when invoking MPI by adding the -x or -env (-envlist, ...) option like in:

Open MPI
    mpirun -x GFORTRAN_UNFORMATTED_BUFFER_SIZE=1024000 ...

cf. https://www.open-mpi.org/doc/v1.8/man1/mpirun.1.php

or

MPICH:
    mpiexec -env GFORTRAN_UNFORMATTED_BUFFER_SIZE 1024000 ...

cf. https://www.mpich.org/static/docs/v3.1/www1/mpiexec.html

See linked man pages for details and additional environment-related options.

Tobias

-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-24  8:15                 ` Bertini, Denis Dr.
@ 2022-02-24  8:20                   ` Tobias Burnus
  2022-02-25 17:28                     ` Bertini, Denis Dr.
  0 siblings, 1 reply; 20+ messages in thread
From: Tobias Burnus @ 2022-02-24  8:20 UTC (permalink / raw)
  To: Bertini, Denis Dr., Harald Anlauf; +Cc: fortran

Hi Denis,

On 24.02.22 09:15, Bertini, Denis Dr. via Fortran wrote:
> I can try that but on our cluster we are bound to use
>    srun (slurm).
> Do you know how to use the same functionality with srun
> to set the environment variables.

I didn't – but the manual did: srun --export=...

See: https://slurm.schedmd.com/srun.html#OPT_export_1

Good luck,

Tobias

-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-24  8:20                   ` Tobias Burnus
@ 2022-02-25 17:28                     ` Bertini, Denis Dr.
       [not found]                       ` <trinity-59001f50-077d-424e-a648-24645944dd0c-1645813711633@3c-app-gmx-bap28>
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-25 17:28 UTC (permalink / raw)
  To: Tobias Burnus, Harald Anlauf; +Cc: fortran

Hi Tobias,


So i use now in my submission script the option you were quoting i.e


> srun --export=ALL


which is actually the default as stated in the slurm documentation.

Setting the following environment to change the buffer size in both formatted/unformatted I/O 😎


export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
export GFORTRAN_UNBUFFERED_ALL=n

Does not work even on gcc/gfortran 11.2

If i set the same way some environment variables for openMPI,

it is working.

So this is not related to the forwarding of environment variables

with srun.


Are the variables set correct ?

Best,

Denis


________________________________
From: Tobias Burnus <tobias@codesourcery.com>
Sent: Thursday, February 24, 2022 9:20:26 AM
To: Bertini, Denis Dr.; Harald Anlauf
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

On 24.02.22 09:15, Bertini, Denis Dr. via Fortran wrote:
> I can try that but on our cluster we are bound to use
>    srun (slurm).
> Do you know how to use the same functionality with srun
> to set the environment variables.

I didn't – but the manual did: srun --export=...

See: https://slurm.schedmd.com/srun.html#OPT_export_1

Good luck,

Tobias

-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Re: Problem setting buffer size for gfortran ( v 11.2)
       [not found]                       ` <trinity-59001f50-077d-424e-a648-24645944dd0c-1645813711633@3c-app-gmx-bap28>
@ 2022-02-25 20:01                         ` Bertini, Denis Dr.
  2022-02-25 20:44                           ` Harald Anlauf
  0 siblings, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-25 20:01 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: Tobias Burnus, fortran

Hi Harald

I modified a little your test program to the following:

>>>>>>>>>>>>>>>>>>>>>>>>>>
program fio
  integer       :: stat
  character(80) :: s
  integer, parameter                :: nx = 256
  integer, parameter                :: ny = 256
  integer, parameter                :: nz = 256
  integer                :: i, j, k, l
  double precision   :: data(nx,ny,nz)

  call get_environment_variable ("GFORTRAN_FORMATTED_BUFFER_SIZE", s, status=stat)
  if (stat == 0) then
     print *, "GFORTRAN_FORMATTED_BUFFER_SIZE=",trim(s)
  else
     print *, "GFORTRAN_FORMATTED_BUFFER_SIZE not set"
  end if


     ! reset array
     data(:,:,:) = -1

     ! fill dummy data
     do i = 1, nx
        do j = 1, ny
           do k = 1, nz
              data(i,j,k) = (i+j+k) * 0.1
           end do
        end do
     end do



  open(10,file="bigfile", status="new", action="write", form='unformatted', access='stream')
  write(10) data(1:nx, 1:ny, 1:nz)
  close(10)
end program fio

>>>>>>>>>>>>>>>>>>>>>>>>


Now i set the env. variable to the following values:


export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
export GFORTRAN_UNBUFFERED_ALL=n

From the output log  indeed  i got the correct env. variable as i set:


GFORTRAN_FORMATTED_BUFFER_SIZE=10000


But from strace output i got always


>>>>>>>>>>>>>>>>>>>>>>

write(3, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8192) = 8192
write(3, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8192) = 8192
write(3, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8192) = 8192
write(3, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8192) = 8192
write(3, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8192) = 8192
write(3, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8192) = 8192
.....
>>>>>>>>>>>>>>>>>>
Showing the fixed that still a  8kiB buffer size is effectively ude in I/O...

Best
Denis
























________________________________
From: Harald Anlauf <anlauf@gmx.de>
Sent: Friday, February 25, 2022 7:28:31 PM
To: Bertini, Denis Dr.
Cc: Tobias Burnus; fortran@gcc.gnu.org
Subject: Aw: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

I and verified it works here on our Lustre with gfortran-10.3.0.
You could use:

integer       :: stat
character(80) :: s
call get_environment_variable ("GFORTRAN_FORMATTED_BUFFER_SIZE", s, status=stat)
if (stat == 0) then
   print *, "GFORTRAN_FORMATTED_BUFFER_SIZE=",trim(s)
else
   print *, "GFORTRAN_FORMATTED_BUFFER_SIZE not set"
end if
open(10,file="bigfile")
write(10,*) "data"
close(10)
end

to verify that the environment variable is set for a process/rank.
If that doesn't help, I'd suggest that it is possibly not a gfortran issue.

Cheers,
Harald


Gesendet: Freitag, 25. Februar 2022 um 18:28 Uhr
Von: "Bertini, Denis Dr." <D.Bertini@gsi.de>
An: "Tobias Burnus" <tobias@codesourcery.com>, "Harald Anlauf" <anlauf@gmx.de>
Cc: "fortran@gcc.gnu.org" <fortran@gcc.gnu.org>
Betreff: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Tobias,



So i use now in my submission script the option you were quoting i.e



> srun --export=ALL



which is actually the default as stated in the slurm documentation.

Setting the following environment to change the buffer size in both formatted/unformatted I/O 😎





export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
export GFORTRAN_UNBUFFERED_ALL=n

Does not work even on gcc/gfortran 11.2



If i set the same way some environment variables for openMPI,

it is working.

So this is not related to the forwarding of environment variables

with srun.



Are the variables set correct ?

Best,

Denis



________________________________
From: Tobias Burnus <tobias@codesourcery.com>
Sent: Thursday, February 24, 2022 9:20:26 AM
To: Bertini, Denis Dr.; Harald Anlauf
Cc: fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

On 24.02.22 09:15, Bertini, Denis Dr. via Fortran wrote:
> I can try that but on our cluster we are bound to use
>    srun (slurm).
> Do you know how to use the same functionality with srun
> to set the environment variables.

I didn't – but the manual did: srun --export=...

See: https://slurm.schedmd.com/srun.html#OPT_export_1

Good luck,

Tobias

-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-25 20:01                         ` Bertini, Denis Dr.
@ 2022-02-25 20:44                           ` Harald Anlauf
  2022-02-25 20:44                             ` Harald Anlauf
  2022-02-25 20:53                             ` Bertini, Denis Dr.
  0 siblings, 2 replies; 20+ messages in thread
From: Harald Anlauf @ 2022-02-25 20:44 UTC (permalink / raw)
  To: fortran; +Cc: Tobias Burnus, fortran

Hi Denis,

> export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_UNBUFFERED_ALL=n
> 
>  From the output log  indeed  i got the correct env. variable as i set:
> 
> 
> GFORTRAN_FORMATTED_BUFFER_SIZE=10000
> 
> 
> But from strace output i got always
> 
> 
>>>>>>>>>>>>>>>>>>>>>>>
> 
> write(3, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8192) = 8192
> write(3, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8192) = 8192
> write(3, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8192) = 8192
> write(3, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8192) = 8192
> write(3, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8192) = 8192
> write(3, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8192) = 8192
> .....
>>>>>>>>>>>>>>>>>>>
> Showing the fixed that still a  8kiB buffer size is effectively ude in I/O...

did you ever think of trying other values than 10000?

On my Linux laptop, buffering is done in multiples of 2k.
If I set GFORTRAN_UNFORMATTED_BUFFER_SIZE=14000, I get writes in
sizes of 12288.  Which is likely more efficient than asking for
exactly 14000.

Cheers,
Harald


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-25 20:44                           ` Harald Anlauf
@ 2022-02-25 20:44                             ` Harald Anlauf
  2022-02-25 20:53                             ` Bertini, Denis Dr.
  1 sibling, 0 replies; 20+ messages in thread
From: Harald Anlauf @ 2022-02-25 20:44 UTC (permalink / raw)
  To: Bertini, Denis Dr.; +Cc: Tobias Burnus, fortran

Hi Denis,

> export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_UNBUFFERED_ALL=n
>
>  From the output log  indeed  i got the correct env. variable as i set:
>
>
> GFORTRAN_FORMATTED_BUFFER_SIZE=10000
>
>
> But from strace output i got always
>
>
>>>>>>>>>>>>>>>>>>>>>>>
>
> write(3, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8192) = 8192
> write(3, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8192) = 8192
> write(3, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8192) = 8192
> write(3, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8192) = 8192
> write(3, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8192) = 8192
> write(3, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8192) = 8192
> .....
>>>>>>>>>>>>>>>>>>>
> Showing the fixed that still a  8kiB buffer size is effectively ude in I/O...

did you ever think of trying other values than 10000?

On my Linux laptop, buffering is done in multiples of 2k.
If I set GFORTRAN_UNFORMATTED_BUFFER_SIZE=14000, I get writes in
sizes of 12288.  Which is likely more efficient than asking for
exactly 14000.

Cheers,
Harald

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-25 20:44                           ` Harald Anlauf
  2022-02-25 20:44                             ` Harald Anlauf
@ 2022-02-25 20:53                             ` Bertini, Denis Dr.
  2022-02-26  9:20                               ` Thomas Koenig
  1 sibling, 1 reply; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-25 20:53 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: Tobias Burnus, fortran

Hi Harald,

Yes i tried other values.

It seems that the value set in the foreseen environment variable is just

ignored.

And always a buffer size of 8kiB is used, which is the default values

for formatted I/O harcoded in libgfortran.

The only way to change this value is editing and recompiling the libgfortran.

Best.

Denis


________________________________
From: Harald Anlauf <anlauf@gmx.de>
Sent: Friday, February 25, 2022 9:44:53 PM
To: Bertini, Denis Dr.
Cc: Tobias Burnus; fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

Hi Denis,

> export GFORTRAN_UNFORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_FORMATTED_BUFFER_SIZE=10000
> export GFORTRAN_UNBUFFERED_ALL=n
>
>  From the output log  indeed  i got the correct env. variable as i set:
>
>
> GFORTRAN_FORMATTED_BUFFER_SIZE=10000
>
>
> But from strace output i got always
>
>
>>>>>>>>>>>>>>>>>>>>>>>
>
> write(3, "\0\0\0\0\0\0\10@\0\0\0\340\314\314\10@\0\0\0\240\231\231\t@\0\0\0`ff\n@"..., 8192) = 8192
> write(3, "\0\0\0@33\v@\0\0\0\0\0\0\f@\0\0\0\340\314\314\f@\0\0\0\240\231\231\r@"..., 8192) = 8192
> write(3, "\0\0\0`ff\16@\0\0\0@33\17@\0\0\0\0\0\0\20@\0\0\0`ff\20@"..., 8192) = 8192
> write(3, "\0\0\0\340\314\314\20@\0\0\0@33\21@\0\0\0\240\231\231\21@\0\0\0\0\0\0\22@"..., 8192) = 8192
> write(3, "\0\0\0`ff\22@\0\0\0\340\314\314\22@\0\0\0@33\23@\0\0\0\240\231\231\23@"..., 8192) = 8192
> write(3, "\0\0\0\0\0\0\24@\0\0\0`ff\24@\0\0\0\340\314\314\24@\0\0\0@33\25@"..., 8192) = 8192
> .....
>>>>>>>>>>>>>>>>>>>
> Showing the fixed that still a  8kiB buffer size is effectively ude in I/O...

did you ever think of trying other values than 10000?

On my Linux laptop, buffering is done in multiples of 2k.
If I set GFORTRAN_UNFORMATTED_BUFFER_SIZE=14000, I get writes in
sizes of 12288.  Which is likely more efficient than asking for
exactly 14000.

Cheers,
Harald

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-25 20:53                             ` Bertini, Denis Dr.
@ 2022-02-26  9:20                               ` Thomas Koenig
  2022-02-26 15:37                                 ` Bertini, Denis Dr.
  0 siblings, 1 reply; 20+ messages in thread
From: Thomas Koenig @ 2022-02-26  9:20 UTC (permalink / raw)
  To: Bertini, Denis Dr., Harald Anlauf; +Cc: Tobias Burnus, fortran

On 25.02.22 21:53, Bertini, Denis Dr. via Fortran wrote:
> It seems that the value set in the foreseen environment variable is just
> ignored.
> And always a buffer size of 8kiB is used, which is the default values
> for formatted I/O harcoded in libgfortran.
> The only way to change this value is editing and recompiling the libgfortran.

This is really strange, I also cannot reproduce this.

With the Ubuntu-supplied gfortran 9.3.0 I get (just setting a few
semi-random numbers for the unformatted buffer size).

$ cat write.f90
program main
   implicit none
   integer, parameter :: n=100
   integer, dimension(n) :: x
   integer :: i
   x = [(i,i=1,n)]
   open (10,file="tst.dat",form="unformatted",action="write")
   do i=1,1000
     write (10) x
   end do
end program main
$ gfortran write.f90
$ strace -e write ./a.out
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
408) = 408
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
65688) = 65688
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
13464) = 13464
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=200000 strace -e write ./a.out
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
408) = 408
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
100368) = 100368
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
100368) = 100368
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
100368) = 100368
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
100368) = 100368
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
6120) = 6120
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=210000 strace -e write ./a.out
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
408) = 408
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
105264) = 105264
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
105264) = 105264
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
105264) = 105264
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
91800) = 91800
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=2100000 strace -e write ./a.out
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
408) = 408
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
407592) = 407592
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=21000000 strace -e write ./a.out
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
408) = 408
write(3, 
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 
407592) = 407592

^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: Problem setting buffer size for gfortran ( v 11.2)
  2022-02-26  9:20                               ` Thomas Koenig
@ 2022-02-26 15:37                                 ` Bertini, Denis Dr.
  0 siblings, 0 replies; 20+ messages in thread
From: Bertini, Denis Dr. @ 2022-02-26 15:37 UTC (permalink / raw)
  To: Thomas Koenig, Harald Anlauf; +Cc: Tobias Burnus, fortran

Hi Thomas,

OK so i took your example ( exact copy) and compile it

with gfortran 11.2.

Then without setting the environment variable:

export GFORTRAN_UNFORMATTED_BUFFER_SIZE=200000
i got
dbertini@lxbk0596:/lustre/rz/dbertini/fio > strace -e write ./fio
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 408) = 408
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 100368) = 100368
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 100368) = 100368
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 100368) = 100368
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 100368) = 100368
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 6120) = 6120
+++ exited with 0 +++

setting for example
dbertini@lxbk0596:/lustre/rz/dbertini/fio > export GFORTRAN_UNFORMATTED_BUFFER_SIZE=400000
dbertini@lxbk0596:/lustre/rz/dbertini/fio > strace -e write ./fio
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 408) = 408
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 200328) = 200328
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 200328) = 200328
write(3, "\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"..., 6936) = 6936
+++ exited with 0 +++

So it seems to work right?
But do you understand the strace output in both cases ?
What means the data buffer distribution?
Is there some data alignment alforithm working in the background here?
Cheers.
Denis






________________________________
From: Thomas Koenig <tkoenig@netcologne.de>
Sent: Saturday, February 26, 2022 10:20:25 AM
To: Bertini, Denis Dr.; Harald Anlauf
Cc: Tobias Burnus; fortran@gcc.gnu.org
Subject: Re: Problem setting buffer size for gfortran ( v 11.2)

On 25.02.22 21:53, Bertini, Denis Dr. via Fortran wrote:
> It seems that the value set in the foreseen environment variable is just
> ignored.
> And always a buffer size of 8kiB is used, which is the default values
> for formatted I/O harcoded in libgfortran.
> The only way to change this value is editing and recompiling the libgfortran.

This is really strange, I also cannot reproduce this.

With the Ubuntu-supplied gfortran 9.3.0 I get (just setting a few
semi-random numbers for the unformatted buffer size).

$ cat write.f90
program main
   implicit none
   integer, parameter :: n=100
   integer, dimension(n) :: x
   integer :: i
   x = [(i,i=1,n)]
   open (10,file="tst.dat",form="unformatted",action="write")
   do i=1,1000
     write (10) x
   end do
end program main
$ gfortran write.f90
$ strace -e write ./a.out
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
408) = 408
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
65688) = 65688
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
13464) = 13464
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=200000 strace -e write ./a.out
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
408) = 408
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
100368) = 100368
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
100368) = 100368
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
100368) = 100368
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
100368) = 100368
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
6120) = 6120
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=210000 strace -e write ./a.out
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
408) = 408
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
105264) = 105264
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
105264) = 105264
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
105264) = 105264
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
91800) = 91800
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=2100000 strace -e write ./a.out
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
408) = 408
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
407592) = 407592
+++ exited with 0 +++
$ GFORTRAN_UNFORMATTED_BUFFER_SIZE=21000000 strace -e write ./a.out
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
408) = 408
write(3,
"\220\1\0\0\1\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\5\0\0\0\6\0\0\0\7\0\0\0"...,
407592) = 407592

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2022-02-26 15:37 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-23 16:10 Problem setting buffer size for gfortran ( v 11.2) Bertini, Denis Dr.
2022-02-23 18:26 ` Harald Anlauf
2022-02-23 18:26   ` Harald Anlauf
2022-02-23 20:28   ` Bertini, Denis Dr.
2022-02-23 20:57     ` Harald Anlauf
2022-02-23 20:57       ` Harald Anlauf
2022-02-23 20:59     ` Bertini, Denis Dr.
     [not found]       ` <trinity-9bf94afe-e773-4366-b0b2-ae398de80664-1645651097363@3c-app-gmx-bs49>
2022-02-23 21:23         ` Bertini, Denis Dr.
2022-02-23 21:38           ` Harald Anlauf
2022-02-24  7:57             ` Bertini, Denis Dr.
2022-02-24  8:13               ` Tobias Burnus
2022-02-24  8:15                 ` Bertini, Denis Dr.
2022-02-24  8:20                   ` Tobias Burnus
2022-02-25 17:28                     ` Bertini, Denis Dr.
     [not found]                       ` <trinity-59001f50-077d-424e-a648-24645944dd0c-1645813711633@3c-app-gmx-bap28>
2022-02-25 20:01                         ` Bertini, Denis Dr.
2022-02-25 20:44                           ` Harald Anlauf
2022-02-25 20:44                             ` Harald Anlauf
2022-02-25 20:53                             ` Bertini, Denis Dr.
2022-02-26  9:20                               ` Thomas Koenig
2022-02-26 15:37                                 ` Bertini, Denis Dr.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).