File: hwlocality_advanced_io.3

package info (click to toggle)
hwloc-contrib 1.10.0-1
  • links: PTS, VCS
  • area: contrib
  • in suites: jessie, jessie-kfreebsd
  • size: 15,604 kB
  • ctags: 6,628
  • sloc: ansic: 34,014; sh: 12,810; xml: 8,466; makefile: 1,614; sed: 9; php: 8
file content (92 lines) | stat: -rw-r--r-- 3,621 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.TH "Finding I/O objects" 3 "Tue Oct 7 2014" "Version 1.10.0" "Hardware Locality (hwloc)" \" -*- nroff -*-
.ad l
.nh
.SH NAME
Finding I/O objects \- 
.SS "Functions"

.in +1c
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_non_io_ancestor_obj\fP (\fBhwloc_topology_t\fP topology, \fBhwloc_obj_t\fP ioobj)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_next_pcidev\fP (\fBhwloc_topology_t\fP topology, \fBhwloc_obj_t\fP prev)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_pcidev_by_busid\fP (\fBhwloc_topology_t\fP topology, unsigned domain, unsigned bus, unsigned dev, unsigned func)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_pcidev_by_busidstring\fP (\fBhwloc_topology_t\fP topology, const char *busid)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_next_osdev\fP (\fBhwloc_topology_t\fP topology, \fBhwloc_obj_t\fP prev)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_next_bridge\fP (\fBhwloc_topology_t\fP topology, \fBhwloc_obj_t\fP prev)"
.br
.ti -1c
.RI "static int \fBhwloc_bridge_covers_pcibus\fP (\fBhwloc_obj_t\fP bridge, unsigned domain, unsigned bus)"
.br
.ti -1c
.RI "static \fBhwloc_obj_t\fP \fBhwloc_get_hostbridge_by_pcibus\fP (\fBhwloc_topology_t\fP topology, unsigned domain, unsigned bus)"
.br
.in -1c
.SH "Detailed Description"
.PP 

.SH "Function Documentation"
.PP 
.SS "static int hwloc_bridge_covers_pcibus (\fBhwloc_obj_t\fPbridge, unsigneddomain, unsignedbus)\fC [inline]\fP, \fC [static]\fP"

.SS "static \fBhwloc_obj_t\fP hwloc_get_hostbridge_by_pcibus (\fBhwloc_topology_t\fPtopology, unsigneddomain, unsignedbus)\fC [inline]\fP, \fC [static]\fP"

.PP
Find the hostbridge that covers the given PCI bus\&. This is useful for finding the locality of a bus because it is the hostbridge parent cpuset\&. 
.SS "static \fBhwloc_obj_t\fP hwloc_get_next_bridge (\fBhwloc_topology_t\fPtopology, \fBhwloc_obj_t\fPprev)\fC [inline]\fP, \fC [static]\fP"

.PP
Get the next bridge in the system\&. 
.PP
\fBReturns:\fP
.RS 4
the first bridge if \fCprev\fP is \fCNULL\fP\&. 
.RE
.PP

.SS "static \fBhwloc_obj_t\fP hwloc_get_next_osdev (\fBhwloc_topology_t\fPtopology, \fBhwloc_obj_t\fPprev)\fC [inline]\fP, \fC [static]\fP"

.PP
Get the next OS device in the system\&. 
.PP
\fBReturns:\fP
.RS 4
the first OS device if \fCprev\fP is \fCNULL\fP\&. 
.RE
.PP

.SS "static \fBhwloc_obj_t\fP hwloc_get_next_pcidev (\fBhwloc_topology_t\fPtopology, \fBhwloc_obj_t\fPprev)\fC [inline]\fP, \fC [static]\fP"

.PP
Get the next PCI device in the system\&. 
.PP
\fBReturns:\fP
.RS 4
the first PCI device if \fCprev\fP is \fCNULL\fP\&. 
.RE
.PP

.SS "static \fBhwloc_obj_t\fP hwloc_get_non_io_ancestor_obj (\fBhwloc_topology_t\fPtopology, \fBhwloc_obj_t\fPioobj)\fC [inline]\fP, \fC [static]\fP"

.PP
Get the first non-I/O ancestor object\&. Given the I/O object \fCioobj\fP, find the smallest non-I/O ancestor object\&. This regular object may then be used for binding because its locality is the same as \fCioobj\fP\&. 
.SS "static \fBhwloc_obj_t\fP hwloc_get_pcidev_by_busid (\fBhwloc_topology_t\fPtopology, unsigneddomain, unsignedbus, unsigneddev, unsignedfunc)\fC [inline]\fP, \fC [static]\fP"

.PP
Find the PCI device object matching the PCI bus id given domain, bus device and function PCI bus id\&. 
.SS "static \fBhwloc_obj_t\fP hwloc_get_pcidev_by_busidstring (\fBhwloc_topology_t\fPtopology, const char *busid)\fC [inline]\fP, \fC [static]\fP"

.PP
Find the PCI device object matching the PCI bus id given as a string xxxx:yy:zz\&.t or yy:zz\&.t\&. 
.SH "Author"
.PP 
Generated automatically by Doxygen for Hardware Locality (hwloc) from the source code\&.