xref: /illumos-gate/usr/src/uts/common/io/mac/mac_datapath_setup.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #include <sys/types.h>
27 #include <sys/callb.h>
28 #include <sys/sdt.h>
29 #include <sys/strsubr.h>
30 #include <sys/strsun.h>
31 #include <sys/vlan.h>
32 #include <inet/ipsec_impl.h>
33 #include <inet/ip_impl.h>
34 #include <inet/sadb.h>
35 #include <inet/ipsecesp.h>
36 #include <inet/ipsecah.h>
37 
38 #include <sys/mac_impl.h>
39 #include <sys/mac_client_impl.h>
40 #include <sys/mac_client_priv.h>
41 #include <sys/mac_soft_ring.h>
42 #include <sys/mac_flow_impl.h>
43 
44 static void mac_srs_soft_rings_signal(mac_soft_ring_set_t *, uint_t);
45 static void mac_srs_update_fanout_list(mac_soft_ring_set_t *);
46 static void mac_srs_poll_unbind(mac_soft_ring_set_t *);
47 static void mac_srs_worker_unbind(mac_soft_ring_set_t *);
48 static void mac_srs_soft_rings_quiesce(mac_soft_ring_set_t *, uint_t);
49 
50 static int mac_srs_cpu_setup(cpu_setup_t, int, void *);
51 static void mac_srs_worker_bind(mac_soft_ring_set_t *, processorid_t);
52 static void mac_srs_poll_bind(mac_soft_ring_set_t *, processorid_t);
53 static void mac_srs_threads_unbind(mac_soft_ring_set_t *);
54 static void mac_srs_add_glist(mac_soft_ring_set_t *);
55 static void mac_srs_remove_glist(mac_soft_ring_set_t *);
56 static void mac_srs_fanout_list_free(mac_soft_ring_set_t *);
57 static void mac_soft_ring_remove(mac_soft_ring_set_t *, mac_soft_ring_t *);
58 
59 static int mac_compute_soft_ring_count(flow_entry_t *, int);
60 static void mac_walk_srs_and_bind(int);
61 static void mac_walk_srs_and_unbind(int);
62 
63 extern mac_group_t *mac_reserve_rx_group(mac_client_impl_t *, uint8_t *,
64     mac_rx_group_reserve_type_t);
65 extern void mac_release_rx_group(mac_client_impl_t *, mac_group_t *);
66 
67 extern boolean_t mac_latency_optimize;
68 
69 static kmem_cache_t *mac_srs_cache;
70 kmem_cache_t *mac_soft_ring_cache;
71 
72 /*
73  * The duration in msec we wait before signalling the soft ring
74  * worker thread in case packets get queued.
75  */
76 uint32_t mac_soft_ring_worker_wait = 0;
77 
78 /*
79  * A global tunable for turning polling on/off. By default, dynamic
80  * polling is always on and is always very beneficial. It should be
81  * turned off with absolute care and for the rare workload (very
82  * low latency sensitive traffic).
83  */
84 int mac_poll_enable = B_TRUE;
85 
86 /*
87  * Need to set mac_soft_ring_max_q_cnt based on bandwidth and perhaps latency.
88  * Large values could end up in consuming lot of system memory and cause
89  * system hang.
90  */
91 int mac_soft_ring_max_q_cnt = 1024;
92 int mac_soft_ring_min_q_cnt = 256;
93 int mac_soft_ring_poll_thres = 16;
94 
95 /*
96  * Default value of number of TX rings to be assigned to a MAC client.
97  * If less than 'mac_tx_ring_count' worth of Tx rings is available, then
98  * as many as is available will be assigned to the newly created MAC client.
99  * If no TX rings are available, then MAC client(s) will be assigned the
100  * default Tx ring. Default Tx ring can be shared among multiple MAC clients.
101  */
102 uint32_t mac_tx_ring_count = 32;
103 boolean_t mac_tx_serialize = B_FALSE;
104 
105 /*
106  * mac_tx_srs_hiwat is the queue depth threshold at which callers of
107  * mac_tx() will be notified of flow control condition.
108  *
109  * TCP does not honour flow control condition sent up by mac_tx().
110  * Thus provision is made for TCP to allow more packets to be queued
111  * in SRS upto a maximum of mac_tx_srs_max_q_cnt.
112  *
113  * Note that mac_tx_srs_hiwat is always be lesser than
114  * mac_tx_srs_max_q_cnt.
115  */
116 uint32_t mac_tx_srs_max_q_cnt = 100000;
117 uint32_t mac_tx_srs_hiwat = 1000;
118 
119 /*
120  * mac_rx_soft_ring_count, mac_soft_ring_10gig_count:
121  *
122  * Global tunables that determines the number of soft rings to be used for
123  * fanning out incoming traffic on a link. These count will be used only
124  * when no explicit set of CPUs was assigned to the data-links.
125  *
126  * mac_rx_soft_ring_count tunable will come into effect only if
127  * mac_soft_ring_enable is set. mac_soft_ring_enable is turned on by
128  * default only for sun4v platforms.
129  *
130  * mac_rx_soft_ring_10gig_count will come into effect if you are running on a
131  * 10Gbps link and is not dependent upon mac_soft_ring_enable.
132  *
133  * The number of soft rings for fanout for a link or a flow is determined
134  * by mac_compute_soft_ring_count() routine. This routine will take into
135  * account mac_soft_ring_enable, mac_rx_soft_ring_count and
136  * mac_rx_soft_ring_10gig_count to determine the soft ring count for a link.
137  *
138  * If a bandwidth is specified, the determination of the number of soft
139  * rings is based on specified bandwidth, CPU speed and number of CPUs in
140  * the system.
141  */
142 uint_t mac_rx_soft_ring_count = 8;
143 uint_t mac_rx_soft_ring_10gig_count = 8;
144 
145 /*
146  * Every Tx and Rx mac_soft_ring_set_t (mac_srs) created gets added
147  * to mac_srs_g_list and mac_srs_g_lock protects mac_srs_g_list. The
148  * list is used to walk the list of all MAC threads when a CPU is
149  * coming online or going offline.
150  */
151 static mac_soft_ring_set_t *mac_srs_g_list = NULL;
152 static krwlock_t mac_srs_g_lock;
153 
154 /*
155  * Whether the SRS threads should be bound, or not.
156  */
157 boolean_t mac_srs_thread_bind = B_TRUE;
158 
159 /*
160  * CPU to fallback to, used by mac_next_bind_cpu().
161  */
162 processorid_t srs_bind_cpu = 0;
163 
164 /*
165  * If cpu bindings are specified by user, then Tx SRS and its soft
166  * rings should also be bound to the CPUs specified by user. The
167  * CPUs for Tx bindings are at the end of the cpu list provided by
168  * the user. If enough CPUs are not available (for Tx and Rx
169  * SRSes), then the CPUs are shared by both Tx and Rx SRSes.
170  */
171 #define	BIND_TX_SRS_AND_SOFT_RINGS(mac_tx_srs, mrp) {			\
172 	processorid_t cpuid;						\
173 	int i, j;							\
174 	mac_soft_ring_t *softring;					\
175 									\
176 	cpuid = mrp->mrp_cpu[mrp->mrp_ncpus - 1];			\
177 	mac_srs_worker_bind(mac_tx_srs, cpuid);			\
178 	if (TX_MULTI_RING_MODE(mac_tx_srs)) {				\
179 		j =  mrp->mrp_ncpus - 1;				\
180 		for (i = 0;						\
181 		    i < mac_tx_srs->srs_oth_ring_count; i++, j--) {	\
182 			if (j < 0)					\
183 				j =  mrp->mrp_ncpus - 1;		\
184 			cpuid = mrp->mrp_cpu[j];			\
185 			softring = mac_tx_srs->srs_oth_soft_rings[i];	\
186 			(void) mac_soft_ring_bind(softring, cpuid);	\
187 		}							\
188 	}								\
189 }
190 
191 /* INIT and FINI ROUTINES */
192 
193 void
194 mac_soft_ring_init(void)
195 {
196 	mac_soft_ring_cache = kmem_cache_create("mac_soft_ring_cache",
197 	    sizeof (mac_soft_ring_t), 64, NULL, NULL, NULL, NULL, NULL, 0);
198 
199 	mac_srs_cache = kmem_cache_create("mac_srs_cache",
200 	    sizeof (mac_soft_ring_set_t),
201 	    64, NULL, NULL, NULL, NULL, NULL, 0);
202 
203 	rw_init(&mac_srs_g_lock, NULL, RW_DEFAULT, NULL);
204 	mutex_enter(&cpu_lock);
205 	register_cpu_setup_func(mac_srs_cpu_setup, NULL);
206 	mutex_exit(&cpu_lock);
207 }
208 
209 void
210 mac_soft_ring_finish(void)
211 {
212 	mutex_enter(&cpu_lock);
213 	unregister_cpu_setup_func(mac_srs_cpu_setup, NULL);
214 	mutex_exit(&cpu_lock);
215 	rw_destroy(&mac_srs_g_lock);
216 	kmem_cache_destroy(mac_soft_ring_cache);
217 	kmem_cache_destroy(mac_srs_cache);
218 }
219 
220 static void
221 mac_srs_soft_rings_free(mac_soft_ring_set_t *mac_srs, boolean_t release_tx_ring)
222 {
223 	mac_soft_ring_t	*softring, *next, *head;
224 
225 	/*
226 	 * Synchronize with mac_walk_srs_bind/unbind which are callbacks from
227 	 * DR. The callbacks from DR are called with cpu_lock held, and hence
228 	 * can't wait to grab the mac perimeter. The soft ring list is hence
229 	 * protected for read access by srs_lock. Changing the soft ring list
230 	 * needs the mac perimeter and the srs_lock.
231 	 */
232 	mutex_enter(&mac_srs->srs_lock);
233 
234 	head = mac_srs->srs_soft_ring_head;
235 	mac_srs->srs_soft_ring_head = NULL;
236 	mac_srs->srs_soft_ring_tail = NULL;
237 	mac_srs->srs_soft_ring_count = 0;
238 
239 	mutex_exit(&mac_srs->srs_lock);
240 
241 	for (softring = head; softring != NULL; softring = next) {
242 		next = softring->s_ring_next;
243 		mac_soft_ring_free(softring, release_tx_ring);
244 	}
245 }
246 
247 static void
248 mac_srs_add_glist(mac_soft_ring_set_t *mac_srs)
249 {
250 	ASSERT(mac_srs->srs_next == NULL && mac_srs->srs_prev == NULL);
251 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mac_srs->srs_mcip->mci_mip));
252 
253 	rw_enter(&mac_srs_g_lock, RW_WRITER);
254 	mutex_enter(&mac_srs->srs_lock);
255 
256 	ASSERT((mac_srs->srs_state & SRS_IN_GLIST) == 0);
257 
258 	if (mac_srs_g_list == NULL) {
259 		mac_srs_g_list = mac_srs;
260 	} else {
261 		mac_srs->srs_next = mac_srs_g_list;
262 		mac_srs_g_list->srs_prev = mac_srs;
263 		mac_srs->srs_prev = NULL;
264 		mac_srs_g_list = mac_srs;
265 	}
266 	mac_srs->srs_state |= SRS_IN_GLIST;
267 
268 	mutex_exit(&mac_srs->srs_lock);
269 	rw_exit(&mac_srs_g_lock);
270 }
271 
272 static void
273 mac_srs_remove_glist(mac_soft_ring_set_t *mac_srs)
274 {
275 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mac_srs->srs_mcip->mci_mip));
276 
277 	rw_enter(&mac_srs_g_lock, RW_WRITER);
278 	mutex_enter(&mac_srs->srs_lock);
279 
280 	ASSERT((mac_srs->srs_state & SRS_IN_GLIST) != 0);
281 
282 	if (mac_srs == mac_srs_g_list) {
283 		mac_srs_g_list = mac_srs->srs_next;
284 		if (mac_srs_g_list != NULL)
285 			mac_srs_g_list->srs_prev = NULL;
286 	} else {
287 		mac_srs->srs_prev->srs_next = mac_srs->srs_next;
288 		if (mac_srs->srs_next != NULL)
289 			mac_srs->srs_next->srs_prev = mac_srs->srs_prev;
290 	}
291 	mac_srs->srs_state &= ~SRS_IN_GLIST;
292 
293 	mutex_exit(&mac_srs->srs_lock);
294 	rw_exit(&mac_srs_g_lock);
295 }
296 
297 /* POLLING SETUP AND TEAR DOWN ROUTINES */
298 
299 /*
300  * mac_srs_client_poll_quiesce and mac_srs_client_poll_restart
301  *
302  * These routines are used to call back into the upper layer
303  * (primarily TCP squeue) to stop polling the soft rings or
304  * restart polling.
305  */
306 void
307 mac_srs_client_poll_quiesce(mac_client_impl_t *mcip,
308     mac_soft_ring_set_t *mac_srs)
309 {
310 	mac_soft_ring_t	*softring;
311 
312 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
313 
314 	if (!(mac_srs->srs_type & SRST_CLIENT_POLL_ENABLED)) {
315 		ASSERT(!(mac_srs->srs_type & SRST_DLS_BYPASS));
316 		return;
317 	}
318 
319 	for (softring = mac_srs->srs_soft_ring_head;
320 	    softring != NULL; softring = softring->s_ring_next) {
321 		if ((softring->s_ring_type & ST_RING_TCP) &&
322 		    (softring->s_ring_rx_arg2 != NULL)) {
323 			mcip->mci_resource_quiesce(mcip->mci_resource_arg,
324 			    softring->s_ring_rx_arg2);
325 		}
326 	}
327 }
328 
329 void
330 mac_srs_client_poll_restart(mac_client_impl_t *mcip,
331     mac_soft_ring_set_t *mac_srs)
332 {
333 	mac_soft_ring_t	*softring;
334 
335 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
336 
337 	if (!(mac_srs->srs_type & SRST_CLIENT_POLL_ENABLED)) {
338 		ASSERT(!(mac_srs->srs_type & SRST_DLS_BYPASS));
339 		return;
340 	}
341 
342 	for (softring = mac_srs->srs_soft_ring_head;
343 	    softring != NULL; softring = softring->s_ring_next) {
344 		if ((softring->s_ring_type & ST_RING_TCP) &&
345 		    (softring->s_ring_rx_arg2 != NULL)) {
346 			mcip->mci_resource_restart(mcip->mci_resource_arg,
347 			    softring->s_ring_rx_arg2);
348 		}
349 	}
350 }
351 
352 /*
353  * Register the given SRS and associated soft rings with the consumer and
354  * enable the polling interface used by the consumer.(i.e IP) over this
355  * SRS and associated soft rings.
356  */
357 void
358 mac_srs_client_poll_enable(mac_client_impl_t *mcip,
359     mac_soft_ring_set_t *mac_srs)
360 {
361 	mac_rx_fifo_t		mrf;
362 	mac_soft_ring_t		*softring;
363 
364 	ASSERT(mac_srs->srs_mcip == mcip);
365 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
366 
367 	if (!(mcip->mci_state_flags & MCIS_CLIENT_POLL_CAPABLE))
368 		return;
369 
370 	bzero(&mrf, sizeof (mac_rx_fifo_t));
371 	mrf.mrf_type = MAC_RX_FIFO;
372 
373 	/*
374 	 * A SRS is capable of acting as a soft ring for cases
375 	 * where no fanout is needed. This is the case for userland
376 	 * flows.
377 	 */
378 	if (mac_srs->srs_type & SRST_NO_SOFT_RINGS)
379 		return;
380 
381 	mrf.mrf_receive = (mac_receive_t)mac_soft_ring_poll;
382 	mrf.mrf_intr_enable = (mac_intr_enable_t)mac_soft_ring_intr_enable;
383 	mrf.mrf_intr_disable = (mac_intr_disable_t)mac_soft_ring_intr_disable;
384 	mac_srs->srs_type |= SRST_CLIENT_POLL_ENABLED;
385 
386 	softring = mac_srs->srs_soft_ring_head;
387 	while (softring != NULL) {
388 		if (softring->s_ring_type & (ST_RING_TCP | ST_RING_UDP)) {
389 			/*
390 			 * TCP and UDP support DLS bypass. Squeue polling
391 			 * support implies DLS bypass since the squeue poll
392 			 * path does not have DLS processing.
393 			 */
394 			mac_soft_ring_dls_bypass(softring,
395 			    mcip->mci_direct_rx_fn, mcip->mci_direct_rx_arg);
396 		}
397 		/*
398 		 * Non-TCP protocols don't support squeues. Hence we don't
399 		 * make any ring addition callbacks for non-TCP rings
400 		 */
401 		if (!(softring->s_ring_type & ST_RING_TCP)) {
402 			softring->s_ring_rx_arg2 = NULL;
403 			softring = softring->s_ring_next;
404 			continue;
405 		}
406 		mrf.mrf_rx_arg = softring;
407 		mrf.mrf_intr_handle = (mac_intr_handle_t)softring;
408 		mrf.mrf_cpu_id = softring->s_ring_cpuid;
409 		mrf.mrf_flow_priority = mac_srs->srs_pri;
410 
411 		softring->s_ring_rx_arg2 = mcip->mci_resource_add(
412 		    mcip->mci_resource_arg, (mac_resource_t *)&mrf);
413 
414 		softring = softring->s_ring_next;
415 	}
416 }
417 
418 /*
419  * Unregister the given SRS and associated soft rings with the consumer and
420  * disable the polling interface used by the consumer.(i.e IP) over this
421  * SRS and associated soft rings.
422  */
423 void
424 mac_srs_client_poll_disable(mac_client_impl_t *mcip,
425     mac_soft_ring_set_t *mac_srs)
426 {
427 	mac_soft_ring_t		*softring;
428 
429 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
430 
431 	/*
432 	 * A SRS is capable of acting as a soft ring for cases
433 	 * where no protocol fanout is needed. This is the case
434 	 * for userland flows. Nothing to do here.
435 	 */
436 	if (mac_srs->srs_type & SRST_NO_SOFT_RINGS)
437 		return;
438 
439 	mutex_enter(&mac_srs->srs_lock);
440 	if (!(mac_srs->srs_type & SRST_CLIENT_POLL_ENABLED)) {
441 		ASSERT(!(mac_srs->srs_type & SRST_DLS_BYPASS));
442 		mutex_exit(&mac_srs->srs_lock);
443 		return;
444 	}
445 	mac_srs->srs_type &= ~(SRST_CLIENT_POLL_ENABLED | SRST_DLS_BYPASS);
446 	mutex_exit(&mac_srs->srs_lock);
447 
448 	/*
449 	 * DLS bypass is now disabled in the case of both TCP and UDP.
450 	 * Reset the soft ring callbacks to the standard 'mac_rx_deliver'
451 	 * callback. In addition, in the case of TCP, invoke IP's callback
452 	 * for ring removal.
453 	 */
454 	for (softring = mac_srs->srs_soft_ring_head;
455 	    softring != NULL; softring = softring->s_ring_next) {
456 		if (!(softring->s_ring_type & (ST_RING_UDP | ST_RING_TCP)))
457 			continue;
458 
459 		if ((softring->s_ring_type & ST_RING_TCP) &&
460 		    softring->s_ring_rx_arg2 != NULL) {
461 			mcip->mci_resource_remove(mcip->mci_resource_arg,
462 			    softring->s_ring_rx_arg2);
463 		}
464 
465 		mutex_enter(&softring->s_ring_lock);
466 		while (softring->s_ring_state & S_RING_PROC) {
467 			softring->s_ring_state |= S_RING_CLIENT_WAIT;
468 			cv_wait(&softring->s_ring_client_cv,
469 			    &softring->s_ring_lock);
470 		}
471 		softring->s_ring_state &= ~S_RING_CLIENT_WAIT;
472 		softring->s_ring_rx_arg2 = NULL;
473 		softring->s_ring_rx_func = mac_rx_deliver;
474 		softring->s_ring_rx_arg1 = mcip;
475 		mutex_exit(&softring->s_ring_lock);
476 	}
477 }
478 
479 /*
480  * Enable or disable poll capability of the SRS on the underlying Rx ring.
481  *
482  * There is a need to enable or disable the poll capability of an SRS over an
483  * Rx ring depending on the number of mac clients sharing the ring and also
484  * whether user flows are configured on it. However the poll state is actively
485  * manipulated by the SRS worker and poll threads and uncoordinated changes by
486  * yet another thread to the underlying capability can surprise them leading
487  * to assert failures. Instead we quiesce the SRS, make the changes and then
488  * restart the SRS.
489  */
490 static void
491 mac_srs_poll_state_change(mac_soft_ring_set_t *mac_srs,
492     boolean_t turn_off_poll_capab, mac_rx_func_t rx_func)
493 {
494 	boolean_t	need_restart = B_FALSE;
495 	mac_srs_rx_t	*srs_rx = &mac_srs->srs_rx;
496 	mac_ring_t	*ring;
497 
498 	if (!SRS_QUIESCED(mac_srs)) {
499 		mac_rx_srs_quiesce(mac_srs, SRS_QUIESCE);
500 		need_restart = B_TRUE;
501 	}
502 
503 	ring = mac_srs->srs_ring;
504 	if ((ring != NULL) &&
505 	    (ring->mr_classify_type == MAC_HW_CLASSIFIER)) {
506 		if (turn_off_poll_capab)
507 			mac_srs->srs_state &= ~SRS_POLLING_CAPAB;
508 		else if (mac_poll_enable)
509 			mac_srs->srs_state |= SRS_POLLING_CAPAB;
510 	}
511 	srs_rx->sr_lower_proc = rx_func;
512 
513 	if (need_restart)
514 		mac_rx_srs_restart(mac_srs);
515 }
516 
517 /* CPU RECONFIGURATION AND FANOUT COMPUTATION ROUTINES */
518 
519 /*
520  * Return the next CPU to be used to bind a MAC kernel thread.
521  */
522 static processorid_t
523 mac_next_bind_cpu(void)
524 {
525 	static processorid_t srs_curr_cpu = -1;
526 	cpu_t *cp;
527 
528 	ASSERT(MUTEX_HELD(&cpu_lock));
529 
530 	srs_curr_cpu++;
531 	cp = cpu_get(srs_curr_cpu);
532 	if (cp == NULL || !cpu_is_online(cp))
533 		srs_curr_cpu = srs_bind_cpu;
534 
535 	return (srs_curr_cpu);
536 }
537 
538 /* ARGSUSED */
539 static int
540 mac_srs_cpu_setup(cpu_setup_t what, int id, void *arg)
541 {
542 	ASSERT(MUTEX_HELD(&cpu_lock));
543 	switch (what) {
544 	case CPU_CONFIG:
545 	case CPU_ON:
546 	case CPU_CPUPART_IN:
547 		mac_walk_srs_and_bind(id);
548 		break;
549 
550 	case CPU_UNCONFIG:
551 	case CPU_OFF:
552 	case CPU_CPUPART_OUT:
553 		mac_walk_srs_and_unbind(id);
554 		break;
555 
556 	default:
557 		break;
558 	}
559 	return (0);
560 }
561 
562 /*
563  * mac_compute_soft_ring_count():
564  *
565  * This routine computes the number of soft rings needed to handle incoming
566  * load given a flow_entry.
567  *
568  * The routine does the following:
569  * 1) soft rings will be created if mac_soft_ring_enable is set.
570  * 2) If the underlying link is a 10Gbps link, then soft rings will be
571  * created even if mac_soft_ring_enable is not set. The number of soft
572  * rings, so created,  will equal mac_rx_soft_ring_10gig_count.
573  * 3) On a sun4v platform (i.e., mac_soft_ring_enable is set), 2 times the
574  * mac_rx_soft_ring_10gig_count number of soft rings will be created for a
575  * 10Gbps link.
576  *
577  * If a bandwidth limit is specified, the number that gets computed is
578  * dependent upon CPU speed, the number of Rx rings configured, and
579  * the bandwidth limit.
580  * If more Rx rings are available, less number of soft rings is needed.
581  *
582  * mac_use_bw_heuristic is another "hidden" variable that can be used to
583  * override the default use of soft ring count computation. Depending upon
584  * the usefulness of it, mac_use_bw_heuristic can later be made into a
585  * data-link property or removed altogether.
586  *
587  * TODO: Cleanup and tighten some of the assumptions.
588  */
589 boolean_t mac_use_bw_heuristic = B_TRUE;
590 static int
591 mac_compute_soft_ring_count(flow_entry_t *flent, int rx_srs_cnt)
592 {
593 	uint64_t cpu_speed, bw = 0;
594 	int srings = 0;
595 	boolean_t bw_enabled = B_FALSE;
596 
597 	ASSERT(!(flent->fe_type & FLOW_USER));
598 	if (flent->fe_resource_props.mrp_mask & MRP_MAXBW &&
599 	    mac_use_bw_heuristic) {
600 		/* bandwidth enabled */
601 		bw_enabled = B_TRUE;
602 		bw = flent->fe_resource_props.mrp_maxbw;
603 	}
604 	if (!bw_enabled) {
605 		/* No bandwidth enabled */
606 		if (mac_soft_ring_enable)
607 			srings = mac_rx_soft_ring_count;
608 
609 		/* Is this a 10Gig link? */
610 		flent->fe_nic_speed = mac_client_stat_get(flent->fe_mcip,
611 		    MAC_STAT_IFSPEED);
612 		/* convert to Mbps */
613 		if (((flent->fe_nic_speed)/1000000) > 1000 &&
614 		    mac_rx_soft_ring_10gig_count > 0) {
615 			/* This is a 10Gig link */
616 			srings = mac_rx_soft_ring_10gig_count;
617 			/*
618 			 * Use 2 times mac_rx_soft_ring_10gig_count for
619 			 * sun4v systems.
620 			 */
621 			if (mac_soft_ring_enable)
622 				srings = srings * 2;
623 		}
624 	} else {
625 		/*
626 		 * Soft ring computation using CPU speed and specified
627 		 * bandwidth limit.
628 		 */
629 		/* Assumption: all CPUs have the same frequency */
630 		cpu_speed = (uint64_t)CPU->cpu_type_info.pi_clock;
631 
632 		/* cpu_speed is in MHz; make bw in units of Mbps.  */
633 		bw = bw/1000000;
634 
635 		if (bw >= 1000) {
636 			/*
637 			 * bw is greater than or equal to 1Gbps.
638 			 * The number of soft rings required is a function
639 			 * of bandwidth and CPU speed. To keep this simple,
640 			 * let's use this rule: 1GHz CPU can handle 1Gbps.
641 			 * If bw is less than 1 Gbps, then there is no need
642 			 * for soft rings. Assumption is that CPU speeds
643 			 * (on modern systems) are at least 1GHz.
644 			 */
645 			srings = bw/cpu_speed;
646 			if (srings <= 1 && mac_soft_ring_enable) {
647 				/*
648 				 * Give at least 2 soft rings
649 				 * for sun4v systems
650 				 */
651 				srings = 2;
652 			}
653 		}
654 	}
655 	/*
656 	 * If the flent has multiple Rx SRSs, then each SRS need not
657 	 * have that many soft rings on top of it. The number of
658 	 * soft rings for each Rx SRS is found by dividing srings by
659 	 * rx_srs_cnt.
660 	 */
661 	if (rx_srs_cnt > 1) {
662 		int remainder;
663 
664 		remainder = srings%rx_srs_cnt;
665 		srings = srings/rx_srs_cnt;
666 		if (remainder != 0)
667 			srings++;
668 		/*
669 		 * Fanning out to 1 soft ring is not very useful.
670 		 * Set it as well to 0 and mac_srs_fanout_init()
671 		 * will take care of creating a single soft ring
672 		 * for proto fanout.
673 		 */
674 		if (srings == 1)
675 			srings = 0;
676 	}
677 	/* Do some more massaging */
678 	srings = min(srings, ncpus);
679 	srings = min(srings, MAX_SR_FANOUT);
680 	return (srings);
681 }
682 
683 /*
684  * Assignment of user specified CPUs to a link.
685  *
686  * Minimum CPUs required to get an optimal assignmet:
687  * For each Rx SRS, atleast two CPUs are needed if mac_latency_optimize
688  * flag is set -- one for polling, one for fanout soft ring.
689  * If mac_latency_optimize is not set, then 3 CPUs are needed -- one
690  * for polling, one for SRS worker thread and one for fanout soft ring.
691  *
692  * The CPUs needed for Tx side is equal to the number of Tx rings
693  * the link is using.
694  *
695  * mac_flow_user_cpu_init() categorizes the CPU assignment depending
696  * upon the number of CPUs in 3 different buckets.
697  *
698  * In the first bucket, the most optimal case is handled. The user has
699  * passed enough number of CPUs and every thread gets its own CPU.
700  *
701  * The second and third are the sub-optimal cases. Enough CPUs are not
702  * available.
703  *
704  * The second bucket handles the case where atleast one distinct CPU is
705  * is available for each of the Rx rings (Rx SRSes) and Tx rings (Tx
706  * SRS or soft rings).
707  *
708  * In the third case (worst case scenario), specified CPU count is less
709  * than the Rx rings configured for the link. In this case, we round
710  * robin the CPUs among the Rx SRSes and Tx SRS/soft rings.
711  */
712 static void
713 mac_flow_user_cpu_init(flow_entry_t *flent, mac_resource_props_t *mrp)
714 {
715 	mac_soft_ring_set_t *rx_srs, *tx_srs;
716 	int i, srs_cnt;
717 	mac_cpus_t *srs_cpu;
718 	int no_of_cpus, cpu_cnt;
719 	int rx_srs_cnt, reqd_rx_cpu_cnt;
720 	int fanout_cpu_cnt, reqd_tx_cpu_cnt;
721 	int reqd_poll_worker_cnt, fanout_cnt_per_srs;
722 
723 	ASSERT(mrp->mrp_fanout_mode == MCM_CPUS);
724 	/*
725 	 * The check for nbc_ncpus to be within limits for
726 	 * the user specified case was done earlier and if
727 	 * not within limits, an error would have been
728 	 * returned to the user.
729 	 */
730 	ASSERT(mrp->mrp_ncpus > 0 && mrp->mrp_ncpus <= MAX_SR_FANOUT);
731 
732 	no_of_cpus = mrp->mrp_ncpus;
733 
734 	if (mrp->mrp_intr_cpu != -1) {
735 		/*
736 		 * interrupt has been re-targetted. Poll
737 		 * thread needs to be bound to interrupt
738 		 * CPU. Presently only fixed interrupts
739 		 * are re-targetted, MSI-x aren't.
740 		 *
741 		 * Find where in the list is the intr
742 		 * CPU and swap it with the first one.
743 		 * We will be using the first CPU in the
744 		 * list for poll.
745 		 */
746 		for (i = 0; i < no_of_cpus; i++) {
747 			if (mrp->mrp_cpu[i] == mrp->mrp_intr_cpu)
748 				break;
749 		}
750 		mrp->mrp_cpu[i] = mrp->mrp_cpu[0];
751 		mrp->mrp_cpu[0] = mrp->mrp_intr_cpu;
752 	}
753 
754 	/*
755 	 * Requirements:
756 	 * The number of CPUs that each Rx ring needs is dependent
757 	 * upon mac_latency_optimize flag.
758 	 * 1) If set, atleast 2 CPUs are needed -- one for
759 	 * polling, one for fanout soft ring.
760 	 * 2) If not set, then atleast 3 CPUs are needed -- one
761 	 * for polling, one for srs worker thread, and one for
762 	 * fanout soft ring.
763 	 */
764 	rx_srs_cnt = (flent->fe_rx_srs_cnt > 1) ?
765 	    (flent->fe_rx_srs_cnt - 1) : flent->fe_rx_srs_cnt;
766 	reqd_rx_cpu_cnt = mac_latency_optimize ?
767 	    (rx_srs_cnt * 2) : (rx_srs_cnt * 3);
768 
769 	/* How many CPUs are needed for Tx side? */
770 	tx_srs = flent->fe_tx_srs;
771 	reqd_tx_cpu_cnt = TX_MULTI_RING_MODE(tx_srs) ?
772 	    tx_srs->srs_oth_ring_count : 1;
773 
774 	/* CPUs needed for Rx SRSes poll and worker threads */
775 	reqd_poll_worker_cnt = mac_latency_optimize ?
776 	    rx_srs_cnt : rx_srs_cnt * 2;
777 
778 	/* Has the user provided enough CPUs? */
779 	if (no_of_cpus >= (reqd_rx_cpu_cnt + reqd_tx_cpu_cnt)) {
780 		/*
781 		 * Best case scenario. There is enough CPUs. All
782 		 * Rx rings will get their own set of CPUs plus
783 		 * Tx soft rings will get their own.
784 		 */
785 		/*
786 		 * fanout_cpu_cnt is the number of CPUs available
787 		 * for Rx side fanout soft rings.
788 		 */
789 		fanout_cpu_cnt = no_of_cpus -
790 		    reqd_poll_worker_cnt - reqd_tx_cpu_cnt;
791 
792 		/*
793 		 * Divide fanout_cpu_cnt by rx_srs_cnt to find
794 		 * out how many fanout soft rings each Rx SRS
795 		 * can have.
796 		 */
797 		fanout_cnt_per_srs = fanout_cpu_cnt/rx_srs_cnt;
798 
799 		/* Do the assignment for the default Rx ring */
800 		cpu_cnt = 0;
801 		rx_srs = flent->fe_rx_srs[0];
802 		ASSERT(rx_srs->srs_ring == NULL);
803 		if (rx_srs->srs_fanout_state == SRS_FANOUT_INIT)
804 			rx_srs->srs_fanout_state = SRS_FANOUT_REINIT;
805 		srs_cpu = &rx_srs->srs_cpu;
806 		srs_cpu->mc_ncpus = no_of_cpus;
807 		bcopy(mrp->mrp_cpu,
808 		    srs_cpu->mc_cpus, sizeof (srs_cpu->mc_cpus));
809 		srs_cpu->mc_fanout_cnt = fanout_cnt_per_srs;
810 		srs_cpu->mc_pollid = mrp->mrp_cpu[cpu_cnt++];
811 		srs_cpu->mc_intr_cpu = mrp->mrp_intr_cpu;
812 		srs_cpu->mc_workerid = srs_cpu->mc_pollid;
813 		if (!mac_latency_optimize)
814 			srs_cpu->mc_workerid = mrp->mrp_cpu[cpu_cnt++];
815 		for (i = 0; i < fanout_cnt_per_srs; i++)
816 			srs_cpu->mc_fanout_cpus[i] = mrp->mrp_cpu[cpu_cnt++];
817 
818 		/* Do the assignment for h/w Rx SRSes */
819 		if (flent->fe_rx_srs_cnt > 1) {
820 			cpu_cnt = 0;
821 			for (srs_cnt = 1;
822 			    srs_cnt < flent->fe_rx_srs_cnt; srs_cnt++) {
823 				rx_srs = flent->fe_rx_srs[srs_cnt];
824 				ASSERT(rx_srs->srs_ring != NULL);
825 				if (rx_srs->srs_fanout_state ==
826 				    SRS_FANOUT_INIT) {
827 					rx_srs->srs_fanout_state =
828 					    SRS_FANOUT_REINIT;
829 				}
830 				srs_cpu = &rx_srs->srs_cpu;
831 				srs_cpu->mc_ncpus = no_of_cpus;
832 				bcopy(mrp->mrp_cpu, srs_cpu->mc_cpus,
833 				    sizeof (srs_cpu->mc_cpus));
834 				srs_cpu->mc_fanout_cnt = fanout_cnt_per_srs;
835 				/* The first CPU in the list is the intr CPU */
836 				srs_cpu->mc_pollid = mrp->mrp_cpu[cpu_cnt++];
837 				srs_cpu->mc_intr_cpu = mrp->mrp_intr_cpu;
838 				srs_cpu->mc_workerid = srs_cpu->mc_pollid;
839 				if (!mac_latency_optimize) {
840 					srs_cpu->mc_workerid =
841 					    mrp->mrp_cpu[cpu_cnt++];
842 				}
843 				for (i = 0; i < fanout_cnt_per_srs; i++) {
844 					srs_cpu->mc_fanout_cpus[i] =
845 					    mrp->mrp_cpu[cpu_cnt++];
846 				}
847 				ASSERT(cpu_cnt <= no_of_cpus);
848 			}
849 		}
850 		return;
851 	}
852 
853 	/*
854 	 * Sub-optimal case.
855 	 * We have the following information:
856 	 * no_of_cpus - no. of cpus that user passed.
857 	 * rx_srs_cnt - no. of rx rings.
858 	 * reqd_rx_cpu_cnt = mac_latency_optimize?rx_srs_cnt*2:rx_srs_cnt*3
859 	 * reqd_tx_cpu_cnt - no. of cpus reqd. for Tx side.
860 	 * reqd_poll_worker_cnt = mac_latency_optimize?rx_srs_cnt:rx_srs_cnt*2
861 	 */
862 	/*
863 	 * If we bind the Rx fanout soft rings to the same CPUs
864 	 * as poll/worker, would that be enough?
865 	 */
866 	if (no_of_cpus >= (rx_srs_cnt + reqd_tx_cpu_cnt)) {
867 		boolean_t worker_assign = B_FALSE;
868 
869 		/*
870 		 * If mac_latency_optimize is not set, are there
871 		 * enough CPUs to assign a CPU for worker also?
872 		 */
873 		if (no_of_cpus >= (reqd_poll_worker_cnt + reqd_tx_cpu_cnt))
874 			worker_assign = B_TRUE;
875 		/*
876 		 * Zero'th Rx SRS is the default Rx ring. It is not
877 		 * associated with h/w Rx ring.
878 		 */
879 		rx_srs = flent->fe_rx_srs[0];
880 		ASSERT(rx_srs->srs_ring == NULL);
881 		if (rx_srs->srs_fanout_state == SRS_FANOUT_INIT)
882 			rx_srs->srs_fanout_state = SRS_FANOUT_REINIT;
883 		cpu_cnt = 0;
884 		srs_cpu = &rx_srs->srs_cpu;
885 		srs_cpu->mc_ncpus = no_of_cpus;
886 		bcopy(mrp->mrp_cpu,
887 		    srs_cpu->mc_cpus, sizeof (srs_cpu->mc_cpus));
888 		srs_cpu->mc_fanout_cnt = 1;
889 		srs_cpu->mc_pollid = mrp->mrp_cpu[cpu_cnt++];
890 		srs_cpu->mc_intr_cpu = mrp->mrp_intr_cpu;
891 		srs_cpu->mc_workerid = srs_cpu->mc_pollid;
892 		if (!mac_latency_optimize && worker_assign)
893 			srs_cpu->mc_workerid = mrp->mrp_cpu[cpu_cnt++];
894 		srs_cpu->mc_fanout_cpus[0] = mrp->mrp_cpu[cpu_cnt];
895 
896 		/* Do CPU bindings for SRSes having h/w Rx rings */
897 		if (flent->fe_rx_srs_cnt > 1) {
898 			cpu_cnt = 0;
899 			for (srs_cnt = 1;
900 			    srs_cnt < flent->fe_rx_srs_cnt; srs_cnt++) {
901 				rx_srs = flent->fe_rx_srs[srs_cnt];
902 				ASSERT(rx_srs->srs_ring != NULL);
903 				if (rx_srs->srs_fanout_state ==
904 				    SRS_FANOUT_INIT) {
905 					rx_srs->srs_fanout_state =
906 					    SRS_FANOUT_REINIT;
907 				}
908 				srs_cpu = &rx_srs->srs_cpu;
909 				srs_cpu->mc_ncpus = no_of_cpus;
910 				bcopy(mrp->mrp_cpu, srs_cpu->mc_cpus,
911 				    sizeof (srs_cpu->mc_cpus));
912 				srs_cpu->mc_pollid =
913 				    mrp->mrp_cpu[cpu_cnt];
914 				srs_cpu->mc_intr_cpu = mrp->mrp_intr_cpu;
915 				srs_cpu->mc_workerid = srs_cpu->mc_pollid;
916 				if (!mac_latency_optimize && worker_assign) {
917 					srs_cpu->mc_workerid =
918 					    mrp->mrp_cpu[++cpu_cnt];
919 				}
920 				srs_cpu->mc_fanout_cnt = 1;
921 				srs_cpu->mc_fanout_cpus[0] =
922 				    mrp->mrp_cpu[cpu_cnt];
923 				cpu_cnt++;
924 				ASSERT(cpu_cnt <= no_of_cpus);
925 			}
926 		}
927 		return;
928 	}
929 
930 	/*
931 	 * Real sub-optimal case. Not enough CPUs for poll and
932 	 * Tx soft rings. Do a round robin assignment where
933 	 * each Rx SRS will get the same CPU for poll, worker
934 	 * and fanout soft ring.
935 	 */
936 	cpu_cnt = 0;
937 	for (srs_cnt = 0; srs_cnt < flent->fe_rx_srs_cnt; srs_cnt++) {
938 		rx_srs = flent->fe_rx_srs[srs_cnt];
939 		srs_cpu = &rx_srs->srs_cpu;
940 		if (rx_srs->srs_fanout_state == SRS_FANOUT_INIT)
941 			rx_srs->srs_fanout_state = SRS_FANOUT_REINIT;
942 		srs_cpu->mc_ncpus = no_of_cpus;
943 		bcopy(mrp->mrp_cpu,
944 		    srs_cpu->mc_cpus, sizeof (srs_cpu->mc_cpus));
945 		srs_cpu->mc_fanout_cnt = 1;
946 		srs_cpu->mc_pollid = mrp->mrp_cpu[cpu_cnt];
947 		srs_cpu->mc_intr_cpu = mrp->mrp_intr_cpu;
948 		srs_cpu->mc_workerid = mrp->mrp_cpu[cpu_cnt];
949 		srs_cpu->mc_fanout_cpus[0] = mrp->mrp_cpu[cpu_cnt];
950 		if (++cpu_cnt >= no_of_cpus)
951 			cpu_cnt = 0;
952 	}
953 }
954 
955 /*
956  * mac_flow_cpu_init():
957  *
958  * Each SRS has a mac_cpu_t structure, srs_cpu. This routine fills in
959  * the CPU binding information in srs_cpu for all Rx SRSes associated
960  * with a flent.
961  */
962 static void
963 mac_flow_cpu_init(flow_entry_t *flent, mac_resource_props_t *mrp)
964 {
965 	mac_soft_ring_set_t *rx_srs;
966 	processorid_t cpuid;
967 	int j, srs_cnt, soft_ring_cnt = 0;
968 	mac_cpus_t *srs_cpu;
969 
970 	if (mrp->mrp_mask & MRP_CPUS_USERSPEC) {
971 		mac_flow_user_cpu_init(flent, mrp);
972 	} else {
973 		/*
974 		 * Compute the number of soft rings needed on top for each Rx
975 		 * SRS. "rx_srs_cnt-1" indicates the number of Rx SRS
976 		 * associated with h/w Rx rings. Soft ring count needed for
977 		 * each h/w Rx SRS is computed and the same is applied to
978 		 * software classified Rx SRS. The first Rx SRS in fe_rx_srs[]
979 		 * is the software classified Rx SRS.
980 		 */
981 		soft_ring_cnt = mac_compute_soft_ring_count(flent,
982 		    flent->fe_rx_srs_cnt - 1);
983 		if (soft_ring_cnt == 0) {
984 			/*
985 			 * Even when soft_ring_cnt is 0, we still need
986 			 * to create a soft ring for TCP, UDP and
987 			 * OTHER. So set it to 1.
988 			 */
989 			soft_ring_cnt = 1;
990 		}
991 		for (srs_cnt = 0; srs_cnt < flent->fe_rx_srs_cnt; srs_cnt++) {
992 			rx_srs = flent->fe_rx_srs[srs_cnt];
993 			srs_cpu = &rx_srs->srs_cpu;
994 			if (rx_srs->srs_fanout_state == SRS_FANOUT_INIT) {
995 				if (soft_ring_cnt == srs_cpu->mc_fanout_cnt)
996 					continue;
997 				rx_srs->srs_fanout_state = SRS_FANOUT_REINIT;
998 			}
999 			srs_cpu->mc_ncpus = soft_ring_cnt;
1000 			srs_cpu->mc_fanout_cnt = soft_ring_cnt;
1001 			mutex_enter(&cpu_lock);
1002 			for (j = 0; j < soft_ring_cnt; j++) {
1003 				cpuid = mac_next_bind_cpu();
1004 				srs_cpu->mc_cpus[j] = cpuid;
1005 				srs_cpu->mc_fanout_cpus[j] = cpuid;
1006 			}
1007 			cpuid = mac_next_bind_cpu();
1008 			srs_cpu->mc_pollid = cpuid;
1009 			/* increment ncpus to account for polling cpu */
1010 			srs_cpu->mc_ncpus++;
1011 			srs_cpu->mc_cpus[j++] = cpuid;
1012 			if (!mac_latency_optimize) {
1013 				cpuid = mac_next_bind_cpu();
1014 				srs_cpu->mc_ncpus++;
1015 				srs_cpu->mc_cpus[j++] = cpuid;
1016 			}
1017 			srs_cpu->mc_workerid = cpuid;
1018 			mutex_exit(&cpu_lock);
1019 		}
1020 	}
1021 }
1022 
1023 /*
1024  * DATAPATH SETUP ROUTINES
1025  * (setup SRS and set/update FANOUT, B/W and PRIORITY)
1026  */
1027 
1028 static void
1029 mac_srs_fanout_list_alloc(mac_soft_ring_set_t *mac_srs)
1030 {
1031 	mac_srs->srs_tcp_soft_rings = (mac_soft_ring_t **)
1032 	    kmem_zalloc(sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT, KM_SLEEP);
1033 	mac_srs->srs_udp_soft_rings = (mac_soft_ring_t **)
1034 	    kmem_zalloc(sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT, KM_SLEEP);
1035 	mac_srs->srs_oth_soft_rings = (mac_soft_ring_t **)
1036 	    kmem_zalloc(sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT, KM_SLEEP);
1037 }
1038 
1039 static void
1040 mac_srs_worker_bind(mac_soft_ring_set_t *mac_srs, processorid_t cpuid)
1041 {
1042 	cpu_t *cp;
1043 	boolean_t clear = B_FALSE;
1044 
1045 	ASSERT(MUTEX_HELD(&cpu_lock));
1046 
1047 	if (!mac_srs_thread_bind)
1048 		return;
1049 
1050 	cp = cpu_get(cpuid);
1051 	if (cp == NULL || !cpu_is_online(cp))
1052 		return;
1053 
1054 	mutex_enter(&mac_srs->srs_lock);
1055 	mac_srs->srs_state |= SRS_WORKER_BOUND;
1056 	if (mac_srs->srs_worker_cpuid != -1)
1057 		clear = B_TRUE;
1058 	mac_srs->srs_worker_cpuid = cpuid;
1059 	mutex_exit(&mac_srs->srs_lock);
1060 
1061 	if (clear)
1062 		thread_affinity_clear(mac_srs->srs_worker);
1063 
1064 	thread_affinity_set(mac_srs->srs_worker, cpuid);
1065 	DTRACE_PROBE1(worker__CPU, processorid_t, cpuid);
1066 }
1067 
1068 static void
1069 mac_srs_poll_bind(mac_soft_ring_set_t *mac_srs, processorid_t cpuid)
1070 {
1071 	cpu_t *cp;
1072 	boolean_t clear = B_FALSE;
1073 
1074 	ASSERT(MUTEX_HELD(&cpu_lock));
1075 
1076 	if (!mac_srs_thread_bind || mac_srs->srs_poll_thr == NULL)
1077 		return;
1078 
1079 	cp = cpu_get(cpuid);
1080 	if (cp == NULL || !cpu_is_online(cp))
1081 		return;
1082 
1083 	mutex_enter(&mac_srs->srs_lock);
1084 	mac_srs->srs_state |= SRS_POLL_BOUND;
1085 	if (mac_srs->srs_poll_cpuid != -1)
1086 		clear = B_TRUE;
1087 	mac_srs->srs_poll_cpuid = cpuid;
1088 	mutex_exit(&mac_srs->srs_lock);
1089 
1090 	if (clear)
1091 		thread_affinity_clear(mac_srs->srs_poll_thr);
1092 
1093 	thread_affinity_set(mac_srs->srs_poll_thr, cpuid);
1094 	DTRACE_PROBE1(poll__CPU, processorid_t, cpuid);
1095 }
1096 
1097 /*
1098  * When a CPU comes back online, bind the MAC kernel threads which
1099  * were previously bound to that CPU, and had to be unbound because
1100  * the CPU was going away.
1101  *
1102  * These functions are called with cpu_lock held and hence we can't
1103  * cv_wait to grab the mac perimeter. Since these functions walk the soft
1104  * ring list of an SRS without being in the perimeter, the list itself
1105  * is protected by the SRS lock.
1106  */
1107 static void
1108 mac_walk_srs_and_bind(int cpuid)
1109 {
1110 	mac_soft_ring_set_t *mac_srs;
1111 	mac_soft_ring_t *soft_ring;
1112 
1113 	rw_enter(&mac_srs_g_lock, RW_READER);
1114 
1115 	if ((mac_srs = mac_srs_g_list) == NULL)
1116 		goto done;
1117 
1118 	for (; mac_srs != NULL; mac_srs = mac_srs->srs_next) {
1119 		if (mac_srs->srs_worker_cpuid == -1 &&
1120 		    mac_srs->srs_worker_cpuid_save == cpuid) {
1121 			mac_srs->srs_worker_cpuid_save = -1;
1122 			mac_srs_worker_bind(mac_srs, cpuid);
1123 		}
1124 
1125 		if (!(mac_srs->srs_type & SRST_TX)) {
1126 			if (mac_srs->srs_poll_cpuid == -1 &&
1127 			    mac_srs->srs_poll_cpuid_save == cpuid) {
1128 				mac_srs->srs_poll_cpuid_save = -1;
1129 				mac_srs_poll_bind(mac_srs, cpuid);
1130 			}
1131 		}
1132 
1133 		/* Next tackle the soft rings associated with the srs */
1134 		mutex_enter(&mac_srs->srs_lock);
1135 		for (soft_ring = mac_srs->srs_soft_ring_head; soft_ring != NULL;
1136 		    soft_ring = soft_ring->s_ring_next) {
1137 			if (soft_ring->s_ring_cpuid == -1 &&
1138 			    soft_ring->s_ring_cpuid_save == cpuid) {
1139 				soft_ring->s_ring_cpuid_save = -1;
1140 				(void) mac_soft_ring_bind(soft_ring, cpuid);
1141 			}
1142 		}
1143 		mutex_exit(&mac_srs->srs_lock);
1144 	}
1145 done:
1146 	rw_exit(&mac_srs_g_lock);
1147 }
1148 
1149 /*
1150  * Change the priority of the SRS's poll and worker thread. Additionally,
1151  * update the priority of the worker threads for the SRS's soft rings.
1152  * Need to modify any associated squeue threads.
1153  */
1154 void
1155 mac_update_srs_priority(mac_soft_ring_set_t *mac_srs, pri_t prival)
1156 {
1157 	mac_soft_ring_t		*ringp;
1158 
1159 	mac_srs->srs_pri = prival;
1160 	thread_lock(mac_srs->srs_worker);
1161 	(void) thread_change_pri(mac_srs->srs_worker, mac_srs->srs_pri, 0);
1162 	thread_unlock(mac_srs->srs_worker);
1163 	if (mac_srs->srs_poll_thr != NULL) {
1164 		thread_lock(mac_srs->srs_poll_thr);
1165 		(void) thread_change_pri(mac_srs->srs_poll_thr,
1166 		    mac_srs->srs_pri, 0);
1167 		thread_unlock(mac_srs->srs_poll_thr);
1168 	}
1169 	if ((ringp = mac_srs->srs_soft_ring_head) == NULL)
1170 		return;
1171 	while (ringp != mac_srs->srs_soft_ring_tail) {
1172 		thread_lock(ringp->s_ring_worker);
1173 		(void) thread_change_pri(ringp->s_ring_worker,
1174 		    mac_srs->srs_pri, 0);
1175 		thread_unlock(ringp->s_ring_worker);
1176 		ringp = ringp->s_ring_next;
1177 	}
1178 	ASSERT(ringp == mac_srs->srs_soft_ring_tail);
1179 	thread_lock(ringp->s_ring_worker);
1180 	(void) thread_change_pri(ringp->s_ring_worker, mac_srs->srs_pri, 0);
1181 	thread_unlock(ringp->s_ring_worker);
1182 }
1183 
1184 /*
1185  * Change the receive bandwidth limit.
1186  */
1187 static void
1188 mac_rx_srs_update_bwlimit(mac_soft_ring_set_t *srs, mac_resource_props_t *mrp)
1189 {
1190 	mac_soft_ring_t		*softring;
1191 
1192 	mutex_enter(&srs->srs_lock);
1193 	mutex_enter(&srs->srs_bw->mac_bw_lock);
1194 
1195 	if (mrp->mrp_maxbw == MRP_MAXBW_RESETVAL) {
1196 		/* Reset bandwidth limit */
1197 		if (srs->srs_type & SRST_BW_CONTROL) {
1198 			softring = srs->srs_soft_ring_head;
1199 			while (softring != NULL) {
1200 				softring->s_ring_type &= ~ST_RING_BW_CTL;
1201 				softring = softring->s_ring_next;
1202 			}
1203 			srs->srs_type &= ~SRST_BW_CONTROL;
1204 			srs->srs_drain_func = mac_rx_srs_drain;
1205 		}
1206 	} else {
1207 		/* Set/Modify bandwidth limit */
1208 		srs->srs_bw->mac_bw_limit = FLOW_BYTES_PER_TICK(mrp->mrp_maxbw);
1209 		/*
1210 		 * Give twice the queuing capability before
1211 		 * dropping packets. The unit is bytes/tick.
1212 		 */
1213 		srs->srs_bw->mac_bw_drop_threshold =
1214 		    srs->srs_bw->mac_bw_limit << 1;
1215 		if (!(srs->srs_type & SRST_BW_CONTROL)) {
1216 			softring = srs->srs_soft_ring_head;
1217 			while (softring != NULL) {
1218 				softring->s_ring_type |= ST_RING_BW_CTL;
1219 				softring = softring->s_ring_next;
1220 			}
1221 			srs->srs_type |= SRST_BW_CONTROL;
1222 			srs->srs_drain_func = mac_rx_srs_drain_bw;
1223 		}
1224 	}
1225 done:
1226 	mutex_exit(&srs->srs_bw->mac_bw_lock);
1227 	mutex_exit(&srs->srs_lock);
1228 }
1229 
1230 /* Change the transmit bandwidth limit */
1231 static void
1232 mac_tx_srs_update_bwlimit(mac_soft_ring_set_t *srs, mac_resource_props_t *mrp)
1233 {
1234 	uint32_t		tx_mode;
1235 	mac_srs_tx_t		*srs_tx = &srs->srs_tx;
1236 	mac_client_impl_t	*mcip = srs->srs_mcip;
1237 	mac_impl_t		*mip = mcip->mci_mip;
1238 
1239 	/*
1240 	 * We need to quiesce/restart the client here because mac_tx() and
1241 	 * srs->srs_tx->st_func do not hold srs->srs_lock while accessing
1242 	 * st_mode and related fields, which are modified by the code below.
1243 	 */
1244 	mac_tx_client_quiesce(mcip, SRS_QUIESCE);
1245 
1246 	mutex_enter(&srs->srs_lock);
1247 	mutex_enter(&srs->srs_bw->mac_bw_lock);
1248 
1249 	tx_mode = srs_tx->st_mode;
1250 	if (mrp->mrp_maxbw == MRP_MAXBW_RESETVAL) {
1251 		/* Reset bandwidth limit */
1252 		if (tx_mode == SRS_TX_BW) {
1253 			if (mac_tx_serialize ||
1254 			    (mip->mi_v12n_level & MAC_VIRT_SERIALIZE)) {
1255 				srs_tx->st_mode = SRS_TX_SERIALIZE;
1256 			} else {
1257 				srs_tx->st_mode = SRS_TX_DEFAULT;
1258 			}
1259 		} else if (tx_mode == SRS_TX_BW_FANOUT) {
1260 			srs_tx->st_mode = SRS_TX_FANOUT;
1261 		}
1262 		srs->srs_type &= ~SRST_BW_CONTROL;
1263 	} else {
1264 		/* Set/Modify bandwidth limit */
1265 		srs->srs_bw->mac_bw_limit = FLOW_BYTES_PER_TICK(mrp->mrp_maxbw);
1266 		/*
1267 		 * Give twice the queuing capability before
1268 		 * dropping packets. The unit is bytes/tick.
1269 		 */
1270 		srs->srs_bw->mac_bw_drop_threshold =
1271 		    srs->srs_bw->mac_bw_limit << 1;
1272 		srs->srs_type |= SRST_BW_CONTROL;
1273 		if (tx_mode != SRS_TX_BW &&
1274 		    tx_mode != SRS_TX_BW_FANOUT) {
1275 			if (tx_mode == SRS_TX_SERIALIZE ||
1276 			    tx_mode == SRS_TX_DEFAULT) {
1277 				srs_tx->st_mode = SRS_TX_BW;
1278 			} else if (tx_mode == SRS_TX_FANOUT) {
1279 				srs_tx->st_mode = SRS_TX_BW_FANOUT;
1280 			} else {
1281 				ASSERT(0);
1282 			}
1283 		}
1284 	}
1285 done:
1286 	srs_tx->st_func = mac_tx_get_func(srs_tx->st_mode);
1287 	mutex_exit(&srs->srs_bw->mac_bw_lock);
1288 	mutex_exit(&srs->srs_lock);
1289 
1290 	mac_tx_client_restart(mcip);
1291 }
1292 
1293 /*
1294  * The uber function that deals with any update to bandwidth limits.
1295  */
1296 void
1297 mac_srs_update_bwlimit(flow_entry_t *flent, mac_resource_props_t *mrp)
1298 {
1299 	int			count;
1300 
1301 	for (count = 0; count < flent->fe_rx_srs_cnt; count++)
1302 		mac_rx_srs_update_bwlimit(flent->fe_rx_srs[count], mrp);
1303 	mac_tx_srs_update_bwlimit(flent->fe_tx_srs, mrp);
1304 }
1305 
1306 void
1307 mac_srs_change_upcall(void *arg, mac_direct_rx_t rx_func, void *rx_arg1)
1308 {
1309 	mac_soft_ring_set_t	*mac_srs = arg;
1310 	mac_srs_rx_t		*srs_rx = &mac_srs->srs_rx;
1311 	mac_soft_ring_t		*softring;
1312 
1313 	mutex_enter(&mac_srs->srs_lock);
1314 	ASSERT((mac_srs->srs_type & SRST_TX) == 0);
1315 	srs_rx->sr_func = rx_func;
1316 	srs_rx->sr_arg1 = rx_arg1;
1317 
1318 	softring = mac_srs->srs_soft_ring_head;
1319 	while (softring != NULL) {
1320 		mutex_enter(&softring->s_ring_lock);
1321 		softring->s_ring_rx_func = rx_func;
1322 		softring->s_ring_rx_arg1 = rx_arg1;
1323 		mutex_exit(&softring->s_ring_lock);
1324 		softring = softring->s_ring_next;
1325 	}
1326 
1327 	mutex_exit(&mac_srs->srs_lock);
1328 }
1329 
1330 /*
1331  * When the first sub-flow is added to a link, we disable polling on the
1332  * link and also modify the entry point to mac_rx_srs_subflow_process.
1333  * (polling is disabled because with the subflow added, accounting
1334  * for polling needs additional logic, it is assumed that when a subflow is
1335  * added, we can take some hit as a result of disabling polling rather than
1336  * adding more complexity - if this becomes a perf. issue we need to
1337  * re-rvaluate this logic).  When the last subflow is removed, we turn back
1338  * polling and also reset the entry point to mac_rx_srs_process.
1339  *
1340  * In the future if there are multiple SRS, we can simply
1341  * take one and give it to the flow rather than disabling polling and
1342  * resetting the entry point.
1343  */
1344 void
1345 mac_client_update_classifier(mac_client_impl_t *mcip, boolean_t enable)
1346 {
1347 	flow_entry_t		*flent = mcip->mci_flent;
1348 	int			i;
1349 	mac_impl_t		*mip = mcip->mci_mip;
1350 	mac_rx_func_t		rx_func;
1351 	uint_t			rx_srs_cnt;
1352 	boolean_t		enable_classifier;
1353 
1354 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mip));
1355 
1356 	enable_classifier = !FLOW_TAB_EMPTY(mcip->mci_subflow_tab) && enable;
1357 
1358 	rx_func = enable_classifier ? mac_rx_srs_subflow_process :
1359 	    mac_rx_srs_process;
1360 
1361 	/*
1362 	 * If receive function has already been configured correctly for
1363 	 * current subflow configuration, do nothing.
1364 	 */
1365 	if (flent->fe_cb_fn == (flow_fn_t)rx_func)
1366 		return;
1367 
1368 	rx_srs_cnt = flent->fe_rx_srs_cnt;
1369 	for (i = 0; i < rx_srs_cnt; i++) {
1370 		ASSERT(flent->fe_rx_srs[i] != NULL);
1371 		mac_srs_poll_state_change(flent->fe_rx_srs[i],
1372 		    enable_classifier, rx_func);
1373 	}
1374 
1375 	/*
1376 	 * Change the S/W classifier so that we can land in the
1377 	 * correct processing function with correct argument.
1378 	 * If all subflows have been removed we can revert to
1379 	 * mac_rx_srsprocess, else we need mac_rx_srs_subflow_process.
1380 	 */
1381 	mutex_enter(&flent->fe_lock);
1382 	flent->fe_cb_fn = (flow_fn_t)rx_func;
1383 	flent->fe_cb_arg1 = (void *)mip;
1384 	flent->fe_cb_arg2 = flent->fe_rx_srs[0];
1385 	mutex_exit(&flent->fe_lock);
1386 }
1387 
1388 static void
1389 mac_srs_update_fanout_list(mac_soft_ring_set_t *mac_srs)
1390 {
1391 	int		tcp_count = 0;
1392 	int		udp_count = 0;
1393 	int		oth_count = 0;
1394 	mac_soft_ring_t *softring;
1395 
1396 	softring = mac_srs->srs_soft_ring_head;
1397 	if (softring == NULL) {
1398 		ASSERT(mac_srs->srs_soft_ring_count == 0);
1399 		mac_srs->srs_tcp_ring_count = 0;
1400 		mac_srs->srs_udp_ring_count = 0;
1401 		mac_srs->srs_oth_ring_count = 0;
1402 		return;
1403 	}
1404 
1405 	softring = mac_srs->srs_soft_ring_head;
1406 	tcp_count = udp_count = oth_count = 0;
1407 
1408 	while (softring != NULL) {
1409 		if (softring->s_ring_type & ST_RING_TCP)
1410 			mac_srs->srs_tcp_soft_rings[tcp_count++] = softring;
1411 		else if (softring->s_ring_type & ST_RING_UDP)
1412 			mac_srs->srs_udp_soft_rings[udp_count++] = softring;
1413 		else
1414 			mac_srs->srs_oth_soft_rings[oth_count++] = softring;
1415 		softring = softring->s_ring_next;
1416 	}
1417 
1418 	ASSERT(mac_srs->srs_soft_ring_count ==
1419 	    (tcp_count + udp_count + oth_count));
1420 
1421 	mac_srs->srs_tcp_ring_count = tcp_count;
1422 	mac_srs->srs_udp_ring_count = udp_count;
1423 	mac_srs->srs_oth_ring_count = oth_count;
1424 }
1425 
1426 void
1427 mac_srs_create_proto_softrings(int id, void *flent, uint16_t type,
1428     pri_t pri, mac_client_impl_t *mcip, mac_soft_ring_set_t *mac_srs,
1429     processorid_t cpuid, mac_direct_rx_t rx_func, void *x_arg1,
1430     mac_resource_handle_t x_arg2, boolean_t set_bypass)
1431 {
1432 	mac_soft_ring_t	*softring;
1433 	mac_rx_fifo_t	mrf;
1434 
1435 	bzero(&mrf, sizeof (mac_rx_fifo_t));
1436 	mrf.mrf_type = MAC_RX_FIFO;
1437 	mrf.mrf_receive = (mac_receive_t)mac_soft_ring_poll;
1438 	mrf.mrf_intr_enable =
1439 	    (mac_intr_enable_t)mac_soft_ring_intr_enable;
1440 	mrf.mrf_intr_disable =
1441 	    (mac_intr_disable_t)mac_soft_ring_intr_disable;
1442 	mrf.mrf_flow_priority = pri;
1443 
1444 	softring = mac_soft_ring_create(id, mac_soft_ring_worker_wait,
1445 	    (void *)flent, (type|ST_RING_TCP), pri, mcip, mac_srs,
1446 	    cpuid, rx_func, x_arg1, x_arg2);
1447 	softring->s_ring_rx_arg2 = NULL;
1448 
1449 	/*
1450 	 * TCP and UDP support DLS bypass. In addition TCP
1451 	 * squeue can also poll their corresponding soft rings.
1452 	 */
1453 	if (set_bypass && (mcip->mci_resource_arg != NULL)) {
1454 		mac_soft_ring_dls_bypass(softring,
1455 		    mcip->mci_direct_rx_fn,
1456 		    mcip->mci_direct_rx_arg);
1457 
1458 		mrf.mrf_rx_arg = softring;
1459 		mrf.mrf_intr_handle = (mac_intr_handle_t)softring;
1460 
1461 		/*
1462 		 * Make a call in IP to get a TCP squeue assigned to
1463 		 * this softring to maintain full CPU locality through
1464 		 * the stack and allow the squeue to be able to poll
1465 		 * the softring so the flow control can be pushed
1466 		 * all the way to H/W.
1467 		 */
1468 		softring->s_ring_rx_arg2 =
1469 		    mcip->mci_resource_add((void *)mcip->mci_resource_arg,
1470 		    (mac_resource_t *)&mrf);
1471 	}
1472 
1473 	/*
1474 	 * Non-TCP protocols don't support squeues. Hence we
1475 	 * don't make any ring addition callbacks for non-TCP
1476 	 * rings. Now create the UDP softring and allow it to
1477 	 * bypass the DLS layer.
1478 	 */
1479 	softring = mac_soft_ring_create(id, mac_soft_ring_worker_wait,
1480 	    (void *)flent, (type|ST_RING_UDP), pri, mcip, mac_srs,
1481 	    cpuid, rx_func, x_arg1, x_arg2);
1482 	softring->s_ring_rx_arg2 = NULL;
1483 
1484 	if (set_bypass && (mcip->mci_resource_arg != NULL)) {
1485 		mac_soft_ring_dls_bypass(softring,
1486 		    mcip->mci_direct_rx_fn,
1487 		    mcip->mci_direct_rx_arg);
1488 	}
1489 
1490 	/* Create the Oth softrings which has to go through the DLS */
1491 	softring = mac_soft_ring_create(id, mac_soft_ring_worker_wait,
1492 	    (void *)flent, (type|ST_RING_OTH), pri, mcip, mac_srs,
1493 	    cpuid, rx_func, x_arg1, x_arg2);
1494 	softring->s_ring_rx_arg2 = NULL;
1495 }
1496 
1497 /*
1498  * This routine associates a CPU or a set of CPU to process incoming
1499  * traffic from a mac client. If multiple CPUs are specified, then
1500  * so many soft rings are created with each soft ring worker thread
1501  * bound to a CPU in the set. Each soft ring in turn will be
1502  * associated with an squeue and the squeue will be moved to the
1503  * same CPU as that of the soft ring's.
1504  */
1505 static void
1506 mac_srs_fanout_modify(mac_client_impl_t *mcip, flow_entry_t *flent,
1507     mac_resource_props_t *mrp, mac_direct_rx_t rx_func, void *x_arg1,
1508     mac_resource_handle_t x_arg2, mac_soft_ring_set_t *mac_rx_srs,
1509     mac_soft_ring_set_t *mac_tx_srs)
1510 {
1511 	mac_soft_ring_t *softring;
1512 	uint32_t soft_ring_flag = 0;
1513 	processorid_t cpuid = -1;
1514 	boolean_t user_specified;
1515 	int i, srings_present, new_fanout_cnt;
1516 	mac_cpus_t *srs_cpu;
1517 
1518 	user_specified = mrp->mrp_mask & MRP_CPUS_USERSPEC;
1519 	/* fanout state is REINIT. Set it back to INIT */
1520 	ASSERT(mac_rx_srs->srs_fanout_state == SRS_FANOUT_REINIT);
1521 	mac_rx_srs->srs_fanout_state = SRS_FANOUT_INIT;
1522 
1523 	/* how many are present right now */
1524 	srings_present = mac_rx_srs->srs_tcp_ring_count;
1525 	/* new request */
1526 	srs_cpu = &mac_rx_srs->srs_cpu;
1527 	new_fanout_cnt = srs_cpu->mc_fanout_cnt;
1528 
1529 	mutex_enter(&mac_rx_srs->srs_lock);
1530 	if (mac_rx_srs->srs_type & SRST_BW_CONTROL)
1531 		soft_ring_flag |= ST_RING_BW_CTL;
1532 	mutex_exit(&mac_rx_srs->srs_lock);
1533 
1534 	if (new_fanout_cnt > srings_present) {
1535 		/* soft rings increased */
1536 		mutex_enter(&mac_rx_srs->srs_lock);
1537 		mac_rx_srs->srs_type |= SRST_FANOUT_SRC_IP;
1538 		mutex_exit(&mac_rx_srs->srs_lock);
1539 
1540 		for (i = mac_rx_srs->srs_tcp_ring_count;
1541 		    i < new_fanout_cnt; i++) {
1542 			/*
1543 			 * Create the protocol softrings and set the
1544 			 * DLS bypass where possible.
1545 			 */
1546 			mac_srs_create_proto_softrings(i,
1547 			    (void *)flent, soft_ring_flag,
1548 			    mac_rx_srs->srs_pri, mcip, mac_rx_srs, cpuid,
1549 			    rx_func, x_arg1, x_arg2, B_TRUE);
1550 		}
1551 		mac_srs_update_fanout_list(mac_rx_srs);
1552 	} else if (new_fanout_cnt < srings_present) {
1553 		/* soft rings decreased */
1554 		if (new_fanout_cnt == 1) {
1555 			mutex_enter(&mac_rx_srs->srs_lock);
1556 			mac_rx_srs->srs_type &= ~SRST_FANOUT_SRC_IP;
1557 			ASSERT(mac_rx_srs->srs_type & SRST_FANOUT_PROTO);
1558 			mutex_exit(&mac_rx_srs->srs_lock);
1559 		}
1560 		/* Get rid of extra soft rings */
1561 		for (i = new_fanout_cnt;
1562 		    i < mac_rx_srs->srs_tcp_ring_count; i++) {
1563 			softring = mac_rx_srs->srs_tcp_soft_rings[i];
1564 			if (softring->s_ring_rx_arg2 != NULL) {
1565 				mcip->mci_resource_remove(
1566 				    (void *)mcip->mci_resource_arg,
1567 				    softring->s_ring_rx_arg2);
1568 			}
1569 			mac_soft_ring_remove(mac_rx_srs,
1570 			    mac_rx_srs->srs_tcp_soft_rings[i]);
1571 			mac_soft_ring_remove(mac_rx_srs,
1572 			    mac_rx_srs->srs_udp_soft_rings[i]);
1573 			mac_soft_ring_remove(mac_rx_srs,
1574 			    mac_rx_srs->srs_oth_soft_rings[i]);
1575 		}
1576 		mac_srs_update_fanout_list(mac_rx_srs);
1577 	}
1578 
1579 	ASSERT(new_fanout_cnt == mac_rx_srs->srs_tcp_ring_count);
1580 	mutex_enter(&cpu_lock);
1581 	for (i = 0; i < mac_rx_srs->srs_tcp_ring_count; i++) {
1582 		cpuid = srs_cpu->mc_fanout_cpus[i];
1583 		(void) mac_soft_ring_bind(mac_rx_srs->srs_udp_soft_rings[i],
1584 		    cpuid);
1585 		(void) mac_soft_ring_bind(mac_rx_srs->srs_oth_soft_rings[i],
1586 		    cpuid);
1587 		(void) mac_soft_ring_bind(mac_rx_srs->srs_tcp_soft_rings[i],
1588 		    cpuid);
1589 		softring = mac_rx_srs->srs_tcp_soft_rings[i];
1590 		if (softring->s_ring_rx_arg2 != NULL) {
1591 			mcip->mci_resource_bind((void *)mcip->mci_resource_arg,
1592 			    softring->s_ring_rx_arg2, cpuid);
1593 		}
1594 	}
1595 
1596 	mac_srs_worker_bind(mac_rx_srs, srs_cpu->mc_pollid);
1597 	mac_srs_poll_bind(mac_rx_srs, srs_cpu->mc_workerid);
1598 
1599 	/*
1600 	 * Bind Tx srs and soft ring threads too. Let's bind tx
1601 	 * srs to the last cpu in mrp list.
1602 	 */
1603 	if (mac_tx_srs != NULL && user_specified) {
1604 		BIND_TX_SRS_AND_SOFT_RINGS(mac_tx_srs, mrp);
1605 	}
1606 	mutex_exit(&cpu_lock);
1607 }
1608 
1609 /*
1610  * Bind SRS threads and soft rings to CPUs/create fanout list.
1611  */
1612 void
1613 mac_srs_fanout_init(mac_client_impl_t *mcip, flow_entry_t *flent,
1614     mac_resource_props_t *mrp, mac_direct_rx_t rx_func, void *x_arg1,
1615     mac_resource_handle_t x_arg2, mac_soft_ring_set_t *mac_rx_srs,
1616     mac_soft_ring_set_t *mac_tx_srs)
1617 {
1618 	int		i;
1619 	processorid_t	cpuid, worker_cpuid, poll_cpuid;
1620 	uint32_t	soft_ring_flag = 0;
1621 	int soft_ring_cnt;
1622 	boolean_t user_specified = B_FALSE;
1623 	mac_cpus_t *srs_cpu = &mac_rx_srs->srs_cpu;
1624 
1625 	/*
1626 	 * Remove the no soft ring flag and we will adjust it
1627 	 * appropriately further down.
1628 	 */
1629 	mutex_enter(&mac_rx_srs->srs_lock);
1630 	mac_rx_srs->srs_type &= ~SRST_NO_SOFT_RINGS;
1631 	mutex_exit(&mac_rx_srs->srs_lock);
1632 
1633 	ASSERT(mac_rx_srs->srs_soft_ring_head == NULL);
1634 
1635 	if (mac_rx_srs->srs_type & SRST_BW_CONTROL)
1636 		soft_ring_flag |= ST_RING_BW_CTL;
1637 
1638 	ASSERT(mac_rx_srs->srs_fanout_state == SRS_FANOUT_UNINIT);
1639 	mac_rx_srs->srs_fanout_state = SRS_FANOUT_INIT;
1640 	user_specified = mrp->mrp_mask & MRP_CPUS_USERSPEC;
1641 	/*
1642 	 * Ring count can be 0 if no fanout is required and no cpu
1643 	 * were specified. Leave the SRS worker and poll thread
1644 	 * unbound
1645 	 */
1646 	ASSERT(mrp != NULL);
1647 	soft_ring_cnt = srs_cpu->mc_fanout_cnt;
1648 
1649 	/* Step 1: bind cpu contains cpu list where threads need to bind */
1650 	if (soft_ring_cnt > 0) {
1651 		mutex_enter(&cpu_lock);
1652 		for (i = 0; i < soft_ring_cnt; i++) {
1653 			cpuid = srs_cpu->mc_fanout_cpus[i];
1654 			/* Create the protocol softrings */
1655 			mac_srs_create_proto_softrings(i, (void *)flent,
1656 			    soft_ring_flag, mac_rx_srs->srs_pri,
1657 			    mcip, mac_rx_srs, cpuid, rx_func,
1658 			    x_arg1, x_arg2, B_FALSE);
1659 		}
1660 		worker_cpuid = srs_cpu->mc_workerid;
1661 		poll_cpuid = srs_cpu->mc_pollid;
1662 		mac_srs_worker_bind(mac_rx_srs, worker_cpuid);
1663 		mac_srs_poll_bind(mac_rx_srs, poll_cpuid);
1664 
1665 		/*
1666 		 * Bind Tx srs and soft ring threads too.
1667 		 * Let's bind tx srs to the last cpu in
1668 		 * mrp list.
1669 		 */
1670 		if (mac_tx_srs == NULL) {
1671 			mutex_exit(&cpu_lock);
1672 			goto alldone;
1673 		}
1674 
1675 		if (user_specified) {
1676 			BIND_TX_SRS_AND_SOFT_RINGS(mac_tx_srs, mrp);
1677 		}
1678 		mutex_exit(&cpu_lock);
1679 	} else {
1680 		mutex_enter(&cpu_lock);
1681 		/*
1682 		 * For a subflow, mrp_workerid and mrp_pollid
1683 		 * is not set.
1684 		 */
1685 		mac_srs_worker_bind(mac_rx_srs, mrp->mrp_workerid);
1686 		mac_srs_poll_bind(mac_rx_srs, mrp->mrp_pollid);
1687 		mutex_exit(&cpu_lock);
1688 		goto no_softrings;
1689 	}
1690 
1691 alldone:
1692 	if (soft_ring_cnt > 1)
1693 		mac_rx_srs->srs_type |= SRST_FANOUT_SRC_IP;
1694 	mac_srs_update_fanout_list(mac_rx_srs);
1695 	mac_srs_client_poll_enable(mcip, mac_rx_srs);
1696 	return;
1697 
1698 no_softrings:
1699 	if (mac_rx_srs->srs_type & SRST_FANOUT_PROTO) {
1700 		mutex_enter(&cpu_lock);
1701 		cpuid = mac_next_bind_cpu();
1702 		/* Create the protocol softrings */
1703 		mac_srs_create_proto_softrings(0, (void *)flent,
1704 		    soft_ring_flag, mac_rx_srs->srs_pri,
1705 		    mcip, mac_rx_srs, cpuid, rx_func,
1706 		    x_arg1, x_arg2, B_FALSE);
1707 		mutex_exit(&cpu_lock);
1708 	} else {
1709 		/*
1710 		 * This is the case when there is no fanout which is
1711 		 * true for subflows.
1712 		 */
1713 		mac_rx_srs->srs_type |= SRST_NO_SOFT_RINGS;
1714 	}
1715 	mac_srs_update_fanout_list(mac_rx_srs);
1716 	mac_srs_client_poll_enable(mcip, mac_rx_srs);
1717 }
1718 
1719 /*
1720  * mac_fanout_setup:
1721  *
1722  * Calls mac_srs_fanout_init() or modify() depending upon whether
1723  * the SRS is getting initialized or re-initialized.
1724  */
1725 void
1726 mac_fanout_setup(mac_client_impl_t *mcip, flow_entry_t *flent,
1727     mac_resource_props_t *mrp, mac_direct_rx_t rx_func, void *x_arg1,
1728     mac_resource_handle_t x_arg2)
1729 {
1730 	mac_soft_ring_set_t *mac_rx_srs, *mac_tx_srs;
1731 	int i, rx_srs_cnt;
1732 
1733 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
1734 	/*
1735 	 * This is an aggregation port. Fanout will be setup
1736 	 * over the aggregation itself.
1737 	 */
1738 	if (mcip->mci_state_flags & MCIS_IS_AGGR_PORT)
1739 		return;
1740 
1741 	mac_rx_srs = flent->fe_rx_srs[0];
1742 	/*
1743 	 * Set up the fanout on the tx side only once, with the
1744 	 * first rx SRS. The CPU binding, fanout, and bandwidth
1745 	 * criteria are common to both RX and TX, so
1746 	 * initializing them along side avoids redundant code.
1747 	 */
1748 	mac_tx_srs = flent->fe_tx_srs;
1749 	rx_srs_cnt = flent->fe_rx_srs_cnt;
1750 
1751 	/* No fanout for subflows */
1752 	if (flent->fe_type & FLOW_USER) {
1753 		mac_srs_fanout_init(mcip, flent, mrp, rx_func,
1754 		    x_arg1, x_arg2, mac_rx_srs, mac_tx_srs);
1755 		return;
1756 	}
1757 
1758 	mac_flow_cpu_init(flent, mrp);
1759 
1760 	/*
1761 	 * Set up fanout for both SW (0th SRS) and HW classified
1762 	 * SRS (the rest of Rx SRSs in flent).
1763 	 */
1764 	for (i = 0; i < rx_srs_cnt; i++) {
1765 		mac_rx_srs = flent->fe_rx_srs[i];
1766 		if (i != 0)
1767 			mac_tx_srs = NULL;
1768 		switch (mac_rx_srs->srs_fanout_state) {
1769 		case SRS_FANOUT_UNINIT:
1770 			mac_srs_fanout_init(mcip, flent, mrp, rx_func,
1771 			    x_arg1, x_arg2, mac_rx_srs, mac_tx_srs);
1772 			break;
1773 		case SRS_FANOUT_INIT:
1774 			break;
1775 		case SRS_FANOUT_REINIT:
1776 			mac_rx_srs_quiesce(mac_rx_srs, SRS_QUIESCE);
1777 			mac_srs_fanout_modify(mcip, flent, mrp, rx_func,
1778 			    x_arg1, x_arg2, mac_rx_srs, mac_tx_srs);
1779 			mac_rx_srs_restart(mac_rx_srs);
1780 			break;
1781 		default:
1782 			VERIFY(mac_rx_srs->srs_fanout_state <=
1783 			    SRS_FANOUT_REINIT);
1784 			break;
1785 		}
1786 	}
1787 }
1788 
1789 /*
1790  * mac_create_soft_ring_set:
1791  *
1792  * Create a mac_soft_ring_set_t (SRS). If soft_ring_fanout_type is
1793  * SRST_TX, an SRS for Tx side is created. Otherwise an SRS for Rx side
1794  * processing is created.
1795  *
1796  * Details on Rx SRS:
1797  * Create a SRS and also add the necessary soft rings for TCP and
1798  * non-TCP based on fanout type and count specified.
1799  *
1800  * mac_soft_ring_fanout, mac_srs_fanout_modify (?),
1801  * mac_soft_ring_stop_workers, mac_soft_ring_set_destroy, etc need
1802  * to be heavily modified.
1803  *
1804  * mi_soft_ring_list_size, mi_soft_ring_size, etc need to disappear.
1805  */
1806 mac_soft_ring_set_t *
1807 mac_srs_create(mac_client_impl_t *mcip, flow_entry_t *flent, uint32_t srs_type,
1808     mac_direct_rx_t rx_func, void *x_arg1, mac_resource_handle_t x_arg2,
1809     mac_ring_t *ring)
1810 {
1811 	mac_soft_ring_set_t 	*mac_srs;
1812 	mac_srs_rx_t		*srs_rx;
1813 	mac_srs_tx_t		*srs_tx;
1814 	mac_bw_ctl_t		*mac_bw;
1815 	mac_resource_props_t	*mrp;
1816 	boolean_t		is_tx_srs = ((srs_type & SRST_TX) != 0);
1817 
1818 	mac_srs = kmem_cache_alloc(mac_srs_cache, KM_SLEEP);
1819 	bzero(mac_srs, sizeof (mac_soft_ring_set_t));
1820 	srs_rx = &mac_srs->srs_rx;
1821 	srs_tx = &mac_srs->srs_tx;
1822 
1823 	mutex_enter(&flent->fe_lock);
1824 
1825 	/*
1826 	 * Get the bandwidth control structure from the flent. Get
1827 	 * rid of any residual values in the control structure for
1828 	 * the tx bw struct and also for the rx, if the rx srs is
1829 	 * the 1st one being brought up (the rx bw ctl struct may
1830 	 * be shared by multiple SRSs)
1831 	 */
1832 	if (is_tx_srs) {
1833 		mac_srs->srs_bw = &flent->fe_tx_bw;
1834 		bzero(mac_srs->srs_bw, sizeof (mac_bw_ctl_t));
1835 		flent->fe_tx_srs = mac_srs;
1836 	} else {
1837 		/*
1838 		 * The bw counter (stored in the flent) is shared
1839 		 * by SRS's within an rx group.
1840 		 */
1841 		mac_srs->srs_bw = &flent->fe_rx_bw;
1842 		/* First rx SRS, clear the bw structure */
1843 		if (flent->fe_rx_srs_cnt == 0)
1844 			bzero(mac_srs->srs_bw, sizeof (mac_bw_ctl_t));
1845 
1846 		/*
1847 		 * It is better to panic here rather than just assert because
1848 		 * on a non-debug kernel we might end up courrupting memory
1849 		 * and making it difficult to debug.
1850 		 */
1851 		if (flent->fe_rx_srs_cnt >= MAX_RINGS_PER_GROUP) {
1852 			panic("Array Overrun detected due to MAC client %p "
1853 			    " having more rings than %d", (void *)mcip,
1854 			    MAX_RINGS_PER_GROUP);
1855 		}
1856 		flent->fe_rx_srs[flent->fe_rx_srs_cnt] = mac_srs;
1857 		flent->fe_rx_srs_cnt++;
1858 	}
1859 	mac_srs->srs_flent = flent;
1860 	mutex_exit(&flent->fe_lock);
1861 
1862 	mac_srs->srs_state = 0;
1863 	mac_srs->srs_type = (srs_type | SRST_NO_SOFT_RINGS);
1864 	mac_srs->srs_worker_cpuid = mac_srs->srs_worker_cpuid_save = -1;
1865 	mac_srs->srs_poll_cpuid = mac_srs->srs_poll_cpuid_save = -1;
1866 	mac_srs_fanout_list_alloc(mac_srs);
1867 
1868 	/*
1869 	 * For a flow we use the underlying MAC client's priority range with
1870 	 * the priority value to find an absolute priority value. For a MAC
1871 	 * client we use the MAC client's maximum priority as the value.
1872 	 */
1873 	mrp = &flent->fe_effective_props;
1874 	if ((mac_srs->srs_type & SRST_FLOW) != 0) {
1875 		mac_srs->srs_pri = FLOW_PRIORITY(mcip->mci_min_pri,
1876 		    mcip->mci_max_pri, mrp->mrp_priority);
1877 	} else {
1878 		mac_srs->srs_pri = mcip->mci_max_pri;
1879 	}
1880 	mac_srs->srs_mcip = mcip;
1881 	/*
1882 	 * We need to insert the SRS in the global list before
1883 	 * binding the SRS and SR threads. Otherwise there is a
1884 	 * is a small window where the cpu reconfig callbacks
1885 	 * may miss the SRS in the list walk and DR could fail
1886 	 * as there are bound threads.
1887 	 */
1888 	mac_srs_add_glist(mac_srs);
1889 
1890 	/* Initialize bw limit */
1891 	if ((mrp->mrp_mask & MRP_MAXBW) != 0) {
1892 		mac_srs->srs_drain_func = mac_rx_srs_drain_bw;
1893 
1894 		mac_bw = mac_srs->srs_bw;
1895 		mutex_enter(&mac_bw->mac_bw_lock);
1896 		mac_bw->mac_bw_limit = FLOW_BYTES_PER_TICK(mrp->mrp_maxbw);
1897 
1898 		/*
1899 		 * Give twice the queuing capability before
1900 		 * dropping packets. The unit is bytes/tick.
1901 		 */
1902 		mac_bw->mac_bw_drop_threshold = mac_bw->mac_bw_limit << 1;
1903 		mutex_exit(&mac_bw->mac_bw_lock);
1904 		mac_srs->srs_type |= SRST_BW_CONTROL;
1905 	} else {
1906 		mac_srs->srs_drain_func = mac_rx_srs_drain;
1907 	}
1908 
1909 	/*
1910 	 * We use the following policy to control Receive
1911 	 * Side Dynamic Polling:
1912 	 * 1) We switch to poll mode anytime the processing thread causes
1913 	 *    a backlog to build up in SRS and its associated Soft Rings
1914 	 *    (sr_poll_pkt_cnt > 0).
1915 	 * 2) As long as the backlog stays under the low water mark
1916 	 *    (sr_lowat), we poll the H/W for more packets.
1917 	 * 3) If the backlog (sr_poll_pkt_cnt) exceeds low water mark, we
1918 	 *    stay in poll mode but don't poll the H/W for more packets.
1919 	 * 4) Anytime in polling mode, if we poll the H/W for packets and
1920 	 *    find nothing plus we have an existing backlog
1921 	 *    (sr_poll_pkt_cnt > 0), we stay in polling mode but don't poll
1922 	 *    the H/W for packets anymore (let the polling thread go to sleep).
1923 	 * 5) Once the backlog is relived (packets are processed) we reenable
1924 	 *    polling (by signalling the poll thread) only when the backlog
1925 	 *    dips below sr_poll_thres.
1926 	 * 6) sr_hiwat is used exclusively when we are not polling capable
1927 	 *    and is used to decide when to drop packets so the SRS queue
1928 	 *    length doesn't grow infinitely.
1929 	 */
1930 	if (!is_tx_srs) {
1931 		srs_rx->sr_hiwat = mac_soft_ring_max_q_cnt;
1932 		/* Low water mark needs to be less than high water mark */
1933 		srs_rx->sr_lowat = mac_soft_ring_min_q_cnt <=
1934 		    mac_soft_ring_max_q_cnt ? mac_soft_ring_min_q_cnt :
1935 		    (mac_soft_ring_max_q_cnt >> 2);
1936 		/* Poll threshold need to be half of low water mark or less */
1937 		srs_rx->sr_poll_thres = mac_soft_ring_poll_thres <=
1938 		    (srs_rx->sr_lowat >> 1) ? mac_soft_ring_poll_thres :
1939 		    (srs_rx->sr_lowat >> 1);
1940 		if (mac_latency_optimize)
1941 			mac_srs->srs_state |= SRS_LATENCY_OPT;
1942 		else
1943 			mac_srs->srs_state |= SRS_SOFTRING_QUEUE;
1944 	}
1945 
1946 	mac_srs->srs_worker = thread_create(NULL, 0,
1947 	    mac_srs_worker, mac_srs, 0, &p0, TS_RUN, mac_srs->srs_pri);
1948 
1949 	if (is_tx_srs) {
1950 		/* Handle everything about Tx SRS and return */
1951 		mac_srs->srs_drain_func = mac_tx_srs_drain;
1952 		srs_tx->st_max_q_cnt = mac_tx_srs_max_q_cnt;
1953 		srs_tx->st_hiwat =
1954 		    (mac_tx_srs_hiwat > mac_tx_srs_max_q_cnt) ?
1955 		    mac_tx_srs_max_q_cnt : mac_tx_srs_hiwat;
1956 		srs_tx->st_arg1 = x_arg1;
1957 		srs_tx->st_arg2 = x_arg2;
1958 		return (mac_srs);
1959 	}
1960 
1961 	if ((srs_type & SRST_FLOW) != 0 ||
1962 	    FLOW_TAB_EMPTY(mcip->mci_subflow_tab))
1963 		srs_rx->sr_lower_proc = mac_rx_srs_process;
1964 	else
1965 		srs_rx->sr_lower_proc = mac_rx_srs_subflow_process;
1966 
1967 	srs_rx->sr_func = rx_func;
1968 	srs_rx->sr_arg1 = x_arg1;
1969 	srs_rx->sr_arg2 = x_arg2;
1970 
1971 	if (ring != NULL) {
1972 		/* Is the mac_srs created over the RX default group? */
1973 		if (ring->mr_gh == (mac_group_handle_t)
1974 		    (&mcip->mci_mip->mi_rx_groups[0]))
1975 			mac_srs->srs_type |= SRST_DEFAULT_GRP;
1976 
1977 		mac_srs->srs_ring = ring;
1978 		ring->mr_srs = mac_srs;
1979 		ring->mr_classify_type = MAC_HW_CLASSIFIER;
1980 		ring->mr_flag |= MR_INCIPIENT;
1981 
1982 		if (FLOW_TAB_EMPTY(mcip->mci_subflow_tab) && mac_poll_enable)
1983 			mac_srs->srs_state |= SRS_POLLING_CAPAB;
1984 
1985 		mac_srs->srs_poll_thr = thread_create(NULL, 0,
1986 		    mac_rx_srs_poll_ring, mac_srs, 0, &p0, TS_RUN,
1987 		    mac_srs->srs_pri);
1988 		/*
1989 		 * Some drivers require serialization and don't send
1990 		 * packet chains in interrupt context. For such
1991 		 * drivers, we should always queue in soft ring
1992 		 * so that we get a chance to switch into a polling
1993 		 * mode under backlog.
1994 		 */
1995 		if (mcip->mci_mip->mi_v12n_level & MAC_VIRT_SERIALIZE)
1996 			mac_srs->srs_state |= SRS_SOFTRING_QUEUE;
1997 	}
1998 	return (mac_srs);
1999 }
2000 
2001 /*
2002  * Figure out the number of soft rings required. Its dependant on
2003  * if protocol fanout is required (for LINKs), global settings
2004  * require us to do fanout for performance (based on mac_soft_ring_enable),
2005  * or user has specifically requested fanout.
2006  */
2007 static uint32_t
2008 mac_find_fanout(flow_entry_t *flent, uint32_t link_type)
2009 {
2010 	uint32_t			fanout_type;
2011 	mac_resource_props_t		*mrp = &flent->fe_effective_props;
2012 
2013 	/* no fanout for subflows */
2014 	switch (link_type) {
2015 	case SRST_FLOW:
2016 		fanout_type = SRST_NO_SOFT_RINGS;
2017 		break;
2018 	case SRST_LINK:
2019 		fanout_type = SRST_FANOUT_PROTO;
2020 		break;
2021 	}
2022 
2023 	/* A primary NIC/link is being plumbed */
2024 	if (flent->fe_type & FLOW_PRIMARY_MAC) {
2025 		if (mac_soft_ring_enable && mac_rx_soft_ring_count > 1) {
2026 			fanout_type |= SRST_FANOUT_SRC_IP;
2027 		}
2028 	} else if (flent->fe_type & FLOW_VNIC) {
2029 		/* A VNIC is being created */
2030 		if (mrp != NULL && mrp->mrp_ncpus > 0) {
2031 			fanout_type |= SRST_FANOUT_SRC_IP;
2032 		}
2033 	}
2034 
2035 	return (fanout_type);
2036 }
2037 
2038 /*
2039  * Change a group from h/w to s/w classification.
2040  */
2041 static void
2042 mac_rx_switch_grp_to_sw(mac_group_t *group)
2043 {
2044 	mac_ring_t		*ring;
2045 	mac_soft_ring_set_t	*mac_srs;
2046 
2047 	for (ring = group->mrg_rings; ring != NULL; ring = ring->mr_next) {
2048 		if (ring->mr_classify_type == MAC_HW_CLASSIFIER) {
2049 			/*
2050 			 * Remove the SRS associated with the HW ring.
2051 			 * As a result, polling will be disabled.
2052 			 */
2053 			mac_srs = ring->mr_srs;
2054 			ASSERT(mac_srs != NULL);
2055 			mac_rx_srs_remove(mac_srs);
2056 			ring->mr_srs = NULL;
2057 		}
2058 
2059 		if (ring->mr_state != MR_INUSE)
2060 			(void) mac_start_ring(ring);
2061 		/*
2062 		 * We need to perform SW classification
2063 		 * for packets landing in these rings
2064 		 */
2065 		ring->mr_state = MR_INUSE;
2066 		ring->mr_flag = 0;
2067 		ring->mr_classify_type = MAC_SW_CLASSIFIER;
2068 	}
2069 }
2070 
2071 /*
2072  * Create the Rx SRS for S/W classifier and for each ring in the
2073  * group (if exclusive group). Also create the Tx SRS.
2074  */
2075 void
2076 mac_srs_group_setup(mac_client_impl_t *mcip, flow_entry_t *flent,
2077     mac_group_t *group, uint32_t link_type)
2078 {
2079 	mac_impl_t		*mip = mcip->mci_mip;
2080 	mac_soft_ring_set_t	*mac_srs;
2081 	mac_soft_ring_set_t	*tx_srs = NULL;
2082 	mac_ring_t 		*ring;
2083 	uint32_t		fanout_type;
2084 	boolean_t		created_srs = B_FALSE;
2085 
2086 	fanout_type = mac_find_fanout(flent, link_type);
2087 
2088 	/* Create the SRS for S/W classification if none exists */
2089 	if (flent->fe_rx_srs[0] == NULL) {
2090 		ASSERT(flent->fe_rx_srs_cnt == 0);
2091 		/* Setup the Rx SRS */
2092 		mac_srs = mac_srs_create(mcip, flent, fanout_type | link_type,
2093 		    mac_rx_deliver, mcip, NULL, NULL);
2094 
2095 		mutex_enter(&flent->fe_lock);
2096 		flent->fe_cb_fn = (flow_fn_t)mac_srs->srs_rx.sr_lower_proc;
2097 		flent->fe_cb_arg1 = (void *)mip;
2098 		flent->fe_cb_arg2 = (void *)mac_srs;
2099 		mutex_exit(&flent->fe_lock);
2100 
2101 		/* Setup the Tx SRS as well */
2102 		ASSERT(flent->fe_tx_srs == NULL);
2103 		tx_srs = mac_srs_create(mcip, flent, SRST_TX | link_type,
2104 		    NULL, mcip, NULL, NULL);
2105 
2106 		if (mcip->mci_share != NULL) {
2107 			mac_srs_tx_t	*tx = &tx_srs->srs_tx;
2108 			ASSERT((mcip->mci_state_flags & MCIS_NO_HWRINGS) == 0);
2109 			/*
2110 			 * A share requires a dedicated TX group.
2111 			 * mac_reserve_tx_group() does the work needed to
2112 			 * allocate a new group and populate that group
2113 			 * with rings according to the driver requirements
2114 			 * and limitations.
2115 			 */
2116 			tx->st_group =
2117 			    mac_reserve_tx_group(mip, mcip->mci_share);
2118 			ASSERT(tx->st_group != NULL);
2119 			tx->st_group->mrg_tx_client = mcip;
2120 		}
2121 		mac_tx_srs_setup(mcip, flent, link_type);
2122 		created_srs = B_TRUE;
2123 	}
2124 
2125 	if (group == NULL) {
2126 		if (created_srs) {
2127 			mac_fanout_setup(mcip, flent,
2128 			    MCIP_RESOURCE_PROPS(mcip), mac_rx_deliver,
2129 			    mcip, NULL);
2130 		}
2131 		return;
2132 	}
2133 
2134 	/*
2135 	 * fanout for default SRS is done when default SRS are created
2136 	 * above. As each ring is added to the group, we setup the
2137 	 * SRS and fanout to it.
2138 	 */
2139 	switch (group->mrg_state) {
2140 	case MAC_GROUP_STATE_RESERVED:
2141 		/*
2142 		 * The group is exclusively ours. Create a SRS
2143 		 * for each ring in the group and allow the
2144 		 * individual SRS to dynamically poll their
2145 		 * Rx ring. Do this only if the  client is not
2146 		 * a VLAN MAC client since for VLAN we do
2147 		 * s/w classification for the VID check.
2148 		 */
2149 		if (i_mac_flow_vid(mcip->mci_flent) != VLAN_ID_NONE)
2150 			break;
2151 		for (ring = group->mrg_rings; ring != NULL;
2152 		    ring = ring->mr_next) {
2153 			switch (ring->mr_state) {
2154 			case MR_INUSE:
2155 			case MR_FREE:
2156 				if (ring->mr_srs != NULL)
2157 					break;
2158 				if (ring->mr_state != MR_INUSE)
2159 					(void) mac_start_ring(ring);
2160 
2161 				ring->mr_state = MR_INUSE;
2162 
2163 				mac_srs = mac_srs_create(mcip, flent,
2164 				    fanout_type | link_type,
2165 				    mac_rx_deliver, mcip, NULL, ring);
2166 				break;
2167 			default:
2168 				cmn_err(CE_PANIC, "srs_setup: mcip = %p "
2169 				    "trying to add UNKNOWN ring = %p\n",
2170 				    (void *)mcip, (void *)ring);
2171 				break;
2172 			}
2173 		}
2174 		break;
2175 	case MAC_GROUP_STATE_SHARED:
2176 		/*
2177 		 * Set all rings of this group to software classified.
2178 		 *
2179 		 * If the group is current RESERVED, the existing mac client
2180 		 * (the only client on this group) is using this group
2181 		 * exclusively.  In that case we need to disable polling on
2182 		 * the rings of the group (if it was enabled), and free the
2183 		 * SRS associated with the rings.
2184 		 */
2185 		mac_rx_switch_grp_to_sw(group);
2186 		break;
2187 	default:
2188 		ASSERT(B_FALSE);
2189 		break;
2190 	}
2191 	mac_fanout_setup(mcip, flent, MCIP_RESOURCE_PROPS(mcip),
2192 	    mac_rx_deliver, mcip, NULL);
2193 }
2194 
2195 void
2196 mac_srs_group_teardown(mac_client_impl_t *mcip, flow_entry_t *flent,
2197     uint32_t link_type)
2198 {
2199 	mac_soft_ring_set_t	*mac_srs;
2200 	mac_soft_ring_set_t	*tx_srs;
2201 	mac_srs_tx_t		*tx;
2202 	int			i;
2203 
2204 	for (i = 0; i < flent->fe_rx_srs_cnt; i++) {
2205 		mac_srs = flent->fe_rx_srs[i];
2206 		mac_rx_srs_quiesce(mac_srs, SRS_CONDEMNED);
2207 		/*
2208 		 * Deal with all fanout tear down etc.
2209 		 */
2210 		mac_srs_free(mac_srs);
2211 		flent->fe_rx_srs[i] = NULL;
2212 	}
2213 	flent->fe_rx_srs_cnt = 0;
2214 
2215 	tx_srs = flent->fe_tx_srs;
2216 	tx = &tx_srs->srs_tx;
2217 	switch (link_type) {
2218 	case SRST_FLOW:
2219 		/*
2220 		 * For flows, we need to work with passed
2221 		 * flent to find the Rx/Tx SRS.
2222 		 */
2223 		mac_tx_srs_quiesce(tx_srs, SRS_CONDEMNED);
2224 		break;
2225 	case SRST_LINK:
2226 		mac_tx_client_quiesce(mcip, SRS_CONDEMNED);
2227 		/*
2228 		 * Release the TX resources. First the TX group, if any
2229 		 * was assigned to the MAC client, which will cause the
2230 		 * TX rings to be moved back to the pool. Then free the
2231 		 * rings themselves.
2232 		 */
2233 		if (tx->st_group != NULL) {
2234 			mac_release_tx_group(tx_srs->srs_mcip->mci_mip,
2235 			    tx->st_group);
2236 			tx->st_group = NULL;
2237 		}
2238 		if (tx->st_ring_count != 0) {
2239 			kmem_free(tx->st_rings,
2240 			    sizeof (mac_ring_handle_t) * tx->st_ring_count);
2241 		}
2242 		if (tx->st_arg2 != NULL) {
2243 			ASSERT(tx_srs->srs_type & SRST_TX);
2244 			mac_release_tx_ring(tx->st_arg2);
2245 		}
2246 		break;
2247 	default:
2248 		ASSERT(B_FALSE);
2249 		break;
2250 	}
2251 	mac_srs_free(tx_srs);
2252 	flent->fe_tx_srs = NULL;
2253 }
2254 
2255 /*
2256  * This is the group state machine. The state of an Rx group is given by
2257  * the following table. The default group and its rings are started in
2258  * mac_start itself and the default group stays in SHARED state until
2259  * mac_stop at which time the group and rings are stopped and and it
2260  * reverts to the Registered state.
2261  *
2262  * Typically this function is called on a group after adding or removing a
2263  * client from it, to find out what should be the new state of the group.
2264  * If the new state is RESERVED, then the client that owns this group
2265  * exclusively is also returned. Note that adding or removing a client from
2266  * a group could also impact the default group and the caller needs to
2267  * evaluate the effect on the default group.
2268  *
2269  * Group type		# of clients	mi_nactiveclients	Group State
2270  *			in the group
2271  *
2272  * Non-default		0		N.A.			REGISTERED
2273  * Non-default		1		N.A.			RESERVED
2274  * Non-default		> 1		N.A.			SHARED
2275  *
2276  * Default		0		N.A.			SHARED
2277  * Default		1		1			RESERVED
2278  * Default		1		> 1			SHARED
2279  * Default		> 1		N.A.			SHARED
2280  */
2281 mac_group_state_t
2282 mac_rx_group_next_state(mac_group_t *grp, mac_client_impl_t **group_only_mcip)
2283 {
2284 	mac_impl_t		*mip = (mac_impl_t *)grp->mrg_mh;
2285 
2286 	*group_only_mcip = NULL;
2287 
2288 	/* Non-default group */
2289 
2290 	if (grp != mip->mi_rx_groups) {
2291 		if (MAC_RX_GROUP_NO_CLIENT(grp))
2292 			return (MAC_GROUP_STATE_REGISTERED);
2293 
2294 		*group_only_mcip = MAC_RX_GROUP_ONLY_CLIENT(grp);
2295 		if (*group_only_mcip != NULL)
2296 			return (MAC_GROUP_STATE_RESERVED);
2297 
2298 		return (MAC_GROUP_STATE_SHARED);
2299 	}
2300 
2301 	/* Default group */
2302 
2303 	if (MAC_RX_GROUP_NO_CLIENT(grp) || mip->mi_nactiveclients != 1)
2304 		return (MAC_GROUP_STATE_SHARED);
2305 
2306 	*group_only_mcip = MAC_RX_GROUP_ONLY_CLIENT(grp);
2307 	ASSERT(*group_only_mcip != NULL);
2308 	return (MAC_GROUP_STATE_RESERVED);
2309 }
2310 
2311 /*
2312  * OVERVIEW NOTES FOR DATAPATH
2313  * ===========================
2314  *
2315  * Create an SRS and setup the corresponding flow function and args.
2316  * Add a classification rule for the flow specified by 'flent' and program
2317  * the hardware classifier when applicable.
2318  *
2319  * Rx ring assignment, SRS, polling and B/W enforcement
2320  * ----------------------------------------------------
2321  *
2322  * We try to use H/W classification on NIC and assign traffic to a
2323  * MAC address to a particular Rx ring. There is a 1-1 mapping
2324  * between a SRS and a Rx ring. The SRS (short for soft ring set)
2325  * dynamically switches the underlying Rx ring between interrupt
2326  * and polling mode and enforces any specified B/W control.
2327  *
2328  * There is always a SRS created and tied to each H/W and S/W rule.
2329  * Whenever we create a H/W rule, we always add the the same rule to
2330  * S/W classifier and tie a SRS to it.
2331  *
2332  * In case a B/W control is specified, its broken into bytes
2333  * per ticks and as soon as the quota for a tick is exhausted,
2334  * the underlying Rx ring is forced into poll mode for remianing
2335  * tick. The SRS poll thread only polls for bytes that are
2336  * allowed to come in the SRS. We typically let 4x the configured
2337  * B/W worth of packets to come in the SRS (to prevent unnecessary
2338  * drops due to bursts) but only process the specified amount.
2339  *
2340  * A Link (primary NIC, VNIC, VLAN or aggr) can have 1 or more
2341  * Rx rings (and corresponding SRSs) assigned to it. The SRS
2342  * in turn can have softrings to do protocol level fanout or
2343  * softrings to do S/W based fanout or both. In case the NIC
2344  * has no Rx rings, we do S/W classification to respective SRS.
2345  * The S/W classification rule is always setup and ready. This
2346  * allows the MAC layer to reassign Rx rings whenever needed
2347  * but packets still continue to flow via the default path and
2348  * getting S/W classified to correct SRS.
2349  *
2350  * In other cases where a NIC or VNIC is plumbed, our goal is use
2351  * H/W classifier and get two Rx ring assigned for the Link. One
2352  * for TCP and one for UDP|SCTP. The respective SRS still do the
2353  * polling on the Rx ring. For Link that is plumbed for IP, there
2354  * is a TCP squeue which also does polling and can control the
2355  * the Rx ring directly (where SRS is just pass through). For
2356  * the following cases, the SRS does the polling underneath.
2357  * 1) non IP based Links (Links which are not plumbed via ifconfig)
2358  *    and paths which have no IP squeues (UDP & SCTP)
2359  * 2) If B/W control is specified on the Link
2360  * 3) If S/W fanout is secified
2361  *
2362  * Note1: As of current implementation, we try to assign only 1 Rx
2363  * ring per Link and more than 1 Rx ring for primary Link for
2364  * H/W based fanout. We always create following softrings per SRS:
2365  * 1) TCP softring which is polled by TCP squeue where possible
2366  *    (and also bypasses DLS)
2367  * 2) UDP/SCTP based which bypasses DLS
2368  * 3) OTH softring which goes via DLS (currently deal with IPv6
2369  *    and non TCP/UDP/SCTP for IPv4 packets).
2370  *
2371  * It is necessary to create 3 softrings since SRS has to poll
2372  * the single Rx ring underneath and enforce any link level B/W
2373  * control (we can't switch the Rx ring in poll mode just based
2374  * on TCP squeue if the same Rx ring is sharing UDP and other
2375  * traffic as well). Once polling is done and any Link level B/W
2376  * control is specified, the packets are assigned to respective
2377  * softring based on protocol. Since TCP has IP based squeue
2378  * which benefits by polling, we separate TCP packets into
2379  * its own softring which can be polled by IP squeue. We need
2380  * to separate out UDP/SCTP to UDP softring since it can bypass
2381  * the DLS layer which has heavy performance advanatges and we
2382  * need a softring (OTH) for rest.
2383  *
2384  * ToDo: The 3 softrings for protocol are needed only till we can
2385  * get rid of DLS from datapath, make IPv4 and IPv6 paths
2386  * symmetric (deal with mac_header_info for v6 and polling for
2387  * IPv4 TCP - ip_accept_tcp is IPv4 specific although squeues
2388  * are generic), and bring SAP based classification to MAC layer
2389  *
2390  * H/W and S/W based fanout and multiple Rx rings per Link
2391  * -------------------------------------------------------
2392  *
2393  * In case, fanout is requested (or determined automatically based
2394  * on Link speed and processor speed), we try to assign multiple
2395  * Rx rings per Link with their respective SRS. In this case
2396  * the NIC should be capable of fanning out incoming packets between
2397  * the assigned Rx rings (H/W based fanout). All the SRS
2398  * individually switch their Rx ring between interrupt and polling
2399  * mode but share a common B/W control counter in case of Link
2400  * level B/W is specified.
2401  *
2402  * If S/W based fanout is specified in lieu of H/W based fanout,
2403  * the Link SRS creates the specified number of softrings for
2404  * each protocol (TCP, UDP, OTH). Incoming packets are fanned
2405  * out to the correct softring based on their protocol and
2406  * protocol specific hash function.
2407  *
2408  * Primary and non primary MAC clients
2409  * -----------------------------------
2410  *
2411  * The NICs, VNICs, Vlans, and Aggrs are typically termed as Links
2412  * and are a Layer 2 construct.
2413  *
2414  * Primary NIC:
2415  *	The Link that owns the primary MAC address and typically
2416  *	is used as the data NIC in non virtualized cases. As such
2417  *	H/W resources are preferntially given to primary NIC. As
2418  *	far as code is concerned, there is no difference in the
2419  *	primary NIC vs VNICs. They are all treated as Links.
2420  *	At the very first call to mac_unicast_add() we program the S/W
2421  *	classifier for the primary MAC address, get a soft ring set
2422  *	(and soft rings based on 'ip_soft_ring_cnt')
2423  *	and a Rx ring assigned for polling to get enabled.
2424  *	When IP get plumbed and negotiates polling, we can
2425  *	let squeue do the polling on TCP softring.
2426  *
2427  * VNICs:
2428  *	Same as any other Link. As long as the H/W resource assignments
2429  *	are equal, the data path and setup for all Links is same.
2430  *
2431  * Flows:
2432  *	Can be configured on Links. They have their own SRS and the
2433  *	S/W classifier is programmed appropriately based on the flow.
2434  *	The flows typically deal with layer 3 and above and
2435  *	creates a soft ring set specific to the flow. The receive
2436  *	side function is switched from mac_rx_srs_process to
2437  *	mac_rx_srs_subflow_process which first tries to assign the
2438  *	packet to appropriate flow SRS and failing which assigns it
2439  *	to link SRS. This allows us to avoid the layered approach
2440  *	which gets complex.
2441  *
2442  * By the time mac_datapath_setup() completes, we already have the
2443  * soft rings set, Rx rings, soft rings, etc figured out and both H/W
2444  * and S/W classifiers programmed. IP is not plumbed yet (and might
2445  * never be for Virtual Machines guest OS path). When IP is plumbed
2446  * (for both NIC and VNIC), we do a capability negotiation for polling
2447  * and upcall functions etc.
2448  *
2449  * Rx ring Assignement NOTES
2450  * -------------------------
2451  *
2452  * For NICs which have only 1 Rx ring (we treat  NICs with no Rx rings
2453  * as NIC with a single default ring), we assign the only ring to
2454  * primary Link as MAC_RX_HW_DEFAULT_RING. The primary Link SRS can do
2455  * polling on it as long as it is the only link in use and we compare
2456  * the MAC address for unicast packets before accepting an incoming
2457  * packet (there is no need for S/W classification in this case). We
2458  * disable polling on the only ring the moment 2nd link gets created
2459  * (the polling remains enabled even though there are broadcast and
2460  * multicast flows created).
2461  *
2462  * If the NIC has more than 1 Rx ring, we assign the default ring (the
2463  * 1st ring) to deal with broadcast, multicast and traffic for other
2464  * NICs which needs S/W classification. We assign the primary mac
2465  * addresses to another ring by specifiying a classification rule for
2466  * primary unicast MAC address to the selected ring. The primary Link
2467  * (and its SRS) can continue to poll the assigned Rx ring at all times
2468  * independantly.
2469  *
2470  * Right now we just assign MAC_RX_HW_DEFAULT_RING to note that it is
2471  * primary NIC and later we will check to see how many Rx rings we
2472  * have and can we get a non default Rx ring for the primary MAC.
2473  *
2474  * Note: In future, if no fanout is specified, we try to assign 2 Rx
2475  * rings for the primary Link with the primary MAC address + TCP going
2476  * to one ring and primary MAC address + UDP|SCTP going to other ring.
2477  * Any remaining traffic for primary MAC address can go to the default
2478  * Rx ring and get S/W classified. This way the respective SRSs don't
2479  * need to do proto fanout and don't need to have softrings at all and
2480  * can poll their respective Rx rings.
2481  *
2482  * As an optimization, when a new NIC or VNIC is created, we can get
2483  * only one Rx ring and make it a TCP specific Rx ring and use the
2484  * H/W default Rx ring for the rest (this Rx ring is never polled).
2485  */
2486 int
2487 mac_datapath_setup(mac_client_impl_t *mcip, flow_entry_t *flent,
2488     uint32_t link_type)
2489 {
2490 	mac_impl_t		*mip = mcip->mci_mip;
2491 	mac_group_t		*group = NULL;
2492 	mac_group_t		*default_group;
2493 	int			err;
2494 	uint8_t 		*mac_addr;
2495 	mac_rx_group_reserve_type_t	rtype = MAC_RX_RESERVE_NONDEFAULT;
2496 	mac_group_state_t	next_state;
2497 	mac_client_impl_t	*group_only_mcip;
2498 
2499 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mip));
2500 
2501 	switch (link_type) {
2502 	case SRST_FLOW:
2503 		mac_srs_group_setup(mcip, flent, NULL, link_type);
2504 		return (0);
2505 
2506 	case SRST_LINK:
2507 		mac_addr = flent->fe_flow_desc.fd_dst_mac;
2508 
2509 		/* Check if we need to reserve the default group */
2510 		if (flent->fe_type & FLOW_PRIMARY_MAC)
2511 			rtype = MAC_RX_RESERVE_DEFAULT;
2512 
2513 		if ((mcip->mci_state_flags & MCIS_NO_HWRINGS) == 0) {
2514 			/*
2515 			 * Check to see if we can get an exclusive group for
2516 			 * this mac address or if there already exists a
2517 			 * group that has this mac address (case of VLANs).
2518 			 * If no groups are available, use the default group.
2519 			 */
2520 			group = mac_reserve_rx_group(mcip, mac_addr, rtype);
2521 		}
2522 
2523 		if (group == NULL) {
2524 			if ((mcip->mci_state_flags & MCIS_REQ_HWRINGS) != 0)
2525 				return (ENOSPC);
2526 			group = &mip->mi_rx_groups[0];
2527 		}
2528 
2529 		/*
2530 		 * Some NICs don't support any Rx rings, so there may not
2531 		 * even be a default group.
2532 		 */
2533 		if (group != NULL) {
2534 			flent->fe_rx_ring_group = group;
2535 			/*
2536 			 * Add the client to the group. This could cause
2537 			 * either this group to move to the shared state or
2538 			 * cause the default group to move to the shared state.
2539 			 * The actions on this group are done here, while the
2540 			 * actions on the default group are postponed to
2541 			 * the end of this function.
2542 			 */
2543 			mac_rx_group_add_client(group, mcip);
2544 			next_state = mac_rx_group_next_state(group,
2545 			    &group_only_mcip);
2546 
2547 			ASSERT((next_state == MAC_GROUP_STATE_RESERVED &&
2548 			    mcip == group_only_mcip) ||
2549 			    (next_state == MAC_GROUP_STATE_SHARED &&
2550 			    group_only_mcip == NULL));
2551 
2552 			mac_set_rx_group_state(group, next_state);
2553 		}
2554 
2555 		/*
2556 		 * Setup the Rx and Tx SRSes. If we got a pristine group
2557 		 * exclusively above, mac_srs_group_setup would simply create
2558 		 * the required SRSes. If we ended up sharing a previously
2559 		 * reserved group, mac_srs_group_setup would also dismantle the
2560 		 * SRSes of the previously exclusive group
2561 		 */
2562 		mac_srs_group_setup(mcip, flent, group, link_type);
2563 
2564 		/* Program the S/W Classifer */
2565 		if ((err = mac_flow_add(mip->mi_flow_tab, flent)) != 0)
2566 			goto setup_failed;
2567 
2568 		/* Program the H/W Classifier */
2569 		if ((err = mac_add_macaddr(mip, group, mac_addr,
2570 		    (mcip->mci_state_flags & MCIS_UNICAST_HW) != 0)) != 0)
2571 			goto setup_failed;
2572 		mcip->mci_unicast = mac_find_macaddr(mip, mac_addr);
2573 		ASSERT(mcip->mci_unicast != NULL);
2574 		break;
2575 
2576 	default:
2577 		ASSERT(B_FALSE);
2578 		break;
2579 	}
2580 
2581 	/*
2582 	 * All broadcast and multicast traffic is received only on the default
2583 	 * group. If we have setup the datapath for a non-default group above
2584 	 * then move the default group to shared state to allow distribution of
2585 	 * incoming broadcast traffic to the other groups and dismantle the
2586 	 * SRSes over the default group.
2587 	 */
2588 	if (group != NULL) {
2589 		if (group != mip->mi_rx_groups) {
2590 			default_group = mip->mi_rx_groups;
2591 			if (default_group->mrg_state ==
2592 			    MAC_GROUP_STATE_RESERVED) {
2593 				group_only_mcip = MAC_RX_GROUP_ONLY_CLIENT(
2594 				    default_group);
2595 				ASSERT(group_only_mcip != NULL &&
2596 				    mip->mi_nactiveclients > 1);
2597 
2598 				mac_set_rx_group_state(default_group,
2599 				    MAC_GROUP_STATE_SHARED);
2600 				mac_srs_group_setup(group_only_mcip,
2601 				    group_only_mcip->mci_flent,
2602 				    default_group, SRST_LINK);
2603 			}
2604 			ASSERT(default_group->mrg_state ==
2605 			    MAC_GROUP_STATE_SHARED);
2606 		}
2607 		/*
2608 		 * If we get an exclusive group for a VLAN MAC client we
2609 		 * need to take the s/w path to make the additional check for
2610 		 * the vid. Disable polling and set it to s/w classification.
2611 		 */
2612 		if (group->mrg_state == MAC_GROUP_STATE_RESERVED &&
2613 		    i_mac_flow_vid(mcip->mci_flent) != VLAN_ID_NONE) {
2614 			mac_rx_switch_grp_to_sw(group);
2615 		}
2616 	}
2617 	return (0);
2618 
2619 setup_failed:
2620 	mac_datapath_teardown(mcip, flent, link_type);
2621 	return (err);
2622 }
2623 
2624 void
2625 mac_datapath_teardown(mac_client_impl_t *mcip, flow_entry_t *flent,
2626     uint32_t link_type)
2627 {
2628 	mac_impl_t		*mip = mcip->mci_mip;
2629 	mac_group_t		*group = NULL;
2630 	mac_client_impl_t	*grp_only_mcip;
2631 	flow_entry_t		*group_only_flent;
2632 	mac_group_t		*default_group;
2633 	boolean_t		check_default_group = B_FALSE;
2634 	mac_group_state_t	next_state;
2635 
2636 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mip));
2637 
2638 	switch (link_type) {
2639 	case SRST_FLOW:
2640 		mac_srs_group_teardown(mcip, flent, SRST_FLOW);
2641 		return;
2642 
2643 	case SRST_LINK:
2644 		/* Stop sending packets */
2645 		mac_tx_client_block(mcip);
2646 
2647 		/* Stop the packets coming from the H/W */
2648 		if (mcip->mci_unicast != NULL) {
2649 			int err;
2650 			err = mac_remove_macaddr(mcip->mci_unicast);
2651 			if (err != 0) {
2652 				cmn_err(CE_WARN, "%s: failed to remove a MAC"
2653 				    " address because of error 0x%x",
2654 				    mip->mi_name, err);
2655 			}
2656 			mcip->mci_unicast = NULL;
2657 		}
2658 
2659 		/* Stop the packets coming from the S/W classifier */
2660 		mac_flow_remove(mip->mi_flow_tab, flent, B_FALSE);
2661 		mac_flow_wait(flent, FLOW_DRIVER_UPCALL);
2662 
2663 		/* Now quiesce and destroy all SRS and soft rings */
2664 		mac_srs_group_teardown(mcip, flent, SRST_LINK);
2665 		ASSERT((mcip->mci_flent == flent) &&
2666 		    (flent->fe_next == NULL));
2667 
2668 		/*
2669 		 * Release our hold on the group as well. We need
2670 		 * to check if the shared group has only one client
2671 		 * left who can use it exclusively. Also, if we
2672 		 * were the last client, release the group.
2673 		 */
2674 		group = flent->fe_rx_ring_group;
2675 		if (group != NULL) {
2676 			mac_rx_group_remove_client(group, mcip);
2677 			next_state = mac_rx_group_next_state(group,
2678 			    &grp_only_mcip);
2679 			if (next_state == MAC_GROUP_STATE_RESERVED) {
2680 				/*
2681 				 * Only one client left on this RX group.
2682 				 */
2683 				ASSERT(grp_only_mcip != NULL);
2684 				mac_set_rx_group_state(group,
2685 				    MAC_GROUP_STATE_RESERVED);
2686 				group_only_flent = grp_only_mcip->mci_flent;
2687 
2688 				/*
2689 				 * The only remaining client has exclusive
2690 				 * access on the group. Allow it to
2691 				 * dynamically poll the H/W rings etc.
2692 				 */
2693 				mac_srs_group_setup(grp_only_mcip,
2694 				    group_only_flent, group, SRST_LINK);
2695 				mac_rx_group_unmark(group, MR_INCIPIENT);
2696 			} else if (next_state == MAC_GROUP_STATE_REGISTERED) {
2697 				/*
2698 				 * This is a non-default group being freed up.
2699 				 * We need to reevaluate the default group
2700 				 * to see if the primary client can get
2701 				 * exclusive access to the default group.
2702 				 */
2703 				ASSERT(group != mip->mi_rx_groups);
2704 				mac_release_rx_group(mcip, group);
2705 				mac_set_rx_group_state(group,
2706 				    MAC_GROUP_STATE_REGISTERED);
2707 				check_default_group = B_TRUE;
2708 			} else {
2709 				ASSERT(next_state == MAC_GROUP_STATE_SHARED);
2710 				mac_set_rx_group_state(group,
2711 				    MAC_GROUP_STATE_SHARED);
2712 				mac_rx_group_unmark(group, MR_CONDEMNED);
2713 			}
2714 			flent->fe_rx_ring_group = NULL;
2715 		}
2716 		break;
2717 	default:
2718 		ASSERT(B_FALSE);
2719 		break;
2720 	}
2721 
2722 	/*
2723 	 * The mac client using the default group gets exclusive access to the
2724 	 * default group if and only if it is the sole client on the entire
2725 	 * mip. If so set the group state to reserved, and set up the SRSes
2726 	 * over the default group.
2727 	 */
2728 	if (check_default_group) {
2729 		default_group = mip->mi_rx_groups;
2730 		ASSERT(default_group->mrg_state == MAC_GROUP_STATE_SHARED);
2731 		next_state = mac_rx_group_next_state(default_group,
2732 		    &grp_only_mcip);
2733 		if (next_state == MAC_GROUP_STATE_RESERVED) {
2734 			ASSERT(grp_only_mcip != NULL &&
2735 			    mip->mi_nactiveclients == 1);
2736 			mac_set_rx_group_state(default_group,
2737 			    MAC_GROUP_STATE_RESERVED);
2738 			mac_srs_group_setup(grp_only_mcip,
2739 			    grp_only_mcip->mci_flent,
2740 			    default_group, SRST_LINK);
2741 			mac_rx_group_unmark(default_group, MR_INCIPIENT);
2742 		}
2743 	}
2744 }
2745 
2746 /* DATAPATH TEAR DOWN ROUTINES (SRS and FANOUT teardown) */
2747 
2748 static void
2749 mac_srs_fanout_list_free(mac_soft_ring_set_t *mac_srs)
2750 {
2751 	ASSERT(mac_srs->srs_tcp_soft_rings != NULL);
2752 	kmem_free(mac_srs->srs_tcp_soft_rings,
2753 	    sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT);
2754 	mac_srs->srs_tcp_soft_rings = NULL;
2755 	ASSERT(mac_srs->srs_udp_soft_rings != NULL);
2756 	kmem_free(mac_srs->srs_udp_soft_rings,
2757 	    sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT);
2758 	mac_srs->srs_udp_soft_rings = NULL;
2759 	ASSERT(mac_srs->srs_oth_soft_rings != NULL);
2760 	kmem_free(mac_srs->srs_oth_soft_rings,
2761 	    sizeof (mac_soft_ring_t *) * MAX_SR_FANOUT);
2762 	mac_srs->srs_oth_soft_rings = NULL;
2763 }
2764 
2765 /*
2766  * An RX SRS is attached to at most one mac_ring.
2767  * A TX SRS  has no  rings.
2768  */
2769 static void
2770 mac_srs_ring_free(mac_soft_ring_set_t *mac_srs)
2771 {
2772 	mac_client_impl_t	*mcip;
2773 	mac_ring_t		*ring;
2774 	flow_entry_t		*flent;
2775 
2776 	ring = mac_srs->srs_ring;
2777 	if (mac_srs->srs_type & SRST_TX) {
2778 		ASSERT(ring == NULL);
2779 		return;
2780 	}
2781 
2782 	if (ring == NULL)
2783 		return;
2784 
2785 	/*
2786 	 * Broadcast flows don't have a client impl association, but they
2787 	 * use only soft rings.
2788 	 */
2789 	flent = mac_srs->srs_flent;
2790 	mcip = flent->fe_mcip;
2791 	ASSERT(mcip != NULL);
2792 
2793 	ring->mr_classify_type = MAC_NO_CLASSIFIER;
2794 	ring->mr_srs = NULL;
2795 }
2796 
2797 /*
2798  * Physical unlink and free of the data structures happen below. This is
2799  * driven from mac_flow_destroy(), on the last refrele of a flow.
2800  *
2801  * Assumes Rx srs is 1-1 mapped with an ring.
2802  */
2803 void
2804 mac_srs_free(mac_soft_ring_set_t *mac_srs)
2805 {
2806 	ASSERT(mac_srs->srs_mcip == NULL ||
2807 	    MAC_PERIM_HELD((mac_handle_t)mac_srs->srs_mcip->mci_mip));
2808 	ASSERT((mac_srs->srs_state & (SRS_CONDEMNED | SRS_CONDEMNED_DONE |
2809 	    SRS_PROC | SRS_PROC_FAST)) == (SRS_CONDEMNED | SRS_CONDEMNED_DONE));
2810 
2811 	mac_pkt_drop(NULL, NULL, mac_srs->srs_first, B_FALSE);
2812 	mac_srs_ring_free(mac_srs);
2813 	mac_srs_soft_rings_free(mac_srs, B_TRUE);
2814 	mac_srs_fanout_list_free(mac_srs);
2815 
2816 	mac_srs->srs_bw = NULL;
2817 	kmem_cache_free(mac_srs_cache, mac_srs);
2818 }
2819 
2820 static void
2821 mac_srs_soft_rings_quiesce(mac_soft_ring_set_t *mac_srs, uint_t s_ring_flag)
2822 {
2823 	mac_soft_ring_t	*softring;
2824 
2825 	ASSERT(MUTEX_HELD(&mac_srs->srs_lock));
2826 
2827 	mac_srs_soft_rings_signal(mac_srs, s_ring_flag);
2828 	if (s_ring_flag == S_RING_CONDEMNED) {
2829 		while (mac_srs->srs_soft_ring_condemned_count !=
2830 		    mac_srs->srs_soft_ring_count)
2831 			cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
2832 	} else {
2833 		while (mac_srs->srs_soft_ring_quiesced_count !=
2834 		    mac_srs->srs_soft_ring_count)
2835 			cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
2836 	}
2837 	mutex_exit(&mac_srs->srs_lock);
2838 
2839 	for (softring = mac_srs->srs_soft_ring_head; softring != NULL;
2840 	    softring = softring->s_ring_next)
2841 		(void) untimeout(softring->s_ring_tid);
2842 
2843 	(void) untimeout(mac_srs->srs_tid);
2844 
2845 	mutex_enter(&mac_srs->srs_lock);
2846 }
2847 
2848 /*
2849  * The block comment above mac_rx_classify_flow_state_change explains the
2850  * background. At this point upcalls from the driver (both hardware classified
2851  * and software classified) have been cut off. We now need to quiesce the
2852  * SRS worker, poll, and softring threads. The SRS worker thread serves as
2853  * the master controller. The steps involved are described below in the function
2854  */
2855 void
2856 mac_srs_worker_quiesce(mac_soft_ring_set_t *mac_srs)
2857 {
2858 	uint_t			s_ring_flag;
2859 	uint_t			srs_poll_wait_flag;
2860 
2861 	ASSERT(MUTEX_HELD(&mac_srs->srs_lock));
2862 	ASSERT(mac_srs->srs_state & (SRS_CONDEMNED | SRS_QUIESCE));
2863 
2864 	if (mac_srs->srs_state & SRS_CONDEMNED) {
2865 		s_ring_flag = S_RING_CONDEMNED;
2866 		srs_poll_wait_flag = SRS_POLL_THR_EXITED;
2867 	} else {
2868 		s_ring_flag = S_RING_QUIESCE;
2869 		srs_poll_wait_flag = SRS_POLL_THR_QUIESCED;
2870 	}
2871 
2872 	/*
2873 	 * In the case of Rx SRS wait till the poll thread is done.
2874 	 */
2875 	if ((mac_srs->srs_type & SRST_TX) == 0 &&
2876 	    mac_srs->srs_poll_thr != NULL) {
2877 		while (!(mac_srs->srs_state & srs_poll_wait_flag))
2878 			cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
2879 
2880 		/*
2881 		 * Turn off polling as part of the quiesce operation.
2882 		 */
2883 		MAC_SRS_POLLING_OFF(mac_srs);
2884 		mac_srs->srs_state &= ~(SRS_POLLING | SRS_GET_PKTS);
2885 	}
2886 
2887 	/*
2888 	 * Then signal the soft ring worker threads to quiesce or quit
2889 	 * as needed and then wait till that happens.
2890 	 */
2891 	mac_srs_soft_rings_quiesce(mac_srs, s_ring_flag);
2892 
2893 	if (mac_srs->srs_state & SRS_CONDEMNED)
2894 		mac_srs->srs_state |= (SRS_QUIESCE_DONE | SRS_CONDEMNED_DONE);
2895 	else
2896 		mac_srs->srs_state |= SRS_QUIESCE_DONE;
2897 	cv_signal(&mac_srs->srs_quiesce_done_cv);
2898 }
2899 
2900 /*
2901  * Signal an SRS to start a temporary quiesce, or permanent removal, or restart
2902  * a quiesced SRS by setting the appropriate flags and signaling the SRS worker
2903  * or poll thread. This function is internal to the quiescing logic and is
2904  * called internally from the SRS quiesce or flow quiesce or client quiesce
2905  * higher level functions.
2906  */
2907 void
2908 mac_srs_signal(mac_soft_ring_set_t *mac_srs, uint_t srs_flag)
2909 {
2910 	mac_ring_t	*ring;
2911 
2912 	ring = mac_srs->srs_ring;
2913 	ASSERT(ring == NULL || ring->mr_refcnt == 0);
2914 
2915 	if (srs_flag == SRS_CONDEMNED) {
2916 		/*
2917 		 * The SRS is going away. We need to unbind the SRS and SR
2918 		 * threads before removing from the global SRS list. Otherwise
2919 		 * there is a small window where the cpu reconfig callbacks
2920 		 * may miss the SRS in the list walk and DR could fail since
2921 		 * there are still bound threads.
2922 		 */
2923 		mac_srs_threads_unbind(mac_srs);
2924 		mac_srs_remove_glist(mac_srs);
2925 	}
2926 	/*
2927 	 * Wakeup the SRS worker and poll threads.
2928 	 */
2929 	mutex_enter(&mac_srs->srs_lock);
2930 	mac_srs->srs_state |= srs_flag;
2931 	cv_signal(&mac_srs->srs_async);
2932 	cv_signal(&mac_srs->srs_cv);
2933 	mutex_exit(&mac_srs->srs_lock);
2934 }
2935 
2936 /*
2937  * In the Rx side, the quiescing is done bottom up. After the Rx upcalls
2938  * from the driver are done, then the Rx SRS is quiesced and only then can
2939  * we signal the soft rings. Thus this function can't be called arbitrarily
2940  * without satisfying the prerequisites. On the Tx side, the threads from
2941  * top need to quiesced, then the Tx SRS and only then can we signal the
2942  * Tx soft rings.
2943  */
2944 static void
2945 mac_srs_soft_rings_signal(mac_soft_ring_set_t *mac_srs, uint_t sr_flag)
2946 {
2947 	mac_soft_ring_t		*softring;
2948 
2949 	for (softring = mac_srs->srs_soft_ring_head; softring != NULL;
2950 	    softring = softring->s_ring_next)
2951 		mac_soft_ring_signal(softring, sr_flag);
2952 }
2953 
2954 /*
2955  * The block comment above mac_rx_classify_flow_state_change explains the
2956  * background. At this point the SRS is quiesced and we need to restart the
2957  * SRS worker, poll, and softring threads. The SRS worker thread serves as
2958  * the master controller. The steps involved are described below in the function
2959  */
2960 void
2961 mac_srs_worker_restart(mac_soft_ring_set_t *mac_srs)
2962 {
2963 	boolean_t	iam_rx_srs;
2964 	mac_soft_ring_t	*softring;
2965 
2966 	ASSERT(MUTEX_HELD(&mac_srs->srs_lock));
2967 	if ((mac_srs->srs_type & SRST_TX) != 0) {
2968 		iam_rx_srs = B_FALSE;
2969 		ASSERT((mac_srs->srs_state &
2970 		    (SRS_POLL_THR_QUIESCED | SRS_QUIESCE_DONE | SRS_QUIESCE)) ==
2971 		    (SRS_QUIESCE_DONE | SRS_QUIESCE));
2972 	} else {
2973 		iam_rx_srs = B_TRUE;
2974 		ASSERT((mac_srs->srs_state &
2975 		    (SRS_QUIESCE_DONE | SRS_QUIESCE)) ==
2976 		    (SRS_QUIESCE_DONE | SRS_QUIESCE));
2977 		if (mac_srs->srs_poll_thr != NULL) {
2978 			ASSERT((mac_srs->srs_state & SRS_POLL_THR_QUIESCED) ==
2979 			    SRS_POLL_THR_QUIESCED);
2980 		}
2981 	}
2982 
2983 	/*
2984 	 * Signal any quiesced soft ring workers to restart and wait for the
2985 	 * soft ring down count to come down to zero.
2986 	 */
2987 	if (mac_srs->srs_soft_ring_quiesced_count != 0) {
2988 		for (softring = mac_srs->srs_soft_ring_head; softring != NULL;
2989 		    softring = softring->s_ring_next) {
2990 			if (!(softring->s_ring_state & S_RING_QUIESCE))
2991 				continue;
2992 			mac_soft_ring_signal(softring, S_RING_RESTART);
2993 		}
2994 		while (mac_srs->srs_soft_ring_quiesced_count != 0)
2995 			cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
2996 	}
2997 
2998 	mac_srs->srs_state &= ~(SRS_QUIESCE_DONE | SRS_QUIESCE | SRS_RESTART);
2999 	if (iam_rx_srs && mac_srs->srs_poll_thr != NULL) {
3000 		/*
3001 		 * Signal the poll thread and ask it to restart. Wait till it
3002 		 * actually restarts and the SRS_POLL_THR_QUIESCED flag gets
3003 		 * cleared.
3004 		 */
3005 		mac_srs->srs_state |= SRS_POLL_THR_RESTART;
3006 		cv_signal(&mac_srs->srs_cv);
3007 		while (mac_srs->srs_state & SRS_POLL_THR_QUIESCED)
3008 			cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
3009 		ASSERT(!(mac_srs->srs_state & SRS_POLL_THR_RESTART));
3010 	}
3011 	/* Wake up any waiter waiting for the restart to complete */
3012 	mac_srs->srs_state |= SRS_RESTART_DONE;
3013 	cv_signal(&mac_srs->srs_quiesce_done_cv);
3014 }
3015 
3016 static void
3017 mac_srs_worker_unbind(mac_soft_ring_set_t *mac_srs)
3018 {
3019 	mutex_enter(&mac_srs->srs_lock);
3020 	if (!(mac_srs->srs_state & SRS_WORKER_BOUND)) {
3021 		ASSERT(mac_srs->srs_worker_cpuid == -1);
3022 		mutex_exit(&mac_srs->srs_lock);
3023 		return;
3024 	}
3025 
3026 	mac_srs->srs_worker_cpuid = -1;
3027 	mac_srs->srs_state &= ~SRS_WORKER_BOUND;
3028 	thread_affinity_clear(mac_srs->srs_worker);
3029 	mutex_exit(&mac_srs->srs_lock);
3030 }
3031 
3032 static void
3033 mac_srs_poll_unbind(mac_soft_ring_set_t *mac_srs)
3034 {
3035 	mutex_enter(&mac_srs->srs_lock);
3036 	if (mac_srs->srs_poll_thr == NULL ||
3037 	    (mac_srs->srs_state & SRS_POLL_BOUND) == 0) {
3038 		ASSERT(mac_srs->srs_poll_cpuid == -1);
3039 		mutex_exit(&mac_srs->srs_lock);
3040 		return;
3041 	}
3042 
3043 	mac_srs->srs_poll_cpuid = -1;
3044 	mac_srs->srs_state &= ~SRS_POLL_BOUND;
3045 	thread_affinity_clear(mac_srs->srs_poll_thr);
3046 	mutex_exit(&mac_srs->srs_lock);
3047 }
3048 
3049 static void
3050 mac_srs_threads_unbind(mac_soft_ring_set_t *mac_srs)
3051 {
3052 	mac_soft_ring_t	*soft_ring;
3053 
3054 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mac_srs->srs_mcip->mci_mip));
3055 
3056 	mutex_enter(&cpu_lock);
3057 	mac_srs_worker_unbind(mac_srs);
3058 	if (!(mac_srs->srs_type & SRST_TX))
3059 		mac_srs_poll_unbind(mac_srs);
3060 
3061 	for (soft_ring = mac_srs->srs_soft_ring_head; soft_ring != NULL;
3062 	    soft_ring = soft_ring->s_ring_next) {
3063 		mac_soft_ring_unbind(soft_ring);
3064 	}
3065 	mutex_exit(&cpu_lock);
3066 }
3067 
3068 /*
3069  * When a CPU is going away, unbind all MAC threads which are bound
3070  * to that CPU. The affinity of the thread to the CPU is saved to allow
3071  * the thread to be rebound to the CPU if it comes back online.
3072  */
3073 static void
3074 mac_walk_srs_and_unbind(int cpuid)
3075 {
3076 	mac_soft_ring_set_t *mac_srs;
3077 	mac_soft_ring_t *soft_ring;
3078 
3079 	rw_enter(&mac_srs_g_lock, RW_READER);
3080 
3081 	if ((mac_srs = mac_srs_g_list) == NULL)
3082 		goto done;
3083 
3084 	for (; mac_srs != NULL; mac_srs = mac_srs->srs_next) {
3085 		if (mac_srs->srs_worker_cpuid == cpuid) {
3086 			mac_srs->srs_worker_cpuid_save = cpuid;
3087 			mac_srs_worker_unbind(mac_srs);
3088 		}
3089 
3090 		if (!(mac_srs->srs_type & SRST_TX)) {
3091 			if (mac_srs->srs_poll_cpuid == cpuid) {
3092 				mac_srs->srs_poll_cpuid_save = cpuid;
3093 				mac_srs_poll_unbind(mac_srs);
3094 			}
3095 		}
3096 
3097 		/* Next tackle the soft rings associated with the srs */
3098 		mutex_enter(&mac_srs->srs_lock);
3099 		for (soft_ring = mac_srs->srs_soft_ring_head; soft_ring != NULL;
3100 		    soft_ring = soft_ring->s_ring_next) {
3101 			if (soft_ring->s_ring_cpuid == cpuid) {
3102 				soft_ring->s_ring_cpuid_save = cpuid;
3103 				mac_soft_ring_unbind(soft_ring);
3104 			}
3105 		}
3106 		mutex_exit(&mac_srs->srs_lock);
3107 	}
3108 done:
3109 	rw_exit(&mac_srs_g_lock);
3110 }
3111 
3112 /* TX SETUP and TEARDOWN ROUTINES */
3113 
3114 /*
3115  * XXXHIO need to make sure the two mac_tx_srs_{add,del}_ring()
3116  * handle the case where the number of rings is one. I.e. there is
3117  * a ring pointed to by mac_srs->srs_tx_arg2.
3118  */
3119 void
3120 mac_tx_srs_add_ring(mac_soft_ring_set_t *mac_srs, mac_ring_t *tx_ring)
3121 {
3122 	mac_client_impl_t *mcip = mac_srs->srs_mcip;
3123 	mac_soft_ring_t *soft_ring;
3124 	int count = mac_srs->srs_oth_ring_count;
3125 
3126 	ASSERT(mac_srs->srs_state & SRS_QUIESCE);
3127 	soft_ring = mac_soft_ring_create(count, 0, NULL,
3128 	    (ST_RING_OTH | ST_RING_TX), maxclsyspri, mcip, mac_srs, -1,
3129 	    NULL, mcip, (mac_resource_handle_t)tx_ring);
3130 	mac_srs->srs_oth_ring_count++;
3131 	/*
3132 	 * put this soft ring in quiesce mode too so when we restart
3133 	 * all soft rings in the srs are in the same state.
3134 	 */
3135 	mac_soft_ring_signal(soft_ring, S_RING_QUIESCE);
3136 }
3137 
3138 static void
3139 mac_soft_ring_remove(mac_soft_ring_set_t *mac_srs, mac_soft_ring_t *softring)
3140 {
3141 	int sringcnt;
3142 
3143 	mutex_enter(&mac_srs->srs_lock);
3144 	sringcnt = mac_srs->srs_soft_ring_count;
3145 	ASSERT(sringcnt > 0);
3146 	mac_soft_ring_signal(softring, S_RING_CONDEMNED);
3147 
3148 	ASSERT(mac_srs->srs_soft_ring_condemned_count == 0);
3149 	while (mac_srs->srs_soft_ring_condemned_count != 1)
3150 		cv_wait(&mac_srs->srs_async, &mac_srs->srs_lock);
3151 
3152 	if (softring == mac_srs->srs_soft_ring_head) {
3153 		mac_srs->srs_soft_ring_head = softring->s_ring_next;
3154 		if (mac_srs->srs_soft_ring_head != NULL) {
3155 			mac_srs->srs_soft_ring_head->s_ring_prev = NULL;
3156 		} else {
3157 			mac_srs->srs_soft_ring_tail = NULL;
3158 		}
3159 	} else {
3160 		softring->s_ring_prev->s_ring_next =
3161 		    softring->s_ring_next;
3162 		if (softring->s_ring_next != NULL) {
3163 			softring->s_ring_next->s_ring_prev =
3164 			    softring->s_ring_prev;
3165 		} else {
3166 			mac_srs->srs_soft_ring_tail =
3167 			    softring->s_ring_prev;
3168 		}
3169 	}
3170 	mac_srs->srs_soft_ring_count--;
3171 
3172 	mac_srs->srs_soft_ring_condemned_count--;
3173 	mutex_exit(&mac_srs->srs_lock);
3174 
3175 	mac_soft_ring_free(softring, B_FALSE);
3176 }
3177 
3178 void
3179 mac_tx_srs_del_ring(mac_soft_ring_set_t *mac_srs, mac_ring_t *tx_ring)
3180 {
3181 	int i;
3182 	mac_soft_ring_t *soft_ring, *remove_sring;
3183 
3184 	mutex_enter(&mac_srs->srs_lock);
3185 	for (i = 0; i < mac_srs->srs_oth_ring_count; i++) {
3186 		soft_ring =  mac_srs->srs_oth_soft_rings[i];
3187 		if (soft_ring->s_ring_tx_arg2 == tx_ring)
3188 			break;
3189 	}
3190 	mutex_exit(&mac_srs->srs_lock);
3191 	ASSERT(i < mac_srs->srs_oth_ring_count);
3192 	remove_sring = soft_ring;
3193 	mac_soft_ring_remove(mac_srs, remove_sring);
3194 	mac_srs_update_fanout_list(mac_srs);
3195 }
3196 
3197 /*
3198  * mac_tx_srs_setup():
3199  *
3200  * Used to setup Tx rings. If no free Tx ring is available, then default
3201  * Tx ring is used.
3202  */
3203 void
3204 mac_tx_srs_setup(mac_client_impl_t *mcip, flow_entry_t *flent,
3205     uint32_t srs_type)
3206 {
3207 	mac_impl_t *mip = mcip->mci_mip;
3208 	mac_soft_ring_set_t *tx_srs;
3209 	int i, tx_ring_count = 0, tx_rings_reserved = 0;
3210 	mac_ring_handle_t *tx_rings = NULL;
3211 	uint32_t soft_ring_type;
3212 	mac_group_t *grp = NULL;
3213 	mac_ring_t *ring;
3214 	mac_srs_tx_t *tx;
3215 	boolean_t serialize = B_FALSE;
3216 
3217 	tx_srs = flent->fe_tx_srs;
3218 	tx = &tx_srs->srs_tx;
3219 
3220 	if (tx->st_group != NULL) {
3221 		grp = tx->st_group;
3222 		tx_ring_count = grp->mrg_cur_count;
3223 	} else {
3224 		tx_ring_count = mac_tx_ring_count;
3225 	}
3226 
3227 	if (tx_ring_count != 0) {
3228 		tx_rings = kmem_zalloc(sizeof (mac_ring_handle_t) *
3229 		    tx_ring_count, KM_SLEEP);
3230 	}
3231 
3232 	/*
3233 	 * Just use the default ring for now. We need to use
3234 	 * the underlying link's ring set instead of the underlying
3235 	 * NIC's.
3236 	 */
3237 	if (srs_type == SRST_FLOW ||
3238 	    (mcip->mci_state_flags & MCIS_NO_HWRINGS) != 0) {
3239 		/* use default ring */
3240 		tx_rings[0] = (void *)mip->mi_default_tx_ring;
3241 		tx_rings_reserved++;
3242 		goto rings_assigned;
3243 	}
3244 
3245 	if (mcip->mci_share != NULL)
3246 		ring = grp->mrg_rings;
3247 	/*
3248 	 * An attempt is made to reserve 'tx_ring_count' number
3249 	 * of Tx rings. If tx_ring_count is 0, default Tx ring
3250 	 * is used. If it is 1, an attempt is made to reserve one
3251 	 * Tx ring. In both the cases, the ring information is
3252 	 * stored in Tx SRS. If multiple Tx rings are specified,
3253 	 * then each Tx ring will have a Tx-side soft ring. All
3254 	 * these soft rings will be hang off Tx SRS.
3255 	 */
3256 	for (i = 0; i < tx_ring_count; i++) {
3257 		if (mcip->mci_share != NULL) {
3258 			/*
3259 			 * The ring was already chosen and associated
3260 			 * with the TX group. Save it in the new
3261 			 * array to keep as much of the code below common
3262 			 * between the share and non-share cases.
3263 			 */
3264 			ASSERT(ring != NULL);
3265 			tx_rings[i] = (mac_ring_handle_t)ring;
3266 			ring = ring->mr_next;
3267 		} else {
3268 			tx_rings[i] =
3269 			    (mac_ring_handle_t)mac_reserve_tx_ring(mip, NULL);
3270 			if (tx_rings[i] == NULL) {
3271 				/*
3272 				 * We have run out of Tx rings. So
3273 				 * give the default ring too.
3274 				 */
3275 				tx_rings[i] = (void *)mip->mi_default_tx_ring;
3276 				tx_rings_reserved++;
3277 				break;
3278 			}
3279 		}
3280 		tx_rings_reserved++;
3281 	}
3282 
3283 rings_assigned:
3284 	if (mac_tx_serialize || (mip->mi_v12n_level & MAC_VIRT_SERIALIZE))
3285 		serialize = B_TRUE;
3286 	/*
3287 	 * Did we get the requested number of tx rings?
3288 	 * There are 2 actions we can take depending upon the number
3289 	 * of tx_rings we got.
3290 	 * 1) If we got one, then get the tx_ring from the soft ring,
3291 	 * save it in SRS and free up the soft ring.
3292 	 * 2) If we got more than 1, then do the tx fanout among the
3293 	 * rings we obtained.
3294 	 */
3295 	ASSERT(tx_rings_reserved != 0);
3296 	if (tx_rings_reserved == 1) {
3297 		tx->st_arg2 = (void *)tx_rings[0];
3298 		/* For ring_count of 0 or 1, set the tx_mode and return */
3299 		if (tx_srs->srs_type & SRST_BW_CONTROL)
3300 			tx->st_mode = SRS_TX_BW;
3301 		else if (serialize)
3302 			tx->st_mode = SRS_TX_SERIALIZE;
3303 		else
3304 			tx->st_mode = SRS_TX_DEFAULT;
3305 	} else {
3306 		/*
3307 		 * We got multiple Tx rings for Tx fanout.
3308 		 */
3309 		soft_ring_type = ST_RING_OTH | ST_RING_TX;
3310 		if (tx_srs->srs_type & SRST_BW_CONTROL) {
3311 			tx->st_mode = SRS_TX_BW_FANOUT;
3312 		} else {
3313 			tx->st_mode = SRS_TX_FANOUT;
3314 			if (serialize)
3315 				soft_ring_type |= ST_RING_WORKER_ONLY;
3316 		}
3317 		for (i = 0; i < tx_rings_reserved; i++) {
3318 			(void) mac_soft_ring_create(i, 0, NULL, soft_ring_type,
3319 			    maxclsyspri, mcip, tx_srs, -1, NULL, mcip,
3320 			    (mac_resource_handle_t)tx_rings[i]);
3321 		}
3322 		mac_srs_update_fanout_list(tx_srs);
3323 	}
3324 	tx->st_func = mac_tx_get_func(tx->st_mode);
3325 
3326 	DTRACE_PROBE3(tx__srs___setup__return, mac_soft_ring_set_t *, tx_srs,
3327 	    int, tx->st_mode, int, tx_srs->srs_oth_ring_count);
3328 
3329 	if (tx_ring_count != 0) {
3330 		tx->st_ring_count = tx_rings_reserved;
3331 		tx->st_rings = kmem_zalloc(sizeof (mac_ring_handle_t) *
3332 		    tx_rings_reserved, KM_SLEEP);
3333 		for (i = 0; i < tx->st_ring_count; i++)
3334 			tx->st_rings[i] = tx_rings[i];
3335 		kmem_free(tx_rings, sizeof (mac_ring_handle_t) * tx_ring_count);
3336 	}
3337 }
3338 
3339 /*
3340  * Update the fanout of a client if its recorded link speed doesn't match
3341  * its current link speed.
3342  */
3343 void
3344 mac_fanout_recompute_client(mac_client_impl_t *mcip)
3345 {
3346 	uint64_t link_speed;
3347 	mac_resource_props_t *mcip_mrp;
3348 
3349 	ASSERT(MAC_PERIM_HELD((mac_handle_t)mcip->mci_mip));
3350 
3351 	link_speed = mac_client_stat_get(mcip->mci_flent->fe_mcip,
3352 	    MAC_STAT_IFSPEED);
3353 
3354 	if ((link_speed != 0) &&
3355 	    (link_speed != mcip->mci_flent->fe_nic_speed)) {
3356 		mcip_mrp = MCIP_RESOURCE_PROPS(mcip);
3357 		mac_fanout_setup(mcip, mcip->mci_flent,
3358 		    mcip_mrp, mac_rx_deliver, mcip, NULL);
3359 	}
3360 }
3361 
3362 /*
3363  * Walk through the list of mac clients for the MAC.
3364  * For each active mac client, recompute the number of soft rings
3365  * associated with every client, only if current speed is different
3366  * from the speed that was previously used for soft ring computation.
3367  * If the cable is disconnected whlie the NIC is started, we would get
3368  * notification with speed set to 0. We do not recompute in that case.
3369  */
3370 void
3371 mac_fanout_recompute(mac_impl_t *mip)
3372 {
3373 	mac_client_impl_t	*mcip;
3374 
3375 	i_mac_perim_enter(mip);
3376 	if ((mip->mi_state_flags & MIS_IS_VNIC) != 0 ||
3377 	    mip->mi_linkstate != LINK_STATE_UP) {
3378 		i_mac_perim_exit(mip);
3379 		return;
3380 	}
3381 
3382 	for (mcip = mip->mi_clients_list; mcip != NULL;
3383 	    mcip = mcip->mci_client_next) {
3384 		if ((mcip->mci_state_flags & MCIS_SHARE_BOUND) != 0 ||
3385 		    !MCIP_DATAPATH_SETUP(mcip))
3386 			continue;
3387 		mac_fanout_recompute_client(mcip);
3388 	}
3389 	i_mac_perim_exit(mip);
3390 }
3391