mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00
net: ptp: mark filter as __initdata
sk_unattached_filter_create() will copy the filter's instructions so we don't need to have the master copy hanging around after initialization. Signed-off-by: Mathias Krause <minipli@googlemail.com> Acked-by: Alexei Starovoitov <ast@plumgrid.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
98920ba691
commit
0f49ff0702
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ EXPORT_SYMBOL_GPL(ptp_classify_raw);
|
|||
|
||||
void __init ptp_classifier_init(void)
|
||||
{
|
||||
static struct sock_filter ptp_filter[] = {
|
||||
static struct sock_filter ptp_filter[] __initdata = {
|
||||
{ 0x28, 0, 0, 0x0000000c },
|
||||
{ 0x15, 0, 12, 0x00000800 },
|
||||
{ 0x30, 0, 0, 0x00000017 },
|
||||
|
|
Loading…
Add table
Reference in a new issue