'\" t .\" Title: __skb_queue_after .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: March 2017 .\" Manual: Linux Networking .\" Source: Kernel Hackers Manual 4.10.7 .\" Language: English .\" .TH "__SKB_QUEUE_AFTER" "9" "March 2017" "Kernel Hackers Manual 4\&.10\&" "Linux Networking" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" __skb_queue_after \- queue a buffer at the list head .SH "SYNOPSIS" .HP \w'void\ __skb_queue_after('u .BI "void __skb_queue_after(struct\ sk_buff_head\ *\ " "list" ", struct\ sk_buff\ *\ " "prev" ", struct\ sk_buff\ *\ " "newsk" ");" .SH "ARGUMENTS" .PP \fIlist\fR .RS 4 list to use .RE .PP \fIprev\fR .RS 4 place after this buffer .RE .PP \fInewsk\fR .RS 4 buffer to queue .RE .SH "DESCRIPTION" .PP Queue a buffer int the middle of a list\&. This function takes no locks and you must therefore hold required locks before calling it\&. .PP A buffer cannot be placed on two lists at the same time\&. .SH "COPYRIGHT" .br