Embed the netmsg in the mbuf itself rather than allocating one for
[dragonfly.git] / sys / netproto / atm / atm_subr.c
1 /*
2  *
3  * ===================================
4  * HARP  |  Host ATM Research Platform
5  * ===================================
6  *
7  *
8  * This Host ATM Research Platform ("HARP") file (the "Software") is
9  * made available by Network Computing Services, Inc. ("NetworkCS")
10  * "AS IS".  NetworkCS does not provide maintenance, improvements or
11  * support of any kind.
12  *
13  * NETWORKCS MAKES NO WARRANTIES OR REPRESENTATIONS, EXPRESS OR IMPLIED,
14  * INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
15  * AND FITNESS FOR A PARTICULAR PURPOSE, AS TO ANY ELEMENT OF THE
16  * SOFTWARE OR ANY SUPPORT PROVIDED IN CONNECTION WITH THIS SOFTWARE.
17  * In no event shall NetworkCS be responsible for any damages, including
18  * but not limited to consequential damages, arising from or relating to
19  * any use of the Software or related support.
20  *
21  * Copyright 1994-1998 Network Computing Services, Inc.
22  *
23  * Copies of this Software may be made, however, the above copyright
24  * notice must be reproduced on all copies.
25  *
26  *      @(#) $FreeBSD: src/sys/netatm/atm_subr.c,v 1.7 2000/02/13 03:31:59 peter Exp $
27  *      @(#) $DragonFly: src/sys/netproto/atm/atm_subr.c,v 1.19 2006/05/20 06:32:41 dillon Exp $
28  */
29
30 /*
31  * Core ATM Services
32  * -----------------
33  *
34  * Miscellaneous ATM subroutines
35  *
36  */
37
38 #include "kern_include.h"
39
40 #include <sys/thread2.h>
41 #include <sys/msgport2.h>
42
43 /*
44  * Global variables
45  */
46 struct atm_pif          *atm_interface_head = NULL;
47 struct atm_ncm          *atm_netconv_head = NULL;
48 Atm_endpoint            *atm_endpoints[ENDPT_MAX+1] = {NULL};
49 struct sp_info          *atm_pool_head = NULL;
50 struct stackq_entry     *atm_stackq_head = NULL, *atm_stackq_tail;
51 struct atm_sock_stat    atm_sock_stat = { { 0 } };
52 int                     atm_init = 0;
53 int                     atm_debug = 0;
54 int                     atm_dev_print = 0;
55 int                     atm_print_data = 0;
56 int                     atm_version = ATM_VERSION;
57 struct timeval          atm_debugtime = {0, 0};
58 struct ifqueue          atm_intrq;
59
60 struct sp_info  atm_attributes_pool = {
61         "atm attributes pool",          /* si_name */
62         sizeof(Atm_attributes),         /* si_blksiz */
63         10,                             /* si_blkcnt */
64         100                             /* si_maxallow */
65 };
66
67 static struct callout atm_timexp_ch;
68
69 /*
70  * Local functions
71  */
72 static void     atm_compact (struct atm_time *);
73 static KTimeout_ret     atm_timexp (void *);
74 static int      atm_intr(struct netmsg *);
75
76 /*
77  * Local variables
78  */
79 static struct atm_time  *atm_timeq = NULL;
80 static struct atm_time  atm_compactimer = {0, 0};
81
82 static struct sp_info   atm_stackq_pool = {
83         "Service stack queue pool",     /* si_name */
84         sizeof(struct stackq_entry),    /* si_blksiz */
85         10,                             /* si_blkcnt */
86         10                              /* si_maxallow */
87 };
88
89
90 /*
91  * Initialize ATM kernel
92  * 
93  * Performs any initialization required before things really get underway.
94  * Called from ATM domain initialization or from first registration function 
95  * which gets called.
96  *
97  * Arguments:
98  *      none
99  *
100  * Returns:
101  *      none
102  *
103  */
104 void
105 atm_initialize(void)
106 {
107         /*
108          * Never called from interrupts, so no locking needed
109          */
110         if (atm_init)
111                 return;
112         atm_init = 1;
113
114         atm_intrq.ifq_maxlen = ATM_INTRQ_MAX;
115         netisr_register(NETISR_ATM, cpu0_portfn, atm_intr);
116
117         /*
118          * Initialize subsystems
119          */
120         atm_aal5_init();
121
122         /*
123          * Prime the timer
124          */
125         callout_init(&atm_timexp_ch);
126         callout_reset(&atm_timexp_ch, hz / ATM_HZ, atm_timexp, NULL);
127
128         /*
129          * Start the compaction timer
130          */
131         atm_timeout(&atm_compactimer, SPOOL_COMPACT, atm_compact);
132 }
133
134
135 /*
136  * Allocate a Control Block
137  * 
138  * Gets a new control block allocated from the specified storage pool, 
139  * acquiring memory for new pool chunks if required.  The returned control
140  * block's contents will be cleared.
141  *
142  * Arguments:
143  *      sip     pointer to sp_info for storage pool
144  *
145  * Returns:
146  *      addr    pointer to allocated control block
147  *      0       allocation failed
148  *
149  */
150 void *
151 atm_allocate(struct sp_info *sip)
152 {
153         void            *bp;
154         struct sp_chunk *scp;
155         struct sp_link  *slp;
156
157         crit_enter();
158
159         /*
160          * Count calls
161          */
162         sip->si_allocs++;
163
164         /*
165          * Are there any free in the pool?
166          */
167         if (sip->si_free) {
168
169                 /*
170                  * Find first chunk with a free block
171                  */
172                 for (scp = sip->si_poolh; scp; scp = scp->sc_next) {
173                         if (scp->sc_freeh != NULL)
174                                 break;
175                 }
176
177         } else {
178
179                 /*
180                  * No free blocks - have to allocate a new
181                  * chunk (but put a limit to this)
182                  */
183                 struct sp_link  *slp_next;
184                 int     i;
185
186                 /*
187                  * First time for this pool??
188                  */
189                 if (sip->si_chunksiz == 0) {
190                         size_t  n;
191
192                         /*
193                          * Initialize pool information
194                          */
195                         n = sizeof(struct sp_chunk) +
196                                 sip->si_blkcnt * 
197                                 (sip->si_blksiz + sizeof(struct sp_link));
198                         sip->si_chunksiz = roundup(n, SPOOL_ROUNDUP);
199
200                         /*
201                          * Place pool on kernel chain
202                          */
203                         LINK2TAIL(sip, struct sp_info, atm_pool_head, si_next);
204                 }
205
206                 if (sip->si_chunks >= sip->si_maxallow) {
207                         sip->si_fails++;
208                         crit_exit();
209                         return (NULL);
210                 }
211
212                 scp = KM_ALLOC(sip->si_chunksiz, M_DEVBUF,
213                                 M_INTWAIT | M_NULLOK);
214                 if (scp == NULL) {
215                         sip->si_fails++;
216                         crit_exit();
217                         return (NULL);
218                 }
219                 scp->sc_next = NULL;
220                 scp->sc_info = sip;
221                 scp->sc_magic = SPOOL_MAGIC;
222                 scp->sc_used = 0;
223
224                 /*
225                  * Divy up chunk into free blocks
226                  */
227                 slp = (struct sp_link *)(scp + 1);
228                 scp->sc_freeh = slp;
229
230                 for (i = sip->si_blkcnt; i > 1; i--) { 
231                         slp_next = (struct sp_link *)((caddr_t)(slp + 1) + 
232                                         sip->si_blksiz);
233                         slp->sl_u.slu_next = slp_next;
234                         slp = slp_next;
235                 }
236                 slp->sl_u.slu_next = NULL;
237                 scp->sc_freet = slp;
238
239                 /*
240                  * Add new chunk to end of pool
241                  */
242                 if (sip->si_poolh)
243                         sip->si_poolt->sc_next = scp;
244                 else
245                         sip->si_poolh = scp;
246                 sip->si_poolt = scp;
247                 
248                 sip->si_chunks++;
249                 sip->si_total += sip->si_blkcnt;
250                 sip->si_free += sip->si_blkcnt;
251                 if (sip->si_chunks > sip->si_maxused)
252                         sip->si_maxused = sip->si_chunks;
253         }
254
255         /*
256          * Allocate the first free block in chunk
257          */
258         slp = scp->sc_freeh;
259         scp->sc_freeh = slp->sl_u.slu_next;
260         scp->sc_used++;
261         sip->si_free--;
262         bp = (slp + 1);
263
264         /*
265          * Save link back to pool chunk
266          */
267         slp->sl_u.slu_chunk = scp;
268
269         /*
270          * Clear out block
271          */
272         KM_ZERO(bp, sip->si_blksiz);
273
274         crit_exit();
275         return (bp);
276 }
277
278
279 /*
280  * Free a Control Block
281  * 
282  * Returns a previously allocated control block back to the owners 
283  * storage pool.  
284  *
285  * Arguments:
286  *      bp      pointer to block to be freed
287  *
288  * Returns:
289  *      none
290  *
291  */
292 void
293 atm_free(void *bp)
294 {
295         struct sp_info  *sip;
296         struct sp_chunk *scp;
297         struct sp_link  *slp;
298
299         crit_enter();
300
301         /*
302          * Get containing chunk and pool info
303          */
304         slp = (struct sp_link *)bp;
305         slp--;
306         scp = slp->sl_u.slu_chunk;
307         if (scp->sc_magic != SPOOL_MAGIC)
308                 panic("atm_free: chunk magic missing");
309         sip = scp->sc_info;
310
311         /*
312          * Add block to free chain
313          */
314         if (scp->sc_freeh) {
315                 scp->sc_freet->sl_u.slu_next = slp;
316                 scp->sc_freet = slp;
317         } else
318                 scp->sc_freeh = scp->sc_freet = slp;
319         slp->sl_u.slu_next = NULL;
320         sip->si_free++;
321         scp->sc_used--;
322
323         crit_exit();
324         return;
325 }
326
327
328 /*
329  * Storage Pool Compaction
330  * 
331  * Called periodically in order to perform compaction of the
332  * storage pools.  Each pool will be checked to see if any chunks 
333  * can be freed, taking some care to avoid freeing too many chunks
334  * in order to avoid memory thrashing.
335  *
336  * Called from a critical section.
337  *
338  * Arguments:
339  *      tip     pointer to timer control block (atm_compactimer)
340  *
341  * Returns:
342  *      none
343  *
344  */
345 static void
346 atm_compact(struct atm_time *tip)
347 {
348         struct sp_info  *sip;
349         struct sp_chunk *scp;
350         int             i;
351         struct sp_chunk *scp_prev;
352
353         /*
354          * Check out all storage pools
355          */
356         for (sip = atm_pool_head; sip; sip = sip->si_next) {
357
358                 /*
359                  * Always keep a minimum number of chunks around
360                  */
361                 if (sip->si_chunks <= SPOOL_MIN_CHUNK)
362                         continue;
363
364                 /*
365                  * Maximum chunks to free at one time will leave
366                  * pool with at least 50% utilization, but never
367                  * go below minimum chunk count.
368                  */
369                 i = ((sip->si_free * 2) - sip->si_total) / sip->si_blkcnt;
370                 i = MIN(i, sip->si_chunks - SPOOL_MIN_CHUNK);
371
372                 /*
373                  * Look for chunks to free
374                  */
375                 scp_prev = NULL;
376                 for (scp = sip->si_poolh; scp && i > 0; ) {
377
378                         if (scp->sc_used == 0) {
379
380                                 /*
381                                  * Found a chunk to free, so do it
382                                  */
383                                 if (scp_prev) {
384                                         scp_prev->sc_next = scp->sc_next;
385                                         if (sip->si_poolt == scp)
386                                                 sip->si_poolt = scp_prev;
387                                 } else
388                                         sip->si_poolh = scp->sc_next;
389
390                                 KM_FREE((caddr_t)scp, sip->si_chunksiz,
391                                         M_DEVBUF);
392
393                                 /*
394                                  * Update pool controls
395                                  */
396                                 sip->si_chunks--;
397                                 sip->si_total -= sip->si_blkcnt;
398                                 sip->si_free -= sip->si_blkcnt;
399                                 i--;
400                                 if (scp_prev)
401                                         scp = scp_prev->sc_next;
402                                 else
403                                         scp = sip->si_poolh;
404                         } else {
405                                 scp_prev = scp;
406                                 scp = scp->sc_next;
407                         }
408                 }
409         }
410
411         /*
412          * Restart the compaction timer
413          */
414         atm_timeout(&atm_compactimer, SPOOL_COMPACT, atm_compact);
415
416         return;
417 }
418
419
420 /*
421  * Release a Storage Pool
422  * 
423  * Frees all dynamic storage acquired for a storage pool.
424  * This function is normally called just prior to a module's unloading.
425  *
426  * Arguments:
427  *      sip     pointer to sp_info for storage pool
428  *
429  * Returns:
430  *      none
431  *
432  */
433 void
434 atm_release_pool(struct sp_info *sip)
435 {
436         struct sp_chunk *scp, *scp_next;
437
438         crit_enter();
439         /*
440          * Free each chunk in pool
441          */
442         for (scp = sip->si_poolh; scp; scp = scp_next) {
443
444                 /*
445                  * Check for memory leaks
446                  */
447                 if (scp->sc_used)
448                         panic("atm_release_pool: unfreed blocks");
449
450                 scp_next = scp->sc_next;
451
452                 KM_FREE((caddr_t)scp, sip->si_chunksiz, M_DEVBUF);
453         }
454
455         /*
456          * Update pool controls
457          */
458         sip->si_poolh = NULL;
459         sip->si_chunks = 0;
460         sip->si_total = 0;
461         sip->si_free = 0;
462
463         /*
464          * Unlink pool from active chain
465          */
466         sip->si_chunksiz = 0;
467         UNLINK(sip, struct sp_info, atm_pool_head, si_next);
468         crit_exit();
469         return;
470 }
471
472
473 /*
474  * Handle timer tick expiration
475  * 
476  * Decrement tick count in first block on timer queue.  If there
477  * are blocks with expired timers, call their timeout function.
478  * This function is called ATM_HZ times per second.
479  *
480  * Arguments:
481  *      arg     argument passed on timeout() call
482  *
483  * Returns:
484  *      none
485  *
486  */
487 static KTimeout_ret
488 atm_timexp(void *arg)
489 {
490         struct atm_time *tip;
491
492         crit_enter();
493         /*
494          * Decrement tick count
495          */
496         if (((tip = atm_timeq) == NULL) || (--tip->ti_ticks > 0)) {
497                 goto restart;
498         }
499
500         /*
501          * Stack queue should have been drained
502          */
503 #ifdef DIAGNOSTIC
504         if (atm_stackq_head != NULL)
505                 panic("atm_timexp: stack queue not empty");
506 #endif
507
508         /*
509          * Dispatch expired timers
510          */
511         while (((tip = atm_timeq) != NULL) && (tip->ti_ticks == 0)) {
512                 void    (*func)(struct atm_time *);
513
514                 /*
515                  * Remove expired block from queue
516                  */
517                 atm_timeq = tip->ti_next;
518                 tip->ti_flag &= ~TIF_QUEUED;
519
520                 /*
521                  * Call timeout handler (with network interrupts locked out)
522                  */
523                 func = tip->ti_func;
524                 (*func)(tip);
525
526                 /*
527                  * Drain any deferred calls
528                  */
529                 STACK_DRAIN();
530         }
531
532 restart:
533         /*
534          * Restart the timer
535          */
536         crit_exit();
537         callout_reset(&atm_timexp_ch, hz / ATM_HZ, atm_timexp, NULL);
538 }
539
540
541 /*
542  * Schedule a control block timeout
543  * 
544  * Place the supplied timer control block on the timer queue.  The
545  * function (func) will be called in 't' timer ticks with the
546  * control block address as its only argument.  There are ATM_HZ
547  * timer ticks per second.  The ticks value stored in each block is
548  * a delta of the number of ticks from the previous block in the queue.
549  * Thus, for each tick interval, only the first block in the queue 
550  * needs to have its tick value decremented.
551  *
552  * Arguments:
553  *      tip     pointer to timer control block
554  *      t       number of timer ticks until expiration
555  *      func    pointer to function to call at expiration 
556  *
557  * Returns:
558  *      none
559  *
560  */
561 void
562 atm_timeout(struct atm_time *tip, int t, void (*func)(struct atm_time *))
563 {
564         struct atm_time *tip1, *tip2;
565
566
567         /*
568          * Check for double queueing error
569          */
570         if (tip->ti_flag & TIF_QUEUED)
571                 panic("atm_timeout: double queueing");
572
573         /*
574          * Make sure we delay at least a little bit
575          */
576         if (t <= 0)
577                 t = 1;
578
579         /*
580          * Find out where we belong on the queue
581          */
582         crit_enter();
583         for (tip1 = NULL, tip2 = atm_timeq; tip2 && (tip2->ti_ticks <= t); 
584                                             tip1 = tip2, tip2 = tip1->ti_next) {
585                 t -= tip2->ti_ticks;
586         }
587
588         /*
589          * Place ourselves on queue and update timer deltas
590          */
591         if (tip1 == NULL)
592                 atm_timeq = tip;
593         else
594                 tip1->ti_next = tip;
595         tip->ti_next = tip2;
596
597         if (tip2)
598                 tip2->ti_ticks -= t;
599         
600         /*
601          * Setup timer block
602          */
603         tip->ti_flag |= TIF_QUEUED;
604         tip->ti_ticks = t;
605         tip->ti_func = func;
606
607         crit_exit();
608         return;
609 }
610
611
612 /*
613  * Cancel a timeout
614  * 
615  * Remove the supplied timer control block from the timer queue.
616  *
617  * Arguments:
618  *      tip     pointer to timer control block
619  *
620  * Returns:
621  *      0       control block successfully dequeued
622  *      1       control block not on timer queue
623  *
624  */
625 int
626 atm_untimeout(struct atm_time *tip)
627 {
628         struct atm_time *tip1, *tip2;
629
630         /*
631          * Is control block queued?
632          */
633         if ((tip->ti_flag & TIF_QUEUED) == 0)
634                 return(1);
635
636         /*
637          * Find control block on the queue
638          */
639         crit_enter();
640         for (tip1 = NULL, tip2 = atm_timeq; tip2 && (tip2 != tip); 
641                                             tip1 = tip2, tip2 = tip1->ti_next) {
642         }
643
644         if (tip2 == NULL) {
645                 crit_exit();
646                 return (1);
647         }
648
649         /*
650          * Remove block from queue and update timer deltas
651          */
652         tip2 = tip->ti_next;
653         if (tip1 == NULL)
654                 atm_timeq = tip2;
655         else
656                 tip1->ti_next = tip2;
657
658         if (tip2)
659                 tip2->ti_ticks += tip->ti_ticks;
660         
661         /*
662          * Reset timer block
663          */
664         tip->ti_flag &= ~TIF_QUEUED;
665
666         crit_exit();
667         return (0);
668 }
669
670
671 /*
672  * Queue a Stack Call 
673  * 
674  * Queues a stack call which must be deferred to the global stack queue.
675  * The call parameters are stored in entries which are allocated from the
676  * stack queue storage pool.
677  *
678  * Arguments:
679  *      cmd     stack command
680  *      func    destination function
681  *      token   destination layer's token
682  *      cvp     pointer to  connection vcc
683  *      arg1    command argument
684  *      arg2    command argument
685  *
686  * Returns:
687  *      0       call queued
688  *      errno   call not queued - reason indicated
689  *
690  */
691 int
692 atm_stack_enq(int cmd, void (*func)(int, void *, int, int), void *token,
693               Atm_connvc *cvp, int arg1, int arg2)
694 {
695         struct stackq_entry     *sqp;
696
697         crit_enter();
698
699         /*
700          * Get a new queue entry for this call
701          */
702         sqp = (struct stackq_entry *)atm_allocate(&atm_stackq_pool);
703         if (sqp == NULL) {
704                 crit_exit();
705                 return (ENOMEM);
706         }
707
708         /*
709          * Fill in new entry
710          */
711         sqp->sq_next = NULL;
712         sqp->sq_cmd = cmd;
713         sqp->sq_func = func;
714         sqp->sq_token = token;
715         sqp->sq_arg1 = arg1;
716         sqp->sq_arg2 = arg2;
717         sqp->sq_connvc = cvp;
718
719         /*
720          * Put new entry at end of queue
721          */
722         if (atm_stackq_head == NULL)
723                 atm_stackq_head = sqp;
724         else
725                 atm_stackq_tail->sq_next = sqp;
726         atm_stackq_tail = sqp;
727
728         crit_exit();
729         return (0);
730 }
731
732
733 /*
734  * Drain the Stack Queue
735  * 
736  * Dequeues and processes entries from the global stack queue.  
737  *
738  * Arguments:
739  *      none
740  *
741  * Returns:
742  *      none
743  *
744  */
745 void
746 atm_stack_drain(void)
747 {
748         struct stackq_entry     *sqp, *qprev, *qnext;
749         int             cnt;
750
751         crit_enter();
752         /*
753          * Loop thru entire queue until queue is empty
754          *      (but panic rather loop forever)
755          */
756         do {
757                 cnt = 0;
758                 qprev = NULL;
759                 for (sqp = atm_stackq_head; sqp; ) {
760
761                         /*
762                          * Got an eligible entry, do STACK_CALL stuff
763                          */
764                         if (sqp->sq_cmd & STKCMD_UP) {
765                                 if (sqp->sq_connvc->cvc_downcnt) {
766
767                                         /*
768                                          * Cant process now, skip it
769                                          */
770                                         qprev = sqp;
771                                         sqp = sqp->sq_next;
772                                         continue;
773                                 }
774
775                                 /*
776                                  * OK, dispatch the call
777                                  */
778                                 sqp->sq_connvc->cvc_upcnt++;
779                                 (*sqp->sq_func)(sqp->sq_cmd, 
780                                                 sqp->sq_token,
781                                                 sqp->sq_arg1,
782                                                 sqp->sq_arg2);
783                                 sqp->sq_connvc->cvc_upcnt--;
784                         } else {
785                                 if (sqp->sq_connvc->cvc_upcnt) {
786
787                                         /*
788                                          * Cant process now, skip it
789                                          */
790                                         qprev = sqp;
791                                         sqp = sqp->sq_next;
792                                         continue;
793                                 }
794
795                                 /*
796                                  * OK, dispatch the call
797                                  */
798                                 sqp->sq_connvc->cvc_downcnt++;
799                                 (*sqp->sq_func)(sqp->sq_cmd, 
800                                                 sqp->sq_token,
801                                                 sqp->sq_arg1,
802                                                 sqp->sq_arg2);
803                                 sqp->sq_connvc->cvc_downcnt--;
804                         }
805
806                         /*
807                          * Dequeue processed entry and free it
808                          */
809                         cnt++;
810                         qnext = sqp->sq_next;
811                         if (qprev)
812                                 qprev->sq_next = qnext;
813                         else
814                                 atm_stackq_head = qnext;
815                         if (qnext == NULL)
816                                 atm_stackq_tail = qprev;
817                         atm_free((caddr_t)sqp);
818                         sqp = qnext;
819                 }
820         } while (cnt > 0);
821
822         /*
823          * Make sure entire queue was drained
824          */
825         if (atm_stackq_head != NULL)
826                 panic("atm_stack_drain: Queue not emptied");
827         crit_exit();
828 }
829
830
831 /*
832  * Process Interrupt Queue
833  * 
834  * Processes entries on the ATM interrupt queue.  This queue is used by
835  * device interface drivers in order to schedule events from the driver's 
836  * lower (interrupt) half to the driver's stack services.
837  *
838  * The interrupt routines must store the stack processing function to call
839  * and a token (typically a driver/stack control block) at the front of the
840  * queued buffer.  We assume that the function pointer and token values are 
841  * both contained (and properly aligned) in the first buffer of the chain.
842  *
843  * Arguments:
844  *      none
845  *
846  * Returns:
847  *      none
848  *
849  */
850 static int
851 atm_intr(struct netmsg *msg)
852 {
853         struct mbuf *m = ((struct netmsg_packet *)msg)->nm_packet;
854         caddr_t         cp;
855         atm_intr_func_t func;
856         void            *token;
857
858         /*
859          * Get function to call and token value
860          */
861         KB_DATASTART(m, cp, caddr_t);
862         func = *(atm_intr_func_t *)cp;
863         cp += sizeof(func);
864         token = *(void **)cp;
865         KB_HEADADJ(m, -(sizeof(func) + sizeof(token)));
866         if (KB_LEN(m) == 0) {
867                 KBuffer         *m1;
868                 KB_UNLINKHEAD(m, m1);
869                 m = m1;
870         }
871
872         /*
873          * Call processing function
874          */
875         (*func)(token, m);
876
877         /*
878          * Drain any deferred calls
879          */
880         STACK_DRAIN();
881         /* msg was embedded in the mbuf, do not reply! */
882         return(EASYNC);
883 }
884
885 /*
886  * Print a pdu buffer chain
887  * 
888  * Arguments:
889  *      m       pointer to pdu buffer chain
890  *      msg     pointer to message header string
891  *
892  * Returns:
893  *      none
894  *
895  */
896 void
897 atm_pdu_print(KBuffer *m, char *msg)
898 {
899         caddr_t         cp;
900         int             i;
901         char            c = ' ';
902
903         printf("%s:", msg);
904         while (m) { 
905                 KB_DATASTART(m, cp, caddr_t);
906                 printf("%cbfr=%p data=%p len=%d: ",
907                         c, m, cp, KB_LEN(m));
908                 c = '\t';
909                 if (atm_print_data) {
910                         for (i = 0; i < KB_LEN(m); i++) {
911                                 printf("%2x ", (u_char)*cp++);
912                         }
913                         printf("<end_bfr>\n");
914                 } else {
915                         printf("\n");
916                 }
917                 m = KB_NEXT(m);
918         }
919 }
920