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
Kirill Smelkov
linux
Commits
7c13a0d9
Commit
7c13a0d9
authored
Nov 12, 2010
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6
parents
369cf77a
22e091e5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
include/linux/netfilter.h
include/linux/netfilter.h
+1
-1
net/ipv6/netfilter/nf_conntrack_reasm.c
net/ipv6/netfilter/nf_conntrack_reasm.c
+1
-1
No files found.
include/linux/netfilter.h
View file @
7c13a0d9
...
...
@@ -215,7 +215,7 @@ NF_HOOK_COND(uint8_t pf, unsigned int hook, struct sk_buff *skb,
int
ret
;
if
(
!
cond
||
(
ret
=
nf_hook_thresh
(
pf
,
hook
,
skb
,
in
,
out
,
okfn
,
INT_MIN
)
==
1
))
(
(
ret
=
nf_hook_thresh
(
pf
,
hook
,
skb
,
in
,
out
,
okfn
,
INT_MIN
)
)
==
1
))
ret
=
okfn
(
skb
);
return
ret
;
}
...
...
net/ipv6/netfilter/nf_conntrack_reasm.c
View file @
7c13a0d9
...
...
@@ -286,7 +286,7 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb,
/* Check for overlap with preceding fragment. */
if
(
prev
&&
(
NFCT_FRAG6_CB
(
prev
)
->
offset
+
prev
->
len
)
-
offset
>
0
)
(
NFCT_FRAG6_CB
(
prev
)
->
offset
+
prev
->
len
)
>
offset
)
goto
discard_fq
;
/* Look for overlap with succeeding segment. */
...
...
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