- 21 Jul, 2003 14 commits
-
-
Bob Miller authored
The module load code adds a reference to the owner field before calling the modules init function so it isn't necessary for the init function to do a similar action.
-
Bob Miller authored
The module load code adds a reference to the owner field before calling the modules init function so it isn't necessary for the init function to do a similar action.
-
Bob Miller authored
The module load code adds a reference to the owner field before calling the modules init function so it isn't necessary for the init function to do a similar action.
-
Bob Miller authored
Module init methods are called with a reference already taken by the module code so the MOD_*_USE_COUNT can be deleted.
-
Bob Miller authored
Module init methods are called with a reference already taken by the module code so the MOD_*_USE_COUNT can be deleted.
-
Bob Miller authored
The module load code adds a reference to the owner field before calling the modules init function so it isn't necessary for the init function to do a similar action. Also fixed the racy check_region()/request_region() calls.
-
Kai Germaschewski authored
This patch exports the kstat per-cpu variable, needed for hisax, which uses kstat_irqs() during card probing to make sure that irqs actually work. This could possibly replaced by a private counter in the hisax ISRs, but that's really just unnecessary overhead, since the core kernel already does the work anyway.
-
Kai Germaschewski authored
Instead of faking a hisax-internal card, just register a card driven by a submodule directly, which fixes the current crashes when loading such a driver. This makes use of the just introduced do_register_isdn() and do_init() helpers.
-
Kai Germaschewski authored
Again, just introduce do_init() and move some code into it. It'll be needed in the next cset.
-
Kai Germaschewski authored
This cset just introduces a new function do_register_isdn() which takes care of what's necessary to register with the i4l link level.
-
Kai Germaschewski authored
In the unload path, we forgot to free the D-Channel state machines.
-
Kai Germaschewski authored
FsmNew() is exported, so it sure can't be __init (and since we now discard __init in modules, it in fact crashes).
-
Kai Germaschewski authored
Somehow, this one had been overlooked...
-
Kai Germaschewski authored
A loop over all drivers obviously should use ISDN_MAX_DRIVERS, not ISDN_MAX_CHANNELS.
-
- 19 Jul, 2003 10 commits
-
-
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 16 commits
-
-
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.
-
Rusty Russell authored
These are the local_t bits for sparc64. Other platforms such as PPC64 and Alpha (and in fact any "load locked/ store conditional" like platform other than IA64), probably want to do something similar.
-
Rusty Russell authored
Uses local_t for module reference counts.
-
Rusty Russell authored
Introduces local_t, a type which is like atomic_t, but the operations are only atomic from a single CPU's point of view (ie. atomic against interrupts and softirqs). Some architectures (eg. i386) can implement these very efficiently. There are special operations for the case of a local operation on a per-cpu variable (which is common), which some architectures can implement efficiently (eg. IA64 keeps all per-cpu variables mapped at the same address, so no address arithmetic is needed). The generic implementation given here simply uses atomics on 32-bit archs, three variables on others. x86 is already implemented specially.
-
Rusty Russell authored
Richard Henderson point out a while back that linker generated symbols should be declared as: "char _text[]" so that the compiler can't make assumptions about them sitting in small sections, etc. Centralize these defintions in asm/sections.h (where some already are on x86).
-
Rusty Russell authored
The current percpu macros do not allow __get_cpu_var(foo.val1) which makes building macros on top of them really difficult. The reason for this is the __per_cpu postfix appended to per-cpu variables, designed to catch direct uses. Prepend it instead.
-
Linus Torvalds authored
tests. From Dennis Vshivkov: "whenever I was trying to create a file using only national characters for its name, it was always created with an uppercased shortname (provided that the name was not too long for 8.3, of course). Everything was fine with latin filenames, though." The bug is that we check "buf[0]" as an unsigned character, but "buf" is just "char *", which (depending on architecture and compiler options) tends to be signed.
-
François Romieu authored
Adds kahlua, harmony and hal2 drivers to the build options.
-
François Romieu authored
Fix an assortment of unchecked copy_to_user().
-
François Romieu authored
Memory leak fix: hw_config is allocated before the call to sb_dsp_detect.
-
bk://linux-scsi.bkbits.net/scsi-for-linus-2.6Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
James Bottomley authored
-