diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-15 03:32:22 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-15 03:32:22 +0000 |
commit | f1da2c3860e301527d56a1ef0b56c649ee7c4b1b (patch) | |
tree | 562b5d2e8b9cb62eb983d78ff6bcf9789e08fcf6 /drivers/i2o | |
parent | 00f11569ac8ca73cbcdef8822de1583e79aee571 (diff) |
Merge with Linux 2.4.0-test5-pre1. This works again on Origin UP.
The IP22 cache bugs which are plaguing some machines are still unfixed.
Diffstat (limited to 'drivers/i2o')
-rw-r--r-- | drivers/i2o/i2o_config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/i2o/i2o_config.c b/drivers/i2o/i2o_config.c index 7a50f64e9..9a9cfec6e 100644 --- a/drivers/i2o/i2o_config.c +++ b/drivers/i2o/i2o_config.c @@ -35,6 +35,7 @@ #include <linux/miscdevice.h> #include <linux/mm.h> #include <linux/spinlock.h> +#include <linux/smp_lock.h> #include <asm/uaccess.h> #include <asm/io.h> @@ -848,6 +849,7 @@ static int cfg_release(struct inode *inode, struct file *file) struct i2o_cfg_info *p1, *p2; unsigned int flags; + lock_kernel(); p1 = p2 = NULL; spin_lock_irqsave(&i2o_config_lock, flags); @@ -870,6 +872,7 @@ static int cfg_release(struct inode *inode, struct file *file) p1 = p1->next; } spin_unlock_irqrestore(&i2o_config_lock, flags); + unlock_kernel(); return 0; } |