Skip to content

Commit ac10aa5

Browse files
ofiwg-botgithub-actions[bot]
authored andcommitted
Updated nroff-generated man pages
Signed-off-by: OFIWG Bot <[email protected]>
1 parent a83c97a commit ac10aa5

File tree

3 files changed

+41
-4
lines changed

3 files changed

+41
-4
lines changed

man/man3/fi_endpoint.3

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 2.9.2.1
22
.\"
3-
.TH "fi_endpoint" "3" "2023\-11\-03" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
3+
.TH "fi_endpoint" "3" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
44
.hy
55
.SH NAME
66
.PP
@@ -1800,7 +1800,7 @@ A resource domain was not bound to the endpoint or an attempt was made
18001800
to bind multiple domains.
18011801
.TP
18021802
\f[I]-FI_ENOCQ\f[R]
1803-
The endpoint has not been configured with necessary event queue.
1803+
The endpoint has not been configured with necessary completion queue.
18041804
.TP
18051805
\f[I]-FI_EOPBADSTATE\f[R]
18061806
The endpoint\[cq]s state does not permit the requested operation.

man/man3/fi_errno.3

+34-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 2.9.2.1
22
.\"
3-
.TH "fi_errno" "3" "2022\-12\-09" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
3+
.TH "fi_errno" "3" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
44
.hy
55
.SH NAME
66
.PP
@@ -57,12 +57,18 @@ No space left on device
5757
\f[I]FI_ENOSYS\f[R]
5858
Function not implemented
5959
.TP
60+
\f[I]FI_EWOULDBLOCK\f[R]
61+
Operation would block
62+
.TP
6063
\f[I]FI_ENOMSG\f[R]
6164
No message of desired type
6265
.TP
6366
\f[I]FI_ENODATA\f[R]
6467
No data available
6568
.TP
69+
\f[I]FI_EOVERFLOW\f[R]
70+
Value too large for defined data type
71+
.TP
6672
\f[I]FI_EMSGSIZE\f[R]
6773
Message too long
6874
.TP
@@ -90,6 +96,9 @@ Software caused connection abort
9096
\f[I]FI_ECONNRESET\f[R]
9197
Connection reset by peer
9298
.TP
99+
\f[I]FI_ENOBUFS\f[R]
100+
No buffer space available
101+
.TP
93102
\f[I]FI_EISCONN\f[R]
94103
Transport endpoint is already connected
95104
.TP
@@ -105,6 +114,9 @@ Operation timed out
105114
\f[I]FI_ECONNREFUSED\f[R]
106115
Connection refused
107116
.TP
117+
\f[I]FI_EHOSTDOWN\f[R]
118+
Host is down
119+
.TP
108120
\f[I]FI_EHOSTUNREACH\f[R]
109121
No route to host
110122
.TP
@@ -149,6 +161,27 @@ Invalid resource domain
149161
.TP
150162
\f[I]FI_ENOCQ\f[R]
151163
Missing or unavailable completion queue
164+
.TP
165+
\f[I]FI_ECRC\f[R]
166+
CRC error
167+
.TP
168+
\f[I]FI_ETRUNC\f[R]
169+
Truncation error
170+
.TP
171+
\f[I]FI_ENOKEY\f[R]
172+
Required key not available
173+
.TP
174+
\f[I]FI_ENOAV\f[R]
175+
Missing or unavailable address vector
176+
.TP
177+
\f[I]FI_EOVERRUN\f[R]
178+
Queue has been overrun
179+
.TP
180+
\f[I]FI_ENORX\f[R]
181+
Receiver not ready, no receive buffers available
182+
.TP
183+
\f[I]FI_ENOMR\f[R]
184+
Memory registration limit exceeded
152185
.SH SEE ALSO
153186
.PP
154187
\f[C]fabric\f[R](7)

man/man7/fi_setup.7

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Automatically generated by Pandoc 2.9.2.1
22
.\"
3-
.TH "fi_setup" "7" "2023\-01\-02" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
3+
.TH "fi_setup" "7" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
44
.hy
55
.SH NAME
66
.PP
@@ -1118,8 +1118,12 @@ struct fi_cq_err_entry {
11181118
/* Sample error handling */
11191119
struct fi_cq_msg_entry entry;
11201120
struct fi_cq_err_entry err_entry;
1121+
char err_data[256];
11211122
int ret;
11221123

1124+
err_entry.err_data = err_data;
1125+
err_entry.err_data_size = 256;
1126+
11231127
ret = fi_cq_read(cq, &entry, 1);
11241128
if (ret == -FI_EAVAIL)
11251129
ret = fi_cq_readerr(cq, &err_entry, 0);

0 commit comments

Comments
 (0)