Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
5953a303
Commit
5953a303
authored
May 31, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6
parents
b1faf566
7489aec8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
17 deletions
+6
-17
include/linux/netfilter/x_tables.h
include/linux/netfilter/x_tables.h
+1
-1
net/ipv4/netfilter/ip_tables.c
net/ipv4/netfilter/ip_tables.c
+1
-1
net/ipv6/netfilter/ip6_tables.c
net/ipv6/netfilter/ip6_tables.c
+1
-1
net/netfilter/x_tables.c
net/netfilter/x_tables.c
+3
-14
No files found.
include/linux/netfilter/x_tables.h
View file @
5953a303
...
...
@@ -397,7 +397,7 @@ struct xt_table_info {
* @stacksize jumps (number of user chains) can possibly be made.
*/
unsigned
int
stacksize
;
unsigned
int
*
stackptr
;
unsigned
int
__percpu
*
stackptr
;
void
***
jumpstack
;
/* ipt_entry tables: one per CPU */
/* Note : this field MUST be the last one, see XT_TABLE_INFO_SZ */
...
...
net/ipv4/netfilter/ip_tables.c
View file @
5953a303
...
...
@@ -336,7 +336,7 @@ ipt_do_table(struct sk_buff *skb,
cpu
=
smp_processor_id
();
table_base
=
private
->
entries
[
cpu
];
jumpstack
=
(
struct
ipt_entry
**
)
private
->
jumpstack
[
cpu
];
stackptr
=
&
private
->
stackptr
[
cpu
]
;
stackptr
=
per_cpu_ptr
(
private
->
stackptr
,
cpu
)
;
origptr
=
*
stackptr
;
e
=
get_entry
(
table_base
,
private
->
hook_entry
[
hook
]);
...
...
net/ipv6/netfilter/ip6_tables.c
View file @
5953a303
...
...
@@ -363,7 +363,7 @@ ip6t_do_table(struct sk_buff *skb,
cpu
=
smp_processor_id
();
table_base
=
private
->
entries
[
cpu
];
jumpstack
=
(
struct
ip6t_entry
**
)
private
->
jumpstack
[
cpu
];
stackptr
=
&
private
->
stackptr
[
cpu
]
;
stackptr
=
per_cpu_ptr
(
private
->
stackptr
,
cpu
)
;
origptr
=
*
stackptr
;
e
=
get_entry
(
table_base
,
private
->
hook_entry
[
hook
]);
...
...
net/netfilter/x_tables.c
View file @
5953a303
...
...
@@ -699,10 +699,8 @@ void xt_free_table_info(struct xt_table_info *info)
vfree
(
info
->
jumpstack
);
else
kfree
(
info
->
jumpstack
);
if
(
sizeof
(
unsigned
int
)
*
nr_cpu_ids
>
PAGE_SIZE
)
vfree
(
info
->
stackptr
);
else
kfree
(
info
->
stackptr
);
free_percpu
(
info
->
stackptr
);
kfree
(
info
);
}
...
...
@@ -753,14 +751,9 @@ static int xt_jumpstack_alloc(struct xt_table_info *i)
unsigned
int
size
;
int
cpu
;
size
=
sizeof
(
unsigned
int
)
*
nr_cpu_ids
;
if
(
size
>
PAGE_SIZE
)
i
->
stackptr
=
vmalloc
(
size
);
else
i
->
stackptr
=
kmalloc
(
size
,
GFP_KERNEL
);
i
->
stackptr
=
alloc_percpu
(
unsigned
int
);
if
(
i
->
stackptr
==
NULL
)
return
-
ENOMEM
;
memset
(
i
->
stackptr
,
0
,
size
);
size
=
sizeof
(
void
**
)
*
nr_cpu_ids
;
if
(
size
>
PAGE_SIZE
)
...
...
@@ -844,10 +837,6 @@ struct xt_table *xt_register_table(struct net *net,
struct
xt_table_info
*
private
;
struct
xt_table
*
t
,
*
table
;
ret
=
xt_jumpstack_alloc
(
newinfo
);
if
(
ret
<
0
)
return
ERR_PTR
(
ret
);
/* Don't add one object to multiple lists. */
table
=
kmemdup
(
input_table
,
sizeof
(
struct
xt_table
),
GFP_KERNEL
);
if
(
!
table
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment