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
506ebdb2
Commit
506ebdb2
authored
Oct 11, 2002
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net/bluetooth/hci_sock.c: Fix recvmsg/sendmsg args.
parent
dd122de5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
net/bluetooth/hci_sock.c
net/bluetooth/hci_sock.c
+2
-2
No files found.
net/bluetooth/hci_sock.c
View file @
506ebdb2
...
@@ -316,7 +316,7 @@ static inline void hci_sock_cmsg(struct sock *sk, struct msghdr *msg, struct sk_
...
@@ -316,7 +316,7 @@ static inline void hci_sock_cmsg(struct sock *sk, struct msghdr *msg, struct sk_
put_cmsg
(
msg
,
SOL_HCI
,
HCI_CMSG_TSTAMP
,
sizeof
(
skb
->
stamp
),
&
skb
->
stamp
);
put_cmsg
(
msg
,
SOL_HCI
,
HCI_CMSG_TSTAMP
,
sizeof
(
skb
->
stamp
),
&
skb
->
stamp
);
}
}
static
int
hci_sock_recvmsg
(
struct
socket
*
sock
,
struct
msghdr
*
msg
,
int
len
,
int
flags
,
struct
scm_cookie
*
scm
)
static
int
hci_sock_recvmsg
(
struct
kiocb
*
iocb
,
struct
socket
*
sock
,
struct
msghdr
*
msg
,
int
len
,
int
flags
,
struct
scm_cookie
*
scm
)
{
{
int
noblock
=
flags
&
MSG_DONTWAIT
;
int
noblock
=
flags
&
MSG_DONTWAIT
;
struct
sock
*
sk
=
sock
->
sk
;
struct
sock
*
sk
=
sock
->
sk
;
...
@@ -352,7 +352,7 @@ static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, in
...
@@ -352,7 +352,7 @@ static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, in
return
err
?
:
copied
;
return
err
?
:
copied
;
}
}
static
int
hci_sock_sendmsg
(
struct
socket
*
sock
,
struct
msghdr
*
msg
,
int
len
,
static
int
hci_sock_sendmsg
(
struct
kiocb
*
iocb
,
struct
socket
*
sock
,
struct
msghdr
*
msg
,
int
len
,
struct
scm_cookie
*
scm
)
struct
scm_cookie
*
scm
)
{
{
struct
sock
*
sk
=
sock
->
sk
;
struct
sock
*
sk
=
sock
->
sk
;
...
...
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