1. NAME

skb_segment - Perform protocol segmentation on skb.

2. SYNOPSIS

struct sk_buff * skb_segment(struct sk_buff *  skb , netdev_features_t  features );

3. ARGUMENTS

skb
    buffer to segment

features
    features for the output path (see dev->features)

4. DESCRIPTION

This function performs segmentation on the given skb. It returns a pointer to the first in a list of new skbs for the segments. In case of error it returns ERR_PTR(err).

5. COPYRIGHT