From efc457e1bc3af3880ad3a562bcf963c7ccf4b38c Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Thu, 19 May 2016 16:28:05 +0000 Subject: [PATCH] sys/net: more spelling. --- sys/net/mp_ring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/net/mp_ring.c b/sys/net/mp_ring.c index 1e17964089f5..3ff272c719ab 100644 --- a/sys/net/mp_ring.c +++ b/sys/net/mp_ring.c @@ -358,7 +358,7 @@ ifmp_ring_enqueue(struct ifmp_ring *r, void **items, int n, int budget) /* * Wait for other producers who got in ahead of us to enqueue their * items, one producer at a time. It is our turn when the ring's - * pidx_tail reaches the begining of our reservation (pidx_start). + * pidx_tail reaches the beginning of our reservation (pidx_start). */ while (ns.pidx_tail != pidx_start) { cpu_spinwait(); @@ -432,7 +432,7 @@ ifmp_ring_enqueue(struct ifmp_ring *r, void **items, int n, int budget) /* * Wait for other producers who got in ahead of us to enqueue their * items, one producer at a time. It is our turn when the ring's - * pidx_tail reaches the begining of our reservation (pidx_start). + * pidx_tail reaches the beginning of our reservation (pidx_start). */ while (ns.pidx_tail != pidx_start) { cpu_spinwait();