1. 19 2月, 2009 1 次提交
  2. 08 1月, 2009 1 次提交
  3. 12 12月, 2008 1 次提交
  4. 04 12月, 2008 3 次提交
  5. 03 12月, 2008 1 次提交
  6. 22 11月, 2008 1 次提交
    • R
      net/hp-plus: fix link errors · 38ae07e4
      Randy Dunlap 提交于
      Fix hp-plus driver link errors.
      Builds as loadable module and kernel image driver.
      All drivers that use 8390.o or 8390p.o that will build on
      i386 with MCA/PCI/EISA/ISA were built successfully both
      =m and =y.
      
      drivers/built-in.o: In function `hpp_open':
      hp-plus.c:(.text+0xac06c): undefined reference to `eip_interrupt'
      hp-plus.c:(.text+0xac0d7): undefined reference to `eip_open'
      drivers/built-in.o: In function `hpp_close':
      hp-plus.c:(.text+0xac1bb): undefined reference to `eip_close'
      drivers/built-in.o: In function `hpp_probe1':
      hp-plus.c:(.init.text+0xa98a): undefined reference to `NS8390p_init'
      drivers/built-in.o: In function `hp_plus_probe':
      (.init.text+0xa9fe): undefined reference to `__alloc_eip_netdev'
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      38ae07e4
  7. 06 11月, 2008 1 次提交
  8. 31 10月, 2008 1 次提交
  9. 21 10月, 2008 1 次提交
  10. 18 9月, 2008 4 次提交
  11. 03 9月, 2008 1 次提交
    • R
      hp-plus: fix link objects · 8dcc61ac
      Randy Dunlap 提交于
      Fix hp-plus Makefile object file:
      
      drivers/built-in.o: In function `hpp_open':
      hp-plus.c:(.text+0xaf445): undefined reference to `ei_interrupt'
      hp-plus.c:(.text+0xaf4ac): undefined reference to `ei_open'
      drivers/built-in.o: In function `hpp_close':
      hp-plus.c:(.text+0xaf59d): undefined reference to `ei_close'
      drivers/built-in.o: In function `hpp_probe1':
      hp-plus.c:(.init.text+0x7314): undefined reference to `ei_poll'
      drivers/built-in.o: In function `hp_plus_probe':
      (.init.text+0x7407): undefined reference to `__alloc_ei_netdev'
      make[1]: *** [.tmp_vmlinux1] Error 1
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      8dcc61ac
  12. 23 7月, 2008 1 次提交
  13. 11 7月, 2008 1 次提交
  14. 04 7月, 2008 1 次提交
  15. 24 6月, 2008 2 次提交
    • Y
      bnx2x: New link code · c18487ee
      Yaniv Rosner 提交于
      New Link code:
      Moving all the link related code (including the calculations, the
      initialization of the MAC and PHY and the external PHY's code) into
      a separated file. The changes from the code that used to be part of
      bnx2x.c (now called bnx2x_main.c) are:
      - Using separate structures for link inputs and link outputs to clearly 
        identify what was configured and what is the outcome
      - Adding code to read external PHY FW version and print it as part of 
        ethtool -i
      - Adding code to upgrade external PHY FW from ethtool -E with special 
        magic number - Changing the link down indication to ERR level
      - Adding a lock on all PHY access to prevent an interrupt and 
        setting changes to overlap
      - Adding support for emulation and FPGA (small chunk of code that really 
        helps in the lab) - Adding support for 1G on BCM8706 PHY
      - Adding clear debug print incase of fan failure (the PHY type is now 
        "failure")
      Signed-off-by: NYaniv Rosner <yanivr@broadcom.com>
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c18487ee
    • E
      bnx2x: Rename bnx2x.c to bnx2x_main.c · 23bd462b
      Eilon Greenstein 提交于
      This patch is the rename of bnx2x.c to bnx2x_main.c.
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      23bd462b
  16. 18 6月, 2008 1 次提交
  17. 12 6月, 2008 2 次提交
  18. 13 5月, 2008 1 次提交
  19. 29 4月, 2008 1 次提交
  20. 26 3月, 2008 1 次提交
  21. 17 3月, 2008 2 次提交
  22. 06 3月, 2008 1 次提交
  23. 11 2月, 2008 1 次提交
  24. 29 1月, 2008 6 次提交
  25. 29 10月, 2007 1 次提交
  26. 23 10月, 2007 2 次提交
    • R
      Remove old lguest bus and drivers. · 0ca49ca9
      Rusty Russell 提交于
      This gets rid of the lguest bus, drivers and DMA mechanism, to make
      way for a generic virtio mechanism.
      Signed-off-by: NRusty Russell <rusty@rustcorp.com.au>
      0ca49ca9
    • R
      Net driver using virtio · 296f96fc
      Rusty Russell 提交于
      The network driver uses two virtqueues: one for input packets and one
      for output packets.  This has nice locking properties (ie. we don't do
      any for recv vs send).
      
      TODO:
      	1) Big packets.
      	2) Multi-client devices (maybe separate driver?).
      	3) Resolve freeing of old xmit skbs (Christian Borntraeger)
      Signed-off-by: NRusty Russell <rusty@rustcorp.com.au>
      Cc: Christian Borntraeger <borntraeger@de.ibm.com>
      Cc: Herbert Xu <herbert@gondor.apana.org.au>
      Cc: netdev@vger.kernel.org
      296f96fc