- 14 Aug, 2003 40 commits
-
-
Andrew Morton authored
- Ensure that arq->state is always set (ie. even if io context allocation failed). - Call as_antic_stop() unconditionally - which checks for the same condition. There are other callers which make the same check and should be changed too...
-
Randy Dunlap authored
From: Domen Puncer <domen@coderock.org>
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> On failure register_blkdev doesn't necessarly return -ENODEV .. it can return -ENOMEM too. This patch add a little better audit of register_blkdev.
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it>
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> Audit create_proc_read_entry in rtc_init and fix coding style too.
-
Randy Dunlap authored
From: Domen Puncer <domen@coderock.org> (2 statics added by rddunlap)
-
Randy Dunlap authored
From: Domen Puncer <domen@coderock.org> Did it the way it is in drivers/input/joystick/tmdc.c
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it>
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it>
-
Randy Dunlap authored
From: Leann Ogasawara <ogasawara@osdl.org>
-
Randy Dunlap authored
From: Leann Ogasawara <ogasawara@osdl.org>
-
Randy Dunlap authored
From: Eugene Teo <eugene.teo@eugeneteo.net> Converted code to use pci_name instead of accessing slot_name directly.
-
Randy Dunlap authored
From: Eugene Teo <eugene.teo@eugeneteo.net> Removed initialisation to zero on static variables.
-
Randy Dunlap authored
From: Eugene Teo <eugene.teo@eugeneteo.net> Removed initialisation to zero on static variables in sound/oss/ad1816.c.
-
Randy Dunlap authored
From: Domen Puncer <domen@coderock.org> Matthew Wilcox wrote: > > This routine looks to be bogus to begin with. i'd just remove the > save_flags, cli and restore_flags calls entirely.
-
Randy Dunlap authored
From: Leann Ogasawara <ogasawara@osdl.org> Uninitialize static variables initialized to 0 so they are pushed to the .bss instead of .data.
-
Randy Dunlap authored
From: Maximilian Attems <janitor@sternwelten.at>
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it>
-
Randy Dunlap authored
From: Leann Ogasawara <ogasawara@osdl.org>
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it>
-
Ingo Molnar authored
Patch from Julie DeWandel. This patch has solved the crashes observed during TPC-C runs on the 16-way box. (I'm confident it will fix the other reported cases as well.) The race is the setting of timer->base to NULL, by del_timer() or __run_timers(). If new_base == old_base in __mod_timer() then we do not re-check timer->base after getting the lock. (the only case where we do not have to re-check the base is in the !old_base case, but the else branch also includes the old_base==new_base case.) The __run_timers() case made the lock_timer() patch not work fully - we cannot use lock_timer() in __run_timers() due to lock ordering.
-
Linus Torvalds authored
-
bk://kernel.bkbits.net//home/mochel/linux-2.5-powerLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net//home/mochel/linux-2.5-coreLinus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
bk://kernel.bkbits.net/davem/sparc-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Andrew Morton authored
From: Stephen Smalley <sds@epoch.ncsc.mil> This patch adds a SELINUX entry to the MAINTAINERS file.
-
Andrew Morton authored
From: Stephen Smalley <sds@epoch.ncsc.mil> This patch reworks the SELinux module code that handles inodes initialized before the policy is initially loaded to also cover the case where a pseudo filesystem such as selinuxfs or nfsd directly populate themselves. The list of inode security structures is split into per-superblock lists associated with each superblock security structure, and the initialization is performed by superblock_doinit.
-
Andrew Morton authored
From: Shawn Starr <spstarr@sh0n.net> opl3 use-after-free fix
-
Andrew Morton authored
From: Michael Still <mikal@stillhq.com> This patch takes into account requests from various LKML members for the mandocs output to be more terse. Information about the copyright, and formatting of the man page is moved into a comment at the start of the groff output. Sample output can be found at: http://www.stillhq.com/linux/mandocs/2.6.0-test3-bk1/
-
Andrew Morton authored
From: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org> verify maximum number of bits before using set_bit
-
Andrew Morton authored
Touching a page via follow_page() counts as a reference so we should be either setting the referenced bit in the pte or running mark_page_accessed(). Altering the pte is tricky because we haven't implemented an atomic pte_mkyoung(). And mark_page_accessed() is better anyway because it has more aging state: it can move the page onto the active list.
-
Andrew Morton authored
If POKETEXT modifies the page it needs to tell the VM about it.
-
Andrew Morton authored
From: Stephen Rothwell <sfr@canb.auug.org.au> Fix the dnotify documentation and code example to reflect reality.
-
Andrew Morton authored
From: Rusty Lynch <rusty@linux.co.intel.com> While initializing the adm1021 device, the driver is performing a conversion from fixed point to Celcius on values that were declaired as Celcius. On my Dell Precision 220 this results in a shutdown after a couple of minutes running. The latch simply removes the conversion.
-
Andrew Morton authored
From: Matthew Wilcox <willy@debian.org> Introduce a new variable "arg_size" and set it appropriately in each arm of the CONFIG_STACK_GROWSUP. This patch fixes a bug for PA-RISC and makes the code cleaner for everyone.
-
Andrew Morton authored
From: Dave Olien <dmo@osdl.org> The dynamic queue allocation appears to have exposed a long-standing bug.
-
Andrew Morton authored
From: Todor Todorov <ttodorov@web.de> A missig line fs/nls/Makefile prevents codepage 1250 from compiling and installing whatever the .config value.
-
Andrew Morton authored
From: Yoshinori Sato <ysato@users.sourceforge.jp> It writes one too many zeroes when nulling out the destination.
-
Andrew Morton authored
From: Matthew Dobson <colpatch@us.ibm.com> 16 proc x440 boxen aren't booting mainline kernels right now for many valid configs. This patch makes sure NUMA codepaths aren't executed for SMP configs. It also adds some sane error messages to the code, and cleans up some #ifdefs.
-