1. NAME

dev_add_pack - add packet handler

2. SYNOPSIS

void dev_add_pack(struct packet_type *  pt );

3. ARGUMENTS

pt
    packet type declaration

4. DESCRIPTION

Add a protocol handler to the networking stack. The passed packet_type 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 packet type (until the next received packet).

5. COPYRIGHT