1. NAME

__dev_remove_offload - remove offload handler

2. SYNOPSIS

void __dev_remove_offload(struct packet_offload *  po );

3. ARGUMENTS

po
    packet offload declaration

4. DESCRIPTION

Remove a protocol offload handler that was previously added to the kernel offload handlers by dev_add_offload. The passed offload_type is removed from the kernel lists and can be freed or reused once this function returns.

The packet type might still be in use by receivers and must not be freed until after all the CPUAqs have gone through a quiescent state.

5. COPYRIGHT