1. NAME

skb_reserve - adjust headroom

2. SYNOPSIS

void skb_reserve(struct sk_buff *  skb , int  len );

3. ARGUMENTS

skb
    buffer to alter

len
    bytes to move

4. DESCRIPTION

Increase the headroom of an empty sk_buff by reducing the tail room. This is only allowed for an empty buffer.

5. COPYRIGHT