1. NAME

skb_orphan - orphan a buffer

2. SYNOPSIS

void skb_orphan(struct sk_buff *  skb );

3. ARGUMENTS

skb
    buffer to orphan

4. DESCRIPTION

If a buffer currently has an owner then we call the ownerAqs destructor function and make the skb unowned. The buffer continues to exist but is no longer charged to its former owner.

5. COPYRIGHT