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
cdd77850
Commit
cdd77850
authored
Dec 30, 2003
by
Jeroen Vreeken
Committed by
David S. Miller
Dec 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AX25]: Missing spin_unlock() and recvmsg reported dst instead of src.
parent
693519c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
net/ax25/af_ax25.c
net/ax25/af_ax25.c
+4
-3
No files found.
net/ax25/af_ax25.c
View file @
cdd77850
...
...
@@ -247,6 +247,7 @@ void ax25_send_to_raw(ax25_address *addr, struct sk_buff *skb, int proto)
kfree_skb
(
copy
);
}
}
spin_unlock_bh
(
&
ax25_list_lock
);
}
/*
...
...
@@ -1618,16 +1619,16 @@ static int ax25_recvmsg(struct kiocb *iocb, struct socket *sock,
if
(
msg
->
msg_namelen
!=
0
)
{
struct
sockaddr_ax25
*
sax
=
(
struct
sockaddr_ax25
*
)
msg
->
msg_name
;
ax25_digi
digi
;
ax25_address
dest
;
ax25_address
src
;
ax25_addr_parse
(
skb
->
mac
.
raw
+
1
,
skb
->
data
-
skb
->
mac
.
raw
-
1
,
NULL
,
&
dest
,
&
digi
,
NULL
,
NULL
);
ax25_addr_parse
(
skb
->
mac
.
raw
+
1
,
skb
->
data
-
skb
->
mac
.
raw
-
1
,
&
src
,
NULL
,
&
digi
,
NULL
,
NULL
);
sax
->
sax25_family
=
AF_AX25
;
/* We set this correctly, even though we may not let the
application know the digi calls further down (because it
did NOT ask to know them). This could get political... **/
sax
->
sax25_ndigis
=
digi
.
ndigi
;
sax
->
sax25_call
=
dest
;
sax
->
sax25_call
=
src
;
if
(
sax
->
sax25_ndigis
!=
0
)
{
int
ct
;
...
...
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