diff --git a/man/homa.7 b/man/homa.7 index 6c46d7a..a267cca 100644 --- a/man/homa.7 +++ b/man/homa.7 @@ -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 diff --git a/util/cp_node.cc b/util/cp_node.cc index 42c511f..2033f12 100644 --- a/util/cp_node.cc +++ b/util/cp_node.cc @@ -334,7 +334,7 @@ void print_help(const char *name) printf(" (defaults to _)\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"); @@ -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();