.\" -*- nroff -*- .\" .\" copyright (C) 1997 Cyrus Durgin .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" .TH SKB_QUEUE_TAIL 9 "November 24, 1997" "Linux DDI" "Networking Functions" .hlm 0 .na .SH NAME __skb_queue_tail, skb_queue_tail \- insert an sk_buff at the tail of a list .SH SYNOPSIS .B #include .HP .BI "void __skb_queue_tail(struct sk_buff_head " *list ", struct sk_buff " *newsk ");" .TP .BI "void skb_queue_tail(struct sk_buff_head " *list ", struct sk_buff " *newsk ");" .hlm 1 .ad .SH DESCRIPTION The \fBskb_queue_tail\fP function adds \fInewsk\fP to the tail of \fIlist\fP. Specifically, it sets the list, next, and prev pointers in \fInewsk\fP, and increments the qlen element of \fIlist\fP. .SH "RETURN VALUE" None. .SH NOTES It is important to note the difference between not only \fB__skb_queue_tail\fP and \fBskb_queue_tail\fP, but all the \fB__skb_\fP functions and their \fBskb_\fP counterparts. Essentially, the \fB__skb_\fP functions are non-atomic, and should only be used with interrupts disabled. As a convenience, the \fBskb_\fP functions are provided, which perform interrupt disable / enable wrapper functionality in addition to performing their specific tasks. .SH AVAILABILITY Linux 1.0+ .SH "SEE ALSO" .hlm 0 .na .BR intro "(9), " skb_queue_head "(9), " skb_insert "(9)" .ad .hlm 1 .PP /usr/src/linux/net/netlink.c /usr/src/linux/net/appletalk/aarp.c /usr/src/linux/net/core/skbuff.c /usr/src/linux/net/ipv4/arp.c /usr/src/linux/include/net/sock.h .SH AUTHOR Cyrus Durgin