'\" t
.\"     Title: skb_fill_page_desc
.\"    Author: [FIXME: author] [see http://docbook.sf.net/el/author]
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\"      Date: July 2017
.\"    Manual: Linux Networking
.\"    Source: Kernel Hackers Manual 4.11.6
.\"  Language: English
.\"
.TH "SKB_FILL_PAGE_DESC" "9" "July 2017" "Kernel Hackers Manual 4\&.11\&" "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_fill_page_desc \- initialise a paged fragment in an skb
.SH "SYNOPSIS"
.HP \w'void\ skb_fill_page_desc('u
.BI "void skb_fill_page_desc(struct\ sk_buff\ *\ " "skb" ", int\ " "i" ", struct\ page\ *\ " "page" ", int\ " "off" ", int\ " "size" ");"
.SH "ARGUMENTS"
.PP
\fIstruct sk_buff * skb\fR
.RS 4
buffer containing fragment to be initialised
.RE
.PP
\fIint i\fR
.RS 4
paged fragment index to initialise
.RE
.PP
\fIstruct page * page\fR
.RS 4
the page to use for this fragment
.RE
.PP
\fIint off\fR
.RS 4
the offset to the data with
\fIpage\fR
.RE
.PP
\fIint size\fR
.RS 4
the length of the data
.RE
.SH "DESCRIPTION"
.PP
As per
\fB__skb_fill_page_desc\fR
\-\- initialises the
\fIi\fR\*(Aqth fragment of
\fIskb\fR
to point to
\fIsize\fR
bytes at offset
\fIoff\fR
within
\fIpage\fR\&. In addition updates
\fIskb\fR
such that
\fIi\fR
is the last fragment\&.
.PP
Does not take any additional reference on the fragment\&.
.SH "COPYRIGHT"
.br
