1. 03 12月, 2006 1 次提交
  2. 02 11月, 2006 1 次提交
  3. 25 9月, 2006 1 次提交
  4. 30 8月, 2006 1 次提交
  5. 01 7月, 2006 1 次提交
  6. 18 6月, 2006 1 次提交
  7. 29 3月, 2006 1 次提交
  8. 04 1月, 2006 1 次提交
    • S
      [TCP]: less inline's · 40efc6fa
      Stephen Hemminger 提交于
      TCP inline usage cleanup:
       * get rid of inline in several places
       * replace __inline__ with inline where possible
       * move functions used in one file out of tcp.h
       * let compiler decide on used once cases
      
      On x86_64: 
         text	   data	    bss	    dec	    hex	filename
      3594701	 648348	 567400	4810449	 4966d1	vmlinux.orig
      3593133	 648580	 567400	4809113	 496199	vmlinux
      
      On sparc64:
         text	   data	    bss	    dec	    hex	filename
      2538278	 406152	 530392	3474822	 350586	vmlinux.ORIG
      2536382	 406384	 530392	3473158	 34ff06	vmlinux
      Signed-off-by: NStephen Hemminger <shemminger@osdl.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      40efc6fa
  9. 11 11月, 2005 3 次提交
  10. 30 8月, 2005 1 次提交
    • A
      [ICSK]: Move TCP congestion avoidance members to icsk · 6687e988
      Arnaldo Carvalho de Melo 提交于
      This changeset basically moves tcp_sk()->{ca_ops,ca_state,etc} to inet_csk(),
      minimal renaming/moving done in this changeset to ease review.
      
      Most of it is just changes of struct tcp_sock * to struct sock * parameters.
      
      With this we move to a state closer to two interesting goals:
      
      1. Generalisation of net/ipv4/tcp_diag.c, becoming inet_diag.c, being used
         for any INET transport protocol that has struct inet_hashinfo and are
         derived from struct inet_connection_sock. Keeps the userspace API, that will
         just not display DCCP sockets, while newer versions of tools can support
         DCCP.
      
      2. INET generic transport pluggable Congestion Avoidance infrastructure, using
         the current TCP CA infrastructure with DCCP.
      Signed-off-by: NArnaldo Carvalho de Melo <acme@mandriva.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      6687e988
  11. 24 6月, 2005 2 次提交