1. NAME

dev_add_offload - register offload handlers

2. SYNOPSIS

void dev_add_offload(struct packet_offload *  po );

3. ARGUMENTS

po
    protocol offload declaration

4. DESCRIPTION

Add protocol offload handlers to the networking stack. The passed proto_offload is linked into kernel lists and may not be freed until it has been removed from the kernel lists.

This call does not sleep therefore it can not guarantee all CPUAqs that are in middle of receiving packets will see the new offload handlers (until the next received packet).

5. COPYRIGHT