diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-12-07 11:52:22 (GMT) |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2009-12-07 11:51:39 (GMT) |
commit | 3c492d2033f4c67e967e85ff46b8ebac0c5c4036 (patch) | |
tree | 274d0fdcc729b75cbe66dd54cc3bfe1b4e1d55c0 /drivers/s390 | |
parent | b8ccc51f6fc6cde3644b4a2159fb57fe6c38d465 (diff) | |
download | linux-3c492d2033f4c67e967e85ff46b8ebac0c5c4036.tar.xz |
[S390] vmur: remove BKL
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/char/vmur.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/s390/char/vmur.c b/drivers/s390/char/vmur.c index 77571b6..cc56fc7 100644 --- a/drivers/s390/char/vmur.c +++ b/drivers/s390/char/vmur.c @@ -695,7 +695,6 @@ static int ur_open(struct inode *inode, struct file *file) if (accmode == O_RDWR) return -EACCES; - lock_kernel(); /* * We treat the minor number as the devno of the ur device * to find in the driver tree. @@ -749,7 +748,6 @@ static int ur_open(struct inode *inode, struct file *file) goto fail_urfile_free; urf->file_reclen = rc; file->private_data = urf; - unlock_kernel(); return 0; fail_urfile_free: @@ -761,7 +759,6 @@ fail_unlock: fail_put: urdev_put(urd); out: - unlock_kernel(); return rc; } |