1. 04 10月, 2010 1 次提交
  2. 25 9月, 2010 1 次提交
  3. 24 8月, 2010 1 次提交
  4. 22 8月, 2010 1 次提交
    • D
      PPTP: PPP over IPv4 (Point-to-Point Tunneling Protocol) · 00959ade
      Dmitry Kozlov 提交于
      PPP: introduce "pptp" module which implements point-to-point tunneling protocol using pppox framework
      NET: introduce the "gre" module for demultiplexing GRE packets on version criteria
           (required to pptp and ip_gre may coexists)
      NET: ip_gre: update to use the "gre" module
      
      This patch introduces then pptp support to the linux kernel which
      dramatically speeds up pptp vpn connections and decreases cpu usage in
      comparison of existing user-space implementation
      (poptop/pptpclient). There is accel-pptp project
      (https://sourceforge.net/projects/accel-pptp/) to utilize this module,
      it contains plugin for pppd to use pptp in client-mode and modified
      pptpd (poptop) to build high-performance pptp NAS.
      
      There was many changes from initial submitted patch, most important are:
      1. using rcu instead of read-write locks
      2. using static bitmap instead of dynamically allocated
      3. using vmalloc for memory allocation instead of BITS_PER_LONG + __get_free_pages
      4. fixed many coding style issues
      Thanks to Eric Dumazet.
      Signed-off-by: NDmitry Kozlov <xeb@mail.ru>
      Signed-off-by: NEric Dumazet <eric.dumazet@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      00959ade
  5. 19 8月, 2010 1 次提交
  6. 05 8月, 2010 1 次提交
  7. 31 7月, 2010 1 次提交
  8. 26 7月, 2010 1 次提交
  9. 20 7月, 2010 1 次提交
  10. 14 7月, 2010 1 次提交
  11. 08 7月, 2010 1 次提交
  12. 29 6月, 2010 1 次提交
  13. 26 6月, 2010 1 次提交
  14. 24 6月, 2010 1 次提交
  15. 01 6月, 2010 1 次提交
  16. 18 5月, 2010 1 次提交
  17. 04 5月, 2010 1 次提交
    • D
      forcedeth: Kill NAPI config options. · 0a12761b
      David S. Miller 提交于
      All distributions enable it, therefore no significant body of users
      are even testing the driver with it disabled.  And making NAPI
      configurable is heavily discouraged anyways.
      
      I left the MSI-X interrupt enabling thing in an "#if 0" block
      so hopefully someone can debug that and it can get re-enabled.
      Probably it was just one of the NVIDIA chipset MSI erratas that
      we work handle these days in the PCI quirks (see drivers/pci/quirks.c
      and stuff like nvenet_msi_disable()).
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0a12761b
  18. 13 4月, 2010 1 次提交
  19. 08 4月, 2010 1 次提交
  20. 07 4月, 2010 2 次提交
  21. 04 4月, 2010 1 次提交
    • J
      l2tp: Split pppol2tp patch into separate l2tp and ppp parts · fd558d18
      James Chapman 提交于
      This patch splits the pppol2tp driver into separate L2TP and PPP parts
      to prepare for L2TPv3 support. In L2TPv3, protocols other than PPP can
      be carried, so this split creates a common L2TP core that will handle
      the common L2TP bits which protocol support modules such as PPP will
      use.
      
      Note that the existing pppol2tp module is split into l2tp_core and
      l2tp_ppp by this change.
      
      There are no feature changes here. Internally, however, there are
      significant changes, mostly to handle the separation of PPP-specific
      data from the L2TP session and to provide hooks in the core for
      modules like PPP to access.
      Signed-off-by: NJames Chapman <jchapman@katalix.com>
      Reviewed-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      fd558d18
  22. 02 4月, 2010 2 次提交
  23. 31 3月, 2010 1 次提交
  24. 23 3月, 2010 1 次提交
  25. 19 3月, 2010 1 次提交
  26. 10 3月, 2010 1 次提交
  27. 19 2月, 2010 1 次提交
  28. 18 2月, 2010 1 次提交
  29. 17 2月, 2010 1 次提交
  30. 16 2月, 2010 1 次提交
  31. 13 2月, 2010 1 次提交
  32. 11 2月, 2010 1 次提交
  33. 05 2月, 2010 1 次提交
  34. 04 2月, 2010 1 次提交
    • A
      net: macvtap driver · 20d29d7a
      Arnd Bergmann 提交于
      In order to use macvlan with qemu and other tools that require
      a tap file descriptor, the macvtap driver adds a small backend
      with a character device with the same interface as the tun
      driver, with a minimum set of features.
      
      Macvtap interfaces are created in the same way as macvlan
      interfaces using ip link, but the netif is just used as a
      handle for configuration and accounting, while the data
      goes through the chardev. Each macvtap interface has its
      own character device, simplifying permission management
      significantly over the generic tun/tap driver.
      
      Cc: Patrick McHardy <kaber@trash.net>
      Cc: Stephen Hemminger <shemminger@linux-foundation.org>
      Cc: David S. Miller" <davem@davemloft.net>
      Cc: "Michael S. Tsirkin" <mst@redhat.com>
      Cc: Herbert Xu <herbert@gondor.apana.org.au>
      Cc: Or Gerlitz <ogerlitz@voltaire.com>
      Cc: netdev@vger.kernel.org
      Cc: bridge@lists.linux-foundation.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      20d29d7a
  35. 29 1月, 2010 1 次提交
  36. 16 1月, 2010 1 次提交
  37. 11 1月, 2010 1 次提交
  38. 22 12月, 2009 1 次提交