]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Merge branch 'master' of /home/davem/src/GIT/linux-2.6/
authorDavid S. Miller <davem@davemloft.net>
Sat, 12 Dec 2009 01:12:17 +0000 (17:12 -0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 12 Dec 2009 01:12:17 +0000 (17:12 -0800)
Conflicts:
include/net/tcp.h

1  2 
MAINTAINERS
drivers/net/atl1c/atl1c_main.c
drivers/net/sky2.c
drivers/net/wireless/ath/ath5k/eeprom.c
drivers/net/wireless/b43/main.c
drivers/net/wireless/orinoco/hermes_dld.c
include/net/tcp.h

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
Simple merge
index 0248c181a92cb66c4405018d19b27fc9106f61dc,5740b85bc5a0978349eb042caf17ec6255c98158..1b6f7d348ceed85dac011ccfc8bc7f0a1dfee1cb
@@@ -1261,7 -1261,29 +1261,6 @@@ static inline struct sk_buff *tcp_write
  #define tcp_for_write_queue_from_safe(skb, tmp, sk)                   \
        skb_queue_walk_from_safe(&(sk)->sk_write_queue, skb, tmp)
  
 -/* This function calculates a "timeout" which is equivalent to the timeout of a
 - * TCP connection after "boundary" unsuccessful, exponentially backed-off
 - * retransmissions with an initial RTO of TCP_RTO_MIN.
 - */
 -static inline bool retransmits_timed_out(const struct sock *sk,
 -                                       unsigned int boundary)
 -{
 -      unsigned int timeout, linear_backoff_thresh;
 -
 -      if (!inet_csk(sk)->icsk_retransmits)
 -              return false;
 -
 -      linear_backoff_thresh = ilog2(TCP_RTO_MAX/TCP_RTO_MIN);
 -
 -      if (boundary <= linear_backoff_thresh)
 -              timeout = ((2 << boundary) - 1) * TCP_RTO_MIN;
 -      else
 -              timeout = ((2 << linear_backoff_thresh) - 1) * TCP_RTO_MIN +
 -                        (boundary - linear_backoff_thresh) * TCP_RTO_MAX;
 -
 -      return (tcp_time_stamp - tcp_sk(sk)->retrans_stamp) >= timeout;
 -}
--
  static inline struct sk_buff *tcp_send_head(struct sock *sk)
  {
        return sk->sk_send_head;