1. 14 9月, 2006 6 次提交
  2. 24 8月, 2006 1 次提交
  3. 20 8月, 2006 1 次提交
  4. 06 7月, 2006 7 次提交
  5. 03 7月, 2006 1 次提交
  6. 27 6月, 2006 1 次提交
    • J
      [netdrvr] Remove long-unused bits from Becker template drivers · 1f1bd5fc
      Jeff Garzik 提交于
      Symbols such as PCI_USES_IO, PCI_ADDR0, etc. originated from Donald
      Becker's net driver template, but have been long unused.  Remove.
      
      In a few drivers, this allows the further eliminate of the pci_flags (or
      just plain flags) member in the template driver probe structure.
      
      Most of this logic is simply open-coded in most drivers, since it never
      changes.
      
      Made a few other cleanups while I was in there, too:
      * constify, __devinitdata several PCI ID tables
      * replace table terminating entries such as "{0,}," and "{NULL},"
        with a more-clean "{ }".
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      1f1bd5fc
  7. 27 5月, 2006 1 次提交
  8. 30 3月, 2006 1 次提交
  9. 22 3月, 2006 3 次提交
  10. 04 3月, 2006 1 次提交
  11. 13 12月, 2005 1 次提交
    • O
      [PATCH] pcnet32: use MAC address from prom also on powerpc · 016cc850
      Olaf Hering 提交于
      The CSR contains garbage after a coldboot on RS/6000.
      One some systems (like my 44p 270) the MAC address is all FF,
      on others (like my B50) it is ff:ff:ff:fd:ff:6b.
      
      It can eventually be fixed by loading pcnet32, set the interface
      into the UP state, rmmod pcnet32 and load it again. But this worked
      only on the 270.
      
      Only netbooting after a cold start provides the correct MAC address
      via prom and CSR. This makes it very unreliable.
      I dont know why the MAC is stored in two different places. Remove
      the special case for powerpc, which was added in early 2.4 development.
      Signed-off-by: NOlaf Hering <olh@suse.de>
      
       drivers/net/pcnet32.c |    5 -----
       1 files changed, 5 deletions(-)
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      016cc850
  12. 06 11月, 2005 3 次提交
  13. 16 9月, 2005 2 次提交
  14. 14 9月, 2005 1 次提交
  15. 29 6月, 2005 1 次提交
    • D
      [NET]: Remove gratuitous use of skb->tail in network drivers. · 689be439
      David S. Miller 提交于
      Many drivers use skb->tail unnecessarily.
      
      In these situations, the code roughly looks like:
      
      	dev = dev_alloc_skb(...);
      
      	[optional] skb_reserve(skb, ...);
      
      	... skb->tail ...
      
      But even if the skb_reserve() happens, skb->data equals
      skb->tail.  So it doesn't make any sense to use anything
      other than skb->data in these cases.
      
      Another case was the s2io.c driver directly mucking with
      the skb->data and skb->tail pointers.  It really just wanted
      to do an skb_reserve(), so that's what the code was changed
      to do instead.
      
      Another reason I'm making this change as it allows some SKB
      cleanups I have planned simpler to merge.  In those cleanups,
      skb->head, skb->tail, and skb->end pointers are removed, and
      replaced with skb->head_room and skb->tail_room integers.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      Acked-by: NJeff Garzik <jgarzik@pobox.com>
      689be439
  16. 27 6月, 2005 1 次提交
  17. 16 5月, 2005 1 次提交
  18. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4