Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 842bff36 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Patrick McHardy
Browse files

netfilter: ebtables: remove unneeded initializations



The initialization of the lock element is not needed
since the lock is always initialized in ebt_register_table.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 9c8222b9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -46,7 +46,6 @@ static struct ebt_table broute_table =
	.name		= "broute",
	.table		= &initial_table,
	.valid_hooks	= 1 << NF_BR_BROUTING,
	.lock		= __RW_LOCK_UNLOCKED(broute_table.lock),
	.check		= check,
	.me		= THIS_MODULE,
};
+0 −1
Original line number Diff line number Diff line
@@ -55,7 +55,6 @@ static struct ebt_table frame_filter =
	.name		= "filter",
	.table		= &initial_table,
	.valid_hooks	= FILTER_VALID_HOOKS,
	.lock		= __RW_LOCK_UNLOCKED(frame_filter.lock),
	.check		= check,
	.me		= THIS_MODULE,
};
+0 −1
Original line number Diff line number Diff line
@@ -55,7 +55,6 @@ static struct ebt_table frame_nat =
	.name		= "nat",
	.table		= &initial_table,
	.valid_hooks	= NAT_VALID_HOOKS,
	.lock		= __RW_LOCK_UNLOCKED(frame_nat.lock),
	.check		= check,
	.me		= THIS_MODULE,
};