Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nroff-generated man pages #9933

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions man/man3/fi_endpoint.3
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "fi_endpoint" "3" "2023\-11\-03" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.TH "fi_endpoint" "3" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.hy
.SH NAME
.PP
Expand Down Expand Up @@ -1800,7 +1800,7 @@ A resource domain was not bound to the endpoint or an attempt was made
to bind multiple domains.
.TP
\f[I]-FI_ENOCQ\f[R]
The endpoint has not been configured with necessary event queue.
The endpoint has not been configured with necessary completion queue.
.TP
\f[I]-FI_EOPBADSTATE\f[R]
The endpoint\[cq]s state does not permit the requested operation.
Expand Down
35 changes: 34 additions & 1 deletion man/man3/fi_errno.3
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "fi_errno" "3" "2022\-12\-09" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.TH "fi_errno" "3" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.hy
.SH NAME
.PP
Expand Down Expand Up @@ -57,12 +57,18 @@ No space left on device
\f[I]FI_ENOSYS\f[R]
Function not implemented
.TP
\f[I]FI_EWOULDBLOCK\f[R]
Operation would block
.TP
\f[I]FI_ENOMSG\f[R]
No message of desired type
.TP
\f[I]FI_ENODATA\f[R]
No data available
.TP
\f[I]FI_EOVERFLOW\f[R]
Value too large for defined data type
.TP
\f[I]FI_EMSGSIZE\f[R]
Message too long
.TP
Expand Down Expand Up @@ -90,6 +96,9 @@ Software caused connection abort
\f[I]FI_ECONNRESET\f[R]
Connection reset by peer
.TP
\f[I]FI_ENOBUFS\f[R]
No buffer space available
.TP
\f[I]FI_EISCONN\f[R]
Transport endpoint is already connected
.TP
Expand All @@ -105,6 +114,9 @@ Operation timed out
\f[I]FI_ECONNREFUSED\f[R]
Connection refused
.TP
\f[I]FI_EHOSTDOWN\f[R]
Host is down
.TP
\f[I]FI_EHOSTUNREACH\f[R]
No route to host
.TP
Expand Down Expand Up @@ -149,6 +161,27 @@ Invalid resource domain
.TP
\f[I]FI_ENOCQ\f[R]
Missing or unavailable completion queue
.TP
\f[I]FI_ECRC\f[R]
CRC error
.TP
\f[I]FI_ETRUNC\f[R]
Truncation error
.TP
\f[I]FI_ENOKEY\f[R]
Required key not available
.TP
\f[I]FI_ENOAV\f[R]
Missing or unavailable address vector
.TP
\f[I]FI_EOVERRUN\f[R]
Queue has been overrun
.TP
\f[I]FI_ENORX\f[R]
Receiver not ready, no receive buffers available
.TP
\f[I]FI_ENOMR\f[R]
Memory registration limit exceeded
.SH SEE ALSO
.PP
\f[C]fabric\f[R](7)
Expand Down
6 changes: 5 additions & 1 deletion man/man7/fi_setup.7
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 2.9.2.1
.\"
.TH "fi_setup" "7" "2023\-01\-02" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.TH "fi_setup" "7" "2024\-03\-21" "Libfabric Programmer\[cq]s Manual" "#VERSION#"
.hy
.SH NAME
.PP
Expand Down Expand Up @@ -1118,8 +1118,12 @@ struct fi_cq_err_entry {
/* Sample error handling */
struct fi_cq_msg_entry entry;
struct fi_cq_err_entry err_entry;
char err_data[256];
int ret;

err_entry.err_data = err_data;
err_entry.err_data_size = 256;

ret = fi_cq_read(cq, &entry, 1);
if (ret == -FI_EAVAIL)
ret = fi_cq_readerr(cq, &err_entry, 0);
Expand Down
Loading