Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
58e45131
Commit
58e45131
authored
Aug 21, 2005
by
David S. Miller
Committed by
David S. Miller
Aug 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DCCP]: Fix printf format warnings on 64-bit.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
05465343
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
net/dccp/input.c
net/dccp/input.c
+8
-2
No files found.
net/dccp/input.c
View file @
58e45131
...
...
@@ -141,10 +141,16 @@ static int dccp_check_seqno(struct sock *sk, struct sk_buff *skb)
"(P.ackno %s or LAWL(%llu) <= P.ackno(%llu) <= S.AWH(%llu), "
"sending SYNC...
\n
"
,
dccp_packet_name
(
dh
->
dccph_type
),
lswl
,
DCCP_SKB_CB
(
skb
)
->
dccpd_seq
,
dp
->
dccps_swh
,
(
unsigned
long
long
)
lswl
,
(
unsigned
long
long
)
DCCP_SKB_CB
(
skb
)
->
dccpd_seq
,
(
unsigned
long
long
)
dp
->
dccps_swh
,
(
DCCP_SKB_CB
(
skb
)
->
dccpd_ack_seq
==
DCCP_PKT_WITHOUT_ACK_SEQ
)
?
"doesn't exist"
:
"exists"
,
lawl
,
DCCP_SKB_CB
(
skb
)
->
dccpd_ack_seq
,
dp
->
dccps_awh
);
(
unsigned
long
long
)
lawl
,
(
unsigned
long
long
)
DCCP_SKB_CB
(
skb
)
->
dccpd_ack_seq
,
(
unsigned
long
long
)
dp
->
dccps_awh
);
dccp_send_sync
(
sk
,
DCCP_SKB_CB
(
skb
)
->
dccpd_seq
,
DCCP_PKT_SYNC
);
return
-
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