- 19 Sep, 2002 19 commits
-
-
Jeff Garzik authored
to take 'struct net_device *' not 'long' as their first argument. This makes eepro100 compatible with the standard MII ethtool API, preparing it for that support. No functional changes should occur with this patch, if anything changes at all it is a bug. (and testing shows no changes...)
-
Jeff Garzik authored
(kill more e100 compiler warnings)
-
Jes Sorensen authored
* PCI write posting fixes, remove pa-specific code * support 2.5.x kernels (synchronize_irq, cli/sti cleanups)
-
David S. Miller authored
-
Jeff Garzik authored
(suggested by Donald Becker)
-
Jeff Garzik authored
into mandrakesoft.com:/home/jgarzik/repo/net-drivers-2.5
-
Jeff Garzik authored
* default to PIO (fixes bugs in some chips), but add CONFIG_xxx option for MMIO * proper support for variable MTU sizes * add missing unregister_netdev in an error path (with a kudos to Jason Lunz for merging most of this)
-
Jeff Garzik authored
-
Jeff Garzik authored
* support bitmapped printk message levels * don't hand-code ethtool media support, use standard API/lib
-
Jeff Garzik authored
- Remove mii_preamble_required module parameter (Donald Becker) - Add per-interface mii_preamble_required (setting is autodetected) (Donald Becker) - Remove unnecessary cast from void pointer - Re-align comments in private struct
-
Jeff Garzik authored
- Remove unused/constant members from struct pci_id_info (which then allows removal of 'drv_flags' from private struct) - If no phy is found, fail to load that board - Always start phy id scan at id 1 to avoid problems (Donald Becker) - Autodetect where mii_preable_required is needed, default to not needed. (Donald Becker)
-
Ingo Molnar authored
These are the debated tty_io.c changes to use the session group lists to maintain controlling tty information.
-
Ingo Molnar authored
This is the latest version of the generic pidhash patch. The biggest change is the removal of separately allocated pid structures: they are now part of the task structure and the first task that uses a PID will provide the pid structure. Task refcounting is used to avoid the freeing of the task structure before every member of a process group or session has exited. This approach has a number of advantages besides the performance gains. Besides simplifying the whole hashing code significantly, attach_pid() is now fundamentally atomic and can be called during create_process() without worrying about task-list side-effects. It does not have to re-search the pidhash to find out about raced PID-adding either, and attach_pid() cannot fail due to OOM. detach_pid() can do a simple put_task_struct() instead of the kmem_cache_free(). The only minimal downside is the potential pending task structures after session leaders or group leaders have exited - but the number of orphan sessions and process groups is usually very low - and even if it's higher, this can be regarded as a slow execution of the final deallocation of the session leader, not some additional burden.
-
Linus Torvalds authored
lists by default. The batching avoids some debug tests.
-
http://gkernel.bkbits.net/net-drivers-2.5Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
http://linux-isdn.bkbits.net/linux-2.5.makeLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Kai Germaschewski authored
For some inexplicable reason, I broke the dependency on a new build number some time ago - it worked fine before, and now it does again. (Whenever vmlinux is relinked, the build number is incremented, and now it ends in the version string again, as it should) Noted by Anton Blanchard.
-
Kai Germaschewski authored
-
Jens Axboe authored
ide_toggle_bounce() was called prior to init'ing the block queue, which then reset the bounce_pfn back to BLK_BOUNCE_HIGH. Make ide_toggle_bounce() an ide-lib helper, and call it when setting up the queue as well.
-
- 18 Sep, 2002 21 commits
-
-
Jeff Garzik authored
into mandrakesoft.com:/home/jgarzik/repo/net-drivers-2.5
-
Andrew Morton authored
by making 'smc_init' static.
-
Szilárd Pásztor authored
Also, some cleanups.
-
Tom Rini authored
s/insl_unswapped/insl_ns/ inside #ifdef __powerpc__
-
Alan Cox authored
* add EISA 10/100 card id * properly align rx skbs
-
Alan Cox authored
-
Krzysztof Halasa authored
device and protocol attach/detach support. Overall, this is in preparation for update of HDLC API
-
Jeff Garzik authored
linux-wlan-ng sources and online sources
-
kafai0928@yahoo.com authored
MOD_{INC,DEC}_USE_COUNT, eliminating a small race
-
Jeff Garzik authored
(contributed by matthias@waechter.wiz.at)
-
Roger Luethi authored
compile-enabled nor compileable in ages.
-
Christoph Hellwig authored
(originally by Arjan, merged and re-merged by hch)
-
Russell King authored
it uses the following test to determine whether the timeout has expired: if (jiffies - dma_start > PCNET_RDC_TIMEOUT) { Unfortunately, PCNET_RDC_TIMEOUT is defined to be "0x02", so the length of the timeout is only two jiffy ticks, rather than being the expected 20ms. This patch fixes this. Also, the above (and one other place) should be converted to time_after().
-
Jeff Garzik authored
-
Jean Tourrilhes authored
rid of save_flags();cli();. I was pleasantly surprised that the driver was working fine on my SMP system with those obvious fixes. Tested on 2.5.32 SMP.
-
Jean Tourrilhes authored
- Set dev->trans_start to avoid filling the logs (and generating useless abort commands) - Avoid deadlocks in mmc_out()/mmc_in()
-
Jean Tourrilhes authored
- Set dev->trans_start to avoid filling the logs - Handle better spurious/bogus interrupt - Avoid deadlocks in mmc_out()/mmc_in()
-
Jean Tourrilhes authored
for the HostAP driver, with few cleanups and new unused definitions. The most contention change is that this version now requires user space to provide the buffer size when making a GET (to check buffer overrun), which will break very old version of Wireless Tools (v22 and earlier).
-
Jeff Garzik authored
that are used in natsemi net driver
-
Jeff Garzik authored
into mandrakesoft.com:/home/jgarzik/repo/net-drivers-2.5
-
Jens Axboe authored
Andrew found out that bounce end_io handling did not work for him, so I fixed the bug (not consistent checking of bi_size). I cleaned it up and moved the bi_size checking out of bounce_end_io() (the main worker) and into the individual bi_end_io() handlers instead. Please apply to make highmem bouncing work again.
-