Re: BKL still required for what functions?

From: Alan Cox
Date: Tue Oct 07 2008 - 14:14:34 EST


> - lock_kernel();
> +
> mutex_lock(&phone_lock);
> p = phone_device[minor];
> if (p)
> new_fops = fops_get(p->f_op);
> if (!new_fops) {
> mutex_unlock(&phone_lock);
> + lock_kernel();
> request_module("char-major-%d-%d", PHONE_MAJOR, minor);
> + unlock_kernel();
> mutex_lock(&phone_lock);
> p = phone_device[minor];
> if (p == NULL || (new_fops = fops_get(p->f_op)) == NULL)
> @@ -81,7 +83,6 @@ static int phone_open(struct inode *inode, struct
> file *file)
> fops_put(old_fops);
> end:
> mutex_unlock(&phone_lock);
> - unlock_kernel();
> return err;
> }

Looks like the BKL can go entirely there providing phone_device[] is
always rechecked back in the phone mutex, request_module is happy nowdays
without the BKL
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/