Print this page
5513 KM_NORMALPRI should be documented in kmem_alloc(9f) and kmem_cache_create(9f) man pages
14465 Present KM_NOSLEEP_LAZY as documented interface
Change-Id: I002ec28ddf390650f1fcba1ca94f6abfdb241439
        
@@ -1467,12 +1467,12 @@
         if (avl_numnodes(&mcip->mci_v6_slaac_ip) >= slaac_max_allowed) {
                 DTRACE_PROBE(limit__reached);
                 return;
         }
 
-        if ((addr = kmem_zalloc(sizeof (slaac_addr_t),
-            KM_NOSLEEP | KM_NORMALPRI)) == NULL)
+        if ((addr = kmem_zalloc(sizeof (slaac_addr_t), KM_NOSLEEP_LAZY)) ==
+            NULL)
                 return;
 
         bcopy(&po->nd_opt_pi_prefix, &addr->sla_prefix,
             sizeof (struct in6_addr));