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
37433f98
Commit
37433f98
authored
May 19, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/davem/sparc-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
31a02fd4
775407eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
net/ipv6/tcp_ipv6.c
net/ipv6/tcp_ipv6.c
+1
-1
net/netlink/af_netlink.c
net/netlink/af_netlink.c
+1
-1
No files found.
net/ipv6/tcp_ipv6.c
View file @
37433f98
...
...
@@ -479,7 +479,7 @@ static int tcp_v6_check_established(struct sock *sk)
/* And established part... */
sk_for_each
(
sk2
,
node
,
&
head
->
chain
)
{
if
(
TCP_IPV6_MATCH
(
sk
,
saddr
,
daddr
,
ports
,
dif
))
if
(
TCP_IPV6_MATCH
(
sk
2
,
saddr
,
daddr
,
ports
,
dif
))
goto
not_unique
;
}
...
...
net/netlink/af_netlink.c
View file @
37433f98
...
...
@@ -543,7 +543,7 @@ int netlink_unicast(struct sock *ssk, struct sk_buff *skb, u32 pid, int nonblock
sk
=
netlink_getsockbypid
(
ssk
,
pid
);
if
(
IS_ERR
(
sk
))
{
kfree_skb
(
skb
);
return
PTR_ERR
(
sk
b
);
return
PTR_ERR
(
sk
);
}
err
=
netlink_attachskb
(
sk
,
skb
,
nonblock
,
timeo
);
if
(
err
==
1
)
...
...
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