1__DEV_REMOVE_PACK(9) Network device support __DEV_REMOVE_PACK(9)
2
3
4
6 __dev_remove_pack - remove packet handler
7
9 void __dev_remove_pack(struct packet_type * pt);
10
12 pt
13 packet type declaration
14
16 Remove a protocol handler that was previously added to the kernel
17 protocol handlers by dev_add_pack. The passed packet_type is removed
18 from the kernel lists and can be freed or reused once this function
19 returns.
20
21 The packet type might still be in use by receivers and must not be
22 freed until after all the CPU´s have gone through a quiescent state.
23
25Kernel Hackers Manual 2.6. June 2019 __DEV_REMOVE_PACK(9)