- 22 Jul, 2003 3 commits
-
-
Steven Whitehouse authored
-
Stephen Hemminger authored
-
Stephen Hemminger authored
-
- 21 Jul, 2003 3 commits
-
-
Robert Olsson authored
-
Randy Dunlap authored
Patch by Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
-
Kambo Lohan authored
-
- 20 Jul, 2003 9 commits
-
-
Christoph Hellwig authored
-
Chas Williams authored
-
Chas Williams authored
-
Chas Williams authored
-
Bart De Schuymer authored
-
Sam Ravnborg authored
-
Herbert Xu authored
-
Wensong Zhang authored
-
bk://kernel.bkbits.net/jmorris/net-2.5David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
- 21 Jul, 2003 1 commit
-
-
Sean Neakums authored
-
- 20 Jul, 2003 1 commit
-
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
- 19 Jul, 2003 13 commits
-
-
Stephen Hemminger authored
Wan router register/unregister does not need MOD_INC/MOD_DEC because it can not be unloaded as long as its symbols are in use by the calling module.
-
Stephen Hemminger authored
Without an exit routine lapb can't be unloaded.
-
Stephen Hemminger authored
The MOD_INC and MOD_DEC in lapb are no longer necessary in 2.6 since the module subsystem will not allow lapb to be unloaded as long as a module that is referencing the symbols (lapb_register/lapb_unregister) is loaded.
-
Randy Dunlap authored
author: Daniele Bellucci <bellucda@tiscali.it> Fix a memory leak and checks a copy_from_user in wan/comx driver.
-
Randy Dunlap authored
author: Daniele Bellucci <bellucda@tiscali.it>
-
Randy Dunlap authored
author: Daniele Bellucci <bellucda@tiscali.it> Fix an unchecked copy_from_user in ieee1394/amdtp.
-
Randy Dunlap authored
author: Daniele Bellucci <bellucda@tiscali.it> Fix several unchecked copy_to_user()s in sbus/char/envctrl
-
Randy Dunlap authored
author: Daniele Bellucci <bellucda@tiscali.it> Fix a series of unchecked copy/put_user()s in umsdos ioctl.
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> Fix an unchecked copy_to_user in ray_cs ioctl.
-
Randy Dunlap authored
From: Matthew Wilcox <willy@debian.org> and Daniele Bellucci <bellucda@tiscali.it> Fix an unchecked copy_to_user() in net/irda/vlsi_ir.c.
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> Add a status check to copy_to_user() in a media/video driver.
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> Add a check to misc_register() in the wdt977 driver.
-
Randy Dunlap authored
From: Daniele Bellucci <bellucda@tiscali.it> This is an audit (copy_*_user), cleanup, and coding-style fix for this driver.
-
- 18 Jul, 2003 10 commits
-
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
http://linux-lksctp.bkbits.net/lksctp-2.5David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/sctp-2.5
-
Alexey Kuznetsov authored
- Recognition of reserved anycasts is removed from ipv6_addr_type() Flag IPV6_ADDR_ANYCAST is removed as well. - Some meaningless noop code checking for anycast which are not going to happen is removed from ndisc.c - ipv6_unicast_destination() replaces suboptimal ipv6_chk_acast_addr() in data paths
-
David S. Miller authored
-
David S. Miller authored
into nuts.ninka.net:/home/davem/src/BK/net-2.5
-
Christoph Hellwig authored
As noted by Gergely Nagy: "devfs_mk_cdev() first checks the mode passed to it, and if it thinks it is not a char device, it prints a warning and aborts. Now, this printing involves the local variable `buf' (char buf[64]), which is not initialised at that point." The same problem also affects devfs_mk_bdev. Fixed thus.
-
Rusty Russell authored
davidm@hpl.hp.com writes: "I'm working on updating the ia64 tree with local_t etc. One thing that would really help me: could you make asm-generic/percpu_modcopy() a macro? The routine depends on cpu_possible(), but I can't including smp.h in percpu.h since that would lead to recusive header-file dependencies (and in my opinion, percpu.h should be more "primitive" than smp.h, so that it can be included virtually everywhere)."
-
Rusty Russell authored
A few places pre-declare "int module_init(void);" and "void module_cleanup(void);". Other than being obsolete, this is unneccessary (it's in init.h anyway). There are still about 100 places which still use the obsolete-since-2.2 "a function named module_init() magically gets called": this change frees us up implement that via a macro.
-
Rusty Russell authored
Author: Neil Brown Define module_put_and_exit() and use it for nfsd/lockd Both nfsd and lockd have threads which expect to hold a reference to the module while the thread is running. In order for the thread to be able to put_module() the module before exiting, the put_module code must be call from outside the module. This patch provides module_put_and_exit in non-modular code which a thread-in-a-module can call. It also gets nfsd and lockd to use it as appropriate. Note that in lockd, we can __get_module in the thread itself as the creator of the thread is waiting for the thread to startup. In nfsd and for the 'reclaimer' threaded started by locked, we __get_module first and put_module if the thread failed to start.
-
Rusty Russell authored
Somehow, the code which taints the kernel when rmmod -f is used got lost. Restore it.
-