Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215145
b: refs/heads/master
c: ecdfbda
h: refs/heads/master
i:
  215143: a8afb41
v: v3
  • Loading branch information
Gerrit Renker committed Oct 12, 2010
1 parent e82c193 commit 08a9854
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d196c9a5d4e150cdff675662214c80c69b906958
refs/heads/master: ecdfbdabbe4e0cf0443cbbea2df1bf51bf67f3f3
3 changes: 1 addition & 2 deletions trunk/net/dccp/dccp.h
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,7 @@ static inline void dccp_update_gss(struct sock *sk, u64 seq)
static inline int dccp_ack_pending(const struct sock *sk)
{
const struct dccp_sock *dp = dccp_sk(sk);
return dp->dccps_timestamp_echo != 0 ||
(dp->dccps_hc_rx_ackvec != NULL &&
return (dp->dccps_hc_rx_ackvec != NULL &&
dccp_ackvec_pending(dp->dccps_hc_rx_ackvec)) ||
inet_csk_ack_scheduled(sk);
}
Expand Down
2 changes: 2 additions & 0 deletions trunk/net/dccp/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ int dccp_parse_options(struct sock *sk, struct dccp_request_sock *dreq,
dccp_role(sk), ntohl(opt_val),
(unsigned long long)
DCCP_SKB_CB(skb)->dccpd_ack_seq);
/* schedule an Ack in case this sender is quiescent */
inet_csk_schedule_ack(sk);
break;
case DCCPO_TIMESTAMP_ECHO:
if (len != 4 && len != 6 && len != 8)
Expand Down

0 comments on commit 08a9854

Please sign in to comment.