Skip to content
Open
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
13 changes: 0 additions & 13 deletions man/homa.7
Original file line number Diff line number Diff line change
Expand Up @@ -204,19 +204,6 @@ system call can be used to send request and response messages; see
Homa's
.BR sendmsg (2)
man page for details.
In addition, Homa provides library functions
.BR homa_send ,
.BR homa_sendv ,
.BR homa_reply ,
and
.BR homa_replyv ,
which are layered on top of
.BR sendmsg .
See the man pages
.BR homa_send (3)
and
.BR homa_reply (3)
for details on these functions.
.SH RECEIVING MESSAGES
.PP
The
Expand Down
4 changes: 2 additions & 2 deletions util/cp_node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ void print_help(const char *name)
printf(" (defaults to <protocol>_<workload>)\n");
printf(" --first-port Lowest port number to use (default: 4000 for Homa,\n");
printf(" 5000 for TCP)\n");
printf(" --iovec Use homa_replyv instead of homa_reply\n");
printf(" --iovec Use iovecs for reply instead of a single buffer\n");
printf(" --ipv6 Use IPv6 instead of IPv4\n");
printf(" --pin All server threads will be restricted to run only\n"
" on the givevn core\n");
Expand Down Expand Up @@ -1129,7 +1129,7 @@ void homa_server::server(int thread_id, server_metrics *metrics)
homa_args.id = receiver.id();
result = sendmsg(fd, &msghdr, 0);
if (result < 0) {
log(NORMAL, "FATAL: homa_reply failed for server "
log(NORMAL, "FATAL: sendmsg failed for server "
"port %d: %s\n",
port, strerror(errno));
fatal();
Expand Down