Skip to content
Snippets Groups Projects
Commit 8295ad34 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix a compile error in the netfilter match speedup patch for 2.6.30

SVN-Revision: 15849
parent c2e3ae22
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
+ int v = ((struct ipt_standard_target *)t)->verdict; + int v = ((struct ipt_standard_target *)t)->verdict;
+ if ((v < 0) && (v != IPT_RETURN)) { + if ((v < 0) && (v != IPT_RETURN)) {
+ ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1); + ADD_COUNTER(e->counters, ntohs(ip->tot_len), 1);
+ read_unlock_bh(&table->lock); + xt_info_rdunlock_bh();
+ return (unsigned)(-v) - 1; + return (unsigned)(-v) - 1;
+ } + }
+ } + }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment