From: John Ousterhout <ouster@cs.stanford.edu>
To: netdev@vger.kernel.org
Cc: pabeni@redhat.com, edumazet@google.com, horms@kernel.org,
kuba@kernel.org, John Ousterhout <ouster@cs.stanford.edu>
Subject: [PATCH net-next v12 11/15] net: homa: create homa_utils.c
Date: Thu, 24 Jul 2025 11:40:44 -0700 [thread overview]
Message-ID: <20250724184050.3130-12-ouster@cs.stanford.edu> (raw)
In-Reply-To: <20250724184050.3130-1-ouster@cs.stanford.edu>
This file contains functions for constructing and destructing
homa structs.
Signed-off-by: John Ousterhout <ouster@cs.stanford.edu>
---
Changes for v11:
* Move link_mbps variable from struct homa_pacer back to struct homa.
Changes for v10:
* Remove log messages after alloc errors
Changes for v9:
* Add support for homa_net objects
* Use new homa_clock abstraction layer
* Various name improvements (e.g. use "alloc" instead of "new" for functions
that allocate memory)
Changes for v8:
* Accommodate homa_pacer refactoring
Changes for v7:
* Make Homa a pernet subsystem
* Add support for tx memory accounting
* Remove "lock_slow" functions, which don't add functionality in this
patch series
* Use u64 and __u64 properly
---
net/homa/homa_impl.h | 6 +++
net/homa/homa_utils.c | 122 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 128 insertions(+)
create mode 100644 net/homa/homa_utils.c
diff --git a/net/homa/homa_impl.h b/net/homa/homa_impl.h
index a5543e9c64c2..c97bd601e240 100644
--- a/net/homa/homa_impl.h
+++ b/net/homa/homa_impl.h
@@ -413,12 +413,18 @@ static inline bool homa_make_header_avl(struct sk_buff *skb)
extern unsigned int homa_net_id;
+void homa_destroy(struct homa *homa);
int homa_fill_data_interleaved(struct homa_rpc *rpc,
struct sk_buff *skb, struct iov_iter *iter);
+int homa_init(struct homa *homa);
int homa_message_out_fill(struct homa_rpc *rpc,
struct iov_iter *iter, int xmit);
void homa_message_out_init(struct homa_rpc *rpc, int length);
+void homa_net_destroy(struct homa_net *hnet);
+int homa_net_init(struct homa_net *hnet, struct net *net,
+ struct homa *homa);
void homa_rpc_handoff(struct homa_rpc *rpc);
+void homa_spin(int ns);
struct sk_buff *homa_tx_data_pkt_alloc(struct homa_rpc *rpc,
struct iov_iter *iter, int offset,
int length, int max_seg_data);
diff --git a/net/homa/homa_utils.c b/net/homa/homa_utils.c
new file mode 100644
index 000000000000..6f4a714ca7f7
--- /dev/null
+++ b/net/homa/homa_utils.c
@@ -0,0 +1,122 @@
+// SPDX-License-Identifier: BSD-2-Clause
+
+/* This file contains miscellaneous utility functions for Homa, such
+ * as initializing and destroying homa structs.
+ */
+
+#include "homa_impl.h"
+#include "homa_pacer.h"
+#include "homa_peer.h"
+#include "homa_rpc.h"
+#include "homa_stub.h"
+
+/**
+ * homa_init() - Constructor for homa objects.
+ * @homa: Object to initialize.
+ *
+ * Return: 0 on success, or a negative errno if there was an error. Even
+ * if an error occurs, it is safe (and necessary) to call
+ * homa_destroy at some point.
+ */
+int homa_init(struct homa *homa)
+{
+ int err;
+
+ memset(homa, 0, sizeof(*homa));
+
+ atomic64_set(&homa->next_outgoing_id, 2);
+ homa->link_mbps = 25000;
+ homa->pacer = homa_pacer_alloc(homa);
+ if (IS_ERR(homa->pacer)) {
+ err = PTR_ERR(homa->pacer);
+ homa->pacer = NULL;
+ return err;
+ }
+ homa->peertab = homa_peer_alloc_peertab();
+ if (IS_ERR(homa->peertab)) {
+ err = PTR_ERR(homa->peertab);
+ homa->peertab = NULL;
+ return err;
+ }
+ homa->socktab = kmalloc(sizeof(*homa->socktab), GFP_KERNEL);
+ if (!homa->socktab)
+ return -ENOMEM;
+ homa_socktab_init(homa->socktab);
+
+ /* Wild guesses to initialize configuration values... */
+ homa->resend_ticks = 5;
+ homa->resend_interval = 5;
+ homa->timeout_ticks = 100;
+ homa->timeout_resends = 5;
+ homa->request_ack_ticks = 2;
+ homa->reap_limit = 10;
+ homa->dead_buffs_limit = 5000;
+ homa->max_gso_size = 10000;
+ homa->wmem_max = 100000000;
+ homa->bpage_lease_usecs = 10000;
+ return 0;
+}
+
+/**
+ * homa_destroy() - Destructor for homa objects.
+ * @homa: Object to destroy. It is safe if this object has already
+ * been previously destroyed.
+ */
+void homa_destroy(struct homa *homa)
+{
+ /* The order of the following cleanups matters! */
+ if (homa->socktab) {
+ homa_socktab_destroy(homa->socktab, NULL);
+ kfree(homa->socktab);
+ homa->socktab = NULL;
+ }
+ if (homa->pacer) {
+ homa_pacer_free(homa->pacer);
+ homa->pacer = NULL;
+ }
+ if (homa->peertab) {
+ homa_peer_free_peertab(homa->peertab);
+ homa->peertab = NULL;
+ }
+}
+
+/**
+ * homa_net_init() - Initialize a new struct homa_net as a per-net subsystem.
+ * @hnet: Struct to initialzie.
+ * @net: The network namespace the struct will be associated with.
+ * @homa: The main Homa data structure to use for the net.
+ * Return: 0 on success, otherwise a negative errno.
+ */
+int homa_net_init(struct homa_net *hnet, struct net *net, struct homa *homa)
+{
+ memset(hnet, 0, sizeof(*hnet));
+ hnet->net = net;
+ hnet->homa = homa;
+ hnet->prev_default_port = HOMA_MIN_DEFAULT_PORT - 1;
+ return 0;
+}
+
+/**
+ * homa_net_destroy() - Release any resources associated with a homa_net.
+ * @hnet: Object to destroy; must not be used again after this function
+ * returns.
+ */
+void homa_net_destroy(struct homa_net *hnet)
+{
+ homa_socktab_destroy(hnet->homa->socktab, hnet);
+ homa_peer_free_net(hnet);
+}
+
+/**
+ * homa_spin() - Delay (without sleeping) for a given time interval.
+ * @ns: How long to delay (in nanoseconds)
+ */
+void homa_spin(int ns)
+{
+ u64 end;
+
+ end = homa_clock() + homa_ns_to_cycles(ns);
+ while (homa_clock() < end)
+ /* Empty loop body.*/
+ ;
+}
--
2.43.0
next prev parent reply other threads:[~2025-07-24 18:41 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-24 18:40 [PATCH net-next v12 00/15] Begin upstreaming Homa transport protocol John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 01/15] net: homa: define user-visible API for Homa John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 02/15] net: homa: create homa_wire.h John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 03/15] net: homa: create shared Homa header files John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 04/15] net: homa: create homa_pool.h and homa_pool.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 05/15] net: homa: create homa_peer.h and homa_peer.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 06/15] net: homa: create homa_sock.h and homa_sock.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 07/15] net: homa: create homa_interest.h and homa_interest.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 08/15] net: homa: create homa_pacer.h and homa_pacer.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 09/15] net: homa: create homa_rpc.h and homa_rpc.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 10/15] net: homa: create homa_outgoing.c John Ousterhout
2025-07-24 18:40 ` John Ousterhout [this message]
2025-07-24 18:40 ` [PATCH net-next v12 12/15] net: homa: create homa_incoming.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 13/15] net: homa: create homa_timer.c John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 14/15] net: homa: create homa_plumbing.c John Ousterhout
2025-07-24 19:38 ` Kuniyuki Iwashima
2025-07-25 16:11 ` John Ousterhout
2025-07-24 18:40 ` [PATCH net-next v12 15/15] net: homa: create Makefile and Kconfig John Ousterhout
2025-07-26 22:41 ` kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250724184050.3130-12-ouster@cs.stanford.edu \
--to=ouster@cs.stanford.edu \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).