- 31 Aug, 2003 23 commits
-
-
Jeff Garzik authored
into redhat.com:/spare/repo/net-drivers-2.6
-
Jeff Garzik authored
* removed ancient-kernel compat code from sk_mca.h. I leave it to janitors to remove the now-useless SKMCA_xxx wrappers. * removed ancient-kernel compat code from sk_mca.c. * s/SKMCA_NETDEV/net_device/ * fixed static net_device initialization (this will go away when dynamic-alloc patches land)
-
Jeff Garzik authored
Anybody with hardware, that can test this driver?
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Yusuf Wilajati Purna authored
It seems that skb_padto security fixes in 2.4 and 2.5 trying to fix "CAN-2003-0001:Multiple ethernet NID device drivers do not pad frames with null bytes", do not put the skb_padto blocks in proper places in the 3c527, eth16i, fmv18x, seeq8005, yellowfin device drivers. In case a driver calls skb_padto(), it is possible that the space available in the original skb buffer tailroom is less than the space to pad. In this case, in short, the skb_padto() will create a new skb buffer, copy data from the original skb buffer to a new skb buffer, free the original buffer, and finally return the new buffer. If this happens to the aforementioned device drivers, they come to point to wrong data. And, for 3c527 and yellowfin, the drivers can unexpectedly double free the original skb buffers since they still point to the original skb buffers. The attached patch against 2.4.23pre1 fixes these issues.
-
Jeff Garzik authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
export_ide_init_queue() and export_probe_for_drive()
-
Bartlomiej Zolnierkiewicz authored
also fix comment in init_irq()
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
From Benjamin Herrenschmidt <benh@kernel.crashing.org>.
-
Bartlomiej Zolnierkiewicz authored
From Mikael Pettersson <mikpe@csd.uu.se>.
-
Bartlomiej Zolnierkiewicz authored
From Stephane Ouellette <ouellettes@videotron.ca>.
-
Bartlomiej Zolnierkiewicz authored
From Mikael Pettersson <mikpe@csd.uu.se>.
-
Bartlomiej Zolnierkiewicz authored
From Duncan Laurie <duncan@sun.com> This same patch made its way into 2.4 via the -ac tree but hasn't been put in 2.6 yet. It fixes some cable detect issues that stem from the fact that the cable detect pins are also used as address/data lines, so they need to first be configured as inputs to read valid cable detect state.
-
Jeff Garzik authored
The only thing that differentiated most of the entries in the board_info[] table and the board_t type was the vendor branding string for the board. This table is a pain to maintain, so we prefer to simply use "RTL8129" or "RTL8139".
-
Paul Mundt authored
a.k.a. Sega Broadband Adapter.
-
Ulrich Drepper authored
One more overlooked area where the proper process ID has to be used: SysV IPC "pid" values should use the thread group ID, not the per-thread one.
-
Jeff Garzik authored
Updated drivers; 3c574_cs, axnet_cs, pcnet_cs, xirc2ps_cs Thanks to Komuro for pointing this out.
-
- 30 Aug, 2003 9 commits
-
-
Jeff Garzik authored
* only set PCIDAC (64-bit PCI) bit in hardware if sizeof(dma_addr_t) > 32. Need a better test for whether 64-bit mode is _really_ needed. * cache chip command register in private struct. this allows the setting of rx-vlan, rx-csum, and other features to be persistent across the entire lifetime of the net device. * remove dead private struct members frag_skb, dropping_frag, and pci_using_dac.
-
Jeff Garzik authored
* make sure rx_frags is still accounted * query RxMissed register, and clear, upon each get-stats func call
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
* remove netif_queue_stopped test, netif_wake_queue already does that * move vlan stuff to top of file * remove __dev markers * update todo list at top of file * remove pci_set_dma_mask argument casts; ULL suffixes preferred.
-
Jeff Garzik authored
-
Jeff Garzik authored
-
Jeff Garzik authored
NAPI is turned on unconditionally for the RX path. The hardware supports interrupt mitigation, so that should be investigated too. RX fragment handling removed. We simply ensure that we alloc buffers large enough to hold incoming packets. Any stray RX frags that occur (shouldn't be any) will be dropped.
-
Jeff Garzik authored
(previously it was ifdef'd) Also, bump version to 1.0.
-
- 27 Aug, 2003 3 commits
-
-
François Romieu authored
Missing pieces for DMA-API on the Rx side: - SiS190_init_ring: the global area for the received data is mapped. This area is persistent during the whole driver's life. It only needs to be unmapped in SiS190_close() as no other exit/error path exists. - SiS190_rx_interrupt: no map/unmap for received data buffer. A single sync operation is done. Btw, there is no need to store the same value in RxDescArray[cur_rx].buf_addr over and over again. - Remove driver dependancy on CONFIG_BROKEN.
-
Matthew Wilcox authored
-
Matthew Wilcox authored
-
- 26 Aug, 2003 5 commits
-
-
Jeff Garzik authored
* call pci_set_dma_mask * remove erroneous call to unregister_netdev in _init_board()
-
Javier Achirica authored
-
Greg Kroah-Hartman authored
I realized that I've had this patch in my tree for a while, and forgot to send it to you and lkml. The patch below fixes bug number 923: http://bugme.osdl.org/show_bug.cgi?id=923 (basically keeps us from calling pci_find_device from interrupt context.) It's been tested by a few people with this device, and they say it works just fine for them. Please forward it on up the food chain.
-
Hirofumi Ogawa authored
-
Hirofumi Ogawa authored
-