1. 22 9月, 2005 12 次提交
  2. 16 9月, 2005 5 次提交
  3. 15 9月, 2005 1 次提交
    • J
      [IPVS]: ip_vs_ftp breaks connections using persistence · 87375ab4
      Julian Anastasov 提交于
      ip_vs_ftp when loaded can create NAT connections with unknown client
      port for passive FTP. For such expectations we lookup with cport=0 on
      incoming packet but it matches the format of the persistence templates
      causing packets to other persistent virtual servers to be forwarded to
      real server without creating connection. Later the reply packets are
      treated as foreign and not SNAT-ed.
      
      This patch changes the connection lookup for packets from clients:
      
      * introduce IP_VS_CONN_F_TEMPLATE connection flag to mark the
        connection as template
      
      * create new connection lookup function just for templates -
        ip_vs_ct_in_get
      
      * make sure ip_vs_conn_in_get hits only connections with
        IP_VS_CONN_F_NO_CPORT flag set when s_port is 0. By this way
        we avoid returning template when looking for cport=0 (ftp)
      Signed-off-by: NJulian Anastasov <ja@ssi.bg>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      87375ab4
  4. 14 9月, 2005 1 次提交
    • A
      [PATCH] drivers/net/wan/: possible cleanups · 7665a089
      Adrian Bunk 提交于
      This patch contains possible cleanups including the following:
      - make needlessly global code static
      - #if 0 the following unused global function:
        - sdladrv.c: sdla_intde
      - remove the following unused global variable:
        - lmc_media.c: lmc_t1_cables
      - remove the following unneeded EXPORT_SYMBOL's:
        - cycx_drv.c: cycx_inten
        - sdladrv.c: sdla_inten
        - sdladrv.c: sdla_intde
        - sdladrv.c: sdla_intack
        - sdladrv.c: sdla_intr
        - syncppp.c: sppp_input
        - syncppp.c: sppp_change_mtu
      Signed-off-by: NAdrian Bunk <bunk@stusta.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      7665a089
  5. 13 9月, 2005 6 次提交
  6. 09 9月, 2005 2 次提交
  7. 08 9月, 2005 3 次提交
  8. 07 9月, 2005 2 次提交
    • J
      [PATCH] WE-19 for kernel 2.6.13 · 6582c164
      Jean Tourrilhes 提交于
      	Hi Jeff,
      
      	This is version 19 of the Wireless Extensions. It was supposed
      to be the fallback of the WPA API changes, but people seem quite happy
      about it (especially Jouni), so the patch is rather small.
      	The patch has been fully tested with 2.6.13 and various
      wireless drivers, and is in its final version. Would you mind pushing
      that into Linus's kernel so that the driver and the apps can take
      advantage ot it ?
      
      	It includes :
      	o iwstat improvement (explicit dBm). This is the result of
      long discussions with Dan Williams, the authors of
      NetworkManager. Thanks to him for all the fruitful feedback.
      	o remove pointer from event stream. I was not totally sure if
      this pointer was 32-64 bits clean, so I'd rather remove it and be at
      peace with it.
      	o remove linux header from wireless.h. This has long been
      requested by people writting user space apps, now it's done, and it
      was not even painful.
      	o final deprecation of spy_offset. You did not like it, it's
      now gone for good.
      	o Start deprecating dev->get_wireless_stats -> debloat netdev
      	o Add "check" version of event macros for ieee802.11
      stack. Jiri Benc doesn't like the current macros, we aim to please ;-)
      	All those changes, except the last one, have been bit-roting on
      my web pages for a while...
      
      	Patches for most kernel drivers will follow. Patches for the
      Orinoco and the HostAP drivers have been sent to their respective
      maintainers.
      
      	Have fun...
      
      	Jean
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      6582c164
    • R
      [AX25]: Make ax2asc thread-proof · f75268cd
      Ralf Baechle 提交于
      Ax2asc was still using a static buffer for all invocations which isn't
      exactly SMP-safe.  Change ax2asc to take an additional result buffer as
      the argument.  Change all callers to provide such a buffer.
      Signed-off-by: NRalf Baechle DL5RB <ralf@linux-mips.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f75268cd
  9. 06 9月, 2005 2 次提交
  10. 02 9月, 2005 4 次提交
  11. 30 8月, 2005 2 次提交