[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241028213541.1529-1-ouster@cs.stanford.edu>
Date: Mon, 28 Oct 2024 14:35:27 -0700
From: John Ousterhout <ouster@...stanford.edu>
To: netdev@...r.kernel.org
Cc: John Ousterhout <ouster@...stanford.edu>
Subject: [PATCH net-next 00/12] Begin upstreaming Homa transport protocol
This patch series begins the process of upstreaming the Homa transport
protocol. Homa is an alternative to TCP for use in datacenter
environments. It provides 10-100x reductions in tail latency for short
messages relative to TCP. Its benefits are greatest for mixed workloads
containing both short and long messages running under high network loads.
Homa is not API-compatible with TCP: it is connectionless and message-
oriented (but still reliable and flow-controlled). Homa's new API not
only contributes to its performance gains, but it also eliminates the
massive amount of connection state required by TCP for highly connected
datacenter workloads.
For more details on Homa, please consult the Homa Wiki:
https://homa-transport.atlassian.net/wiki/spaces/HOMA/overview
The Wiki has pointers to two papers on Homa (one of which describes
this implementation) as well as man pages describing the application
API and other information.
There is also a GitHub repo for Homa:
https://github.com/PlatformLab/HomaModule
The GitHub repo contains a superset of this patch set, including:
* Additional source code that will eventually be upstreamed
* Extensive unit tests (which will also be upstreamed eventually)
* Application-level library functions (which need to go in glibc?)
* Man pages (which need to be upstreamed as well)
* Benchmarking and instrumentation code
For this patch series, Homa has been stripped down to the bare minimum
functionality capable of actually executing remote procedure calls. (about
8000 lines of source code, compared to 15000 in the complete Homa). The
remaining code will be upstreamed in smaller batches once this patch
series has been accepted. Note: the code in this patch series is
functional but its performance is not very interesting (about the same
as TCP).
The patch series is arranged to introduce the major functional components
of Homa. Until the last patch has been applied, the code is inert (it
will not be compiled).
Note: this implementation of Homa supports both IPv4 and IPv6.
John Ousterhout (12):
net: homa: define user-visible API for Homa
net: homa: define Homa packet formats
net: homa: create shared Homa header files
net: homa: create homa_pool.h and homa_pool.c
net: homa: create homa_rpc.h and homa_rpc.c
net: homa: create homa_peer.h and homa_peer.c
net: homa: create homa_sock.h and homa_sock.c
net: homa: create homa_incoming.c
net: homa: create homa_outgoing.c
net: homa: create homa_timer.c
net: homa: create homa_plumbing.c homa_utils.c
net: homa: create Makefile and Kconfig
MAINTAINERS | 7 +
include/uapi/linux/homa.h | 199 +++++++
net/Kconfig | 1 +
net/Makefile | 1 +
net/homa/Kconfig | 17 +
net/homa/Makefile | 14 +
net/homa/homa_impl.h | 801 +++++++++++++++++++++++++++
net/homa/homa_incoming.c | 1088 +++++++++++++++++++++++++++++++++++++
net/homa/homa_outgoing.c | 857 +++++++++++++++++++++++++++++
net/homa/homa_peer.c | 314 +++++++++++
net/homa/homa_peer.h | 227 ++++++++
net/homa/homa_plumbing.c | 997 +++++++++++++++++++++++++++++++++
net/homa/homa_pool.c | 434 +++++++++++++++
net/homa/homa_pool.h | 152 ++++++
net/homa/homa_rpc.c | 489 +++++++++++++++++
net/homa/homa_rpc.h | 439 +++++++++++++++
net/homa/homa_sock.c | 329 +++++++++++
net/homa/homa_sock.h | 399 ++++++++++++++
net/homa/homa_stub.h | 80 +++
net/homa/homa_timer.c | 158 ++++++
net/homa/homa_utils.c | 138 +++++
net/homa/homa_wire.h | 378 +++++++++++++
22 files changed, 7519 insertions(+)
create mode 100644 include/uapi/linux/homa.h
create mode 100644 net/homa/Kconfig
create mode 100644 net/homa/Makefile
create mode 100644 net/homa/homa_impl.h
create mode 100644 net/homa/homa_incoming.c
create mode 100644 net/homa/homa_outgoing.c
create mode 100644 net/homa/homa_peer.c
create mode 100644 net/homa/homa_peer.h
create mode 100644 net/homa/homa_plumbing.c
create mode 100644 net/homa/homa_pool.c
create mode 100644 net/homa/homa_pool.h
create mode 100644 net/homa/homa_rpc.c
create mode 100644 net/homa/homa_rpc.h
create mode 100644 net/homa/homa_sock.c
create mode 100644 net/homa/homa_sock.h
create mode 100644 net/homa/homa_stub.h
create mode 100644 net/homa/homa_timer.c
create mode 100644 net/homa/homa_utils.c
create mode 100644 net/homa/homa_wire.h
--
2.34.1
Powered by blists - more mailing lists