- 07 Mar, 2002 6 commits
-
-
http://gkernel.bkbits.net/net-drivers-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
http://gkernel.bkbits.net/hdlc-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
http://gkernel.bkbits.net/misc-2.5Linus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Linus Torvalds authored
-
Jaroslav Kysela authored
Hello, this recent ALSA patch includes: - added initial version of Config.help files - moved /proc/asound/sndstat to /proc/asound/oss/sndstat - moved /proc/asound/oss-devices to /proc/asound/oss/devices - snd-rtctimer updates (blocking of RTC driver change) - added ioctl conversion code for 32-bit applications running on 64-bit kernels - fixed dependencies in makefiles - wavefront driver cleanups (removed LOOPS_PER_SEC) - created Documentation/sound/alsa directory Jaroslav
-
Jeff Garzik authored
net drivers to drivers/net/tulip directory.
-
- 06 Mar, 2002 31 commits
-
-
Jeff Garzik authored
pci_set_mwi and pci_clear_mwi.
-
Jeff Garzik authored
more reliable in testing, and works for all cases as near as everyone can tell. Contributor: Arjan @ RedHat
-
Jeff Garzik authored
version 2.0.19, plus boolean cleanups. Bump version to 2.0.20-pre1. Contributors: Eli Kupermann @ Intel, Amir Noam @ Intel
-
Jeff Garzik authored
-
François Romieu authored
New file and directory include/linux/hdlc/ioctl.h, containing only WAN ioctl-related definitions. Update include/linux/if.h to reference these structures, providing us with complete type safety, including through ioctls.
-
François Romieu authored
Clean up WAN device protocol structure accesses to be type-safe, and not have to store the data length of structures.
-
François Romieu authored
Clean up WAN driver ioctl handling to be more independent of line settings structure changes.
-
François Romieu authored
s/SIOCDEVICE/SIOCWANDEV/
-
François Romieu authored
Add new HDLC interface, split up huge hdlc.c driver into multiple files based on hardware type. Convert WAN drivers to new interface.
-
Go Taniguchi authored
v1.27 improved CSR/PROM address detection, lots of cleanups, new pcnet32vlb module option, HP-PARISC support, added module parameter descriptions, initial ethtool support - Helge Deller <deller@gmx.de> v1.27a Sun Feb 10 2002 Go Taniguchi <go@turbolinux.co.jp> use alloc_etherdev and register_netdev fix pci probe not increment cards_found FD auto negotiate error workaround for xSeries250 clean up and using new mii module
-
Dave Jones authored
for the following net drivers: Several ham radio, several IrDA, lp4863, pcnet32, saa9730, wireless orinoco.
-
Paul Gortmaker authored
Idea is that if there is a valid name in MODULE_DESCRIPTION("...") then the name of the hardware/driver should not be also repeated in each MODULE_PARM_DESC("..."). MODULE_DESCRIPTION has been added to essentially all the 8390 drivers. All of the drivers changed are 8390 based, with the exception of eepro100 and 3c509.
-
Ken Brownfield authored
the second port on dual-port SK-9844 NICs.
-
Sebastian Dröge authored
-
Kent Yoder authored
08/15/01 - Added ioctl() functionality for debugging, changed netif_*_queue calls and other incorrectness - Kent Yoder <yoder1@us.ibm.com> 11/05/01 - Restructured the interrupt function, added delays, reduced the the number of TX descriptors to 1, which together can prevent the card from locking up the box - <yoder1@us.ibm.com>
-
Dave Jones authored
Remove duplicated ethtool ioctl handling code, fixing build.
-
Eric Sandeen authored
-
Jeff Garzik authored
with public namespace.
-
Jeff Garzik authored
-
Jeff Garzik authored
Add new PCI API functions pci_set_mwi(), pci_clear_mwi().
-
Jeff Garzik authored
(a few csets later on this is auto-merged away)
-
Linus Torvalds authored
Initialize preempt count outside the spinlocks that can themselves impact it on SMP.
-
Ion Badulescu authored
* Sparc64 support and fixes. * Better stats and error handling.
-
Jeff Garzik authored
Contributor forgotten :(
-
Jeff Garzik authored
into mandrakesoft.com:/spare/repo/net-drivers-2.5
-
Jeff Garzik authored
via82cxxx_audio driver.
-
Martin Dalecki authored
This is actually an attempt to remove some stall code from this driver. However if some *real* users complain (Not just the usuall: "Hey - if someone!" but the "Hey I'm using this!") I'm all open to reenable it. Since I prepared this patch yerstoday it doesn't contain the ide_module.h fixup. This will follow later. - Don't use the convoluted byte type in ide-pci.c. Just use the proper u8instead. - Move ide_get_or_set_dma_base to the only place where it's used and reorganize the code there by killing the unnecessary CONFIG_BLK_DEV_IDEDMA_FORCED configuration option. - Remove unfunctional CONFIG_PKT_TASK_IOCTL code. - Kill unused ALTSTAT_SCREW_UP code. - Tons of dead code removed from ide-taskfile.c (#if 0 #endif and friends) - Remove unused IDE_DEBUG macro as well as lots of other name space pollution from ide.h. - Start using the ide_lock spin-lock for protecting access to data structures instead of the excessive interrupt disabling games. - Shorten the proc ouput of the piix initialization module. - Remove special /proc tape "name" output from ide-tape.c. This was redundant data which should only show up on syslog anyway. - Kill the REALLY_FAST_IO undef from the ide.h. This was a mistake present since far too many years in this driver. The proper way to deal with broken systems is to define REALLY_SLOW_IO in system dependent headers or particular driver files. We can always reintroduce it easy if real users will complain, since OUT_BYTE() and similar can be used as hooks. But I don't expect anybody reporting about this. Even on the most broken IDE chip in the world (cmd640 at VLB) undefining this *always* worked for me. Nearly all the code pieces in the ide driver code *reverted* it's effects explicitly anyway. - Remove the obsolete CONFIG_BLK_DEV_4DRIVES support. This was supposed to support 4 drivers attached at one channel on some older chipsets, in esp. Tekram 690CD, in the last century. They where all supposed to work at a register set starting at the base address 0x1f0. Before complaining that this is removing functionality, please note that this must have been broken for already quite a long time, since the ide driver didn't contain the special device selection methods implicated by this any longer. It didn't scan this port too if PCI host chip support was enabled (as it is in all those distributions around there). On the other hand this is the most prominent case of incoherent use of the mate member in the struct hwif_s. And please think about how big the probability is, that there are systems out there, where there are actually 4 drivers on such a channel? - Streamline module initialization code by removing one shoot functions. - Make the WAIT_READY value used in case of CONFIG_APM or CONFIG_APM_MODULE the default, since this is what really reflects the behavior of modern drives. It won't hurt any other case and finally removing it is reducing the necessary coverage for overall driver code testing/analysis. - Move the IDE_LARGE_SEEK macro to the only place where it's actually used. Replace the IDE_MIN() and IDE_MAX() drivers with the obvious. Remove unused SPLIT_WORD and MAKE WORD from the local header. - Remove CMD640_DUMP_REGS from global scope, since there is no development done on this any longer. Finally, the way the host chip initialization routines are called changed in the time between allows this to remain fully local to the host chip driver in question. - Some spell checking of comments in the code. (Yeep I have extended my Vim to do this the "Word" way with nice undercurl lines... mozilla remains to be fixed...)
-
bk://linuxvm.bkbits.net/linux-2.5-vmtidbitsLinus Torvalds authored
into penguin.transmeta.com:/home/penguin/torvalds/repositories/kernel/linux
-
Alexander Viro authored
The fix for rename broke "link()". Fixed.
-
Linus Torvalds authored
so we need to make init_idle() aware of it so that it gets the preempt_count initialization right.
-
Linus Torvalds authored
-
- 05 Mar, 2002 3 commits
-
-
Alexander Viro authored
I've found what's going on there. Basically, we should not use __user_walk() with LOOKUP_PARENT - nd->last.name is set to the last component of the name and freeing that name before we are done is not a good idea.
-
Linus Torvalds authored
-
Robert Love authored
On SMP systems, preempt_count is erroneously set to 1 for idle task's on all CPU besides CPU0. This patch sets preempt_count properly. Robert Love
-