* [PATCH] ide-tape: remove the BKL
@ 2009-10-11 10:25 Borislav Petkov
2009-10-29 10:10 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Borislav Petkov @ 2009-10-11 10:25 UTC (permalink / raw)
To: David Miller; +Cc: linux-ide
Hi,
one less BKL user. Tested on a Seagate STT8000A, ATAPI TAPE drive.
---
>From 16e58d4d74a5f3a02204e2fe861d2cb3b3ee65fb Mon Sep 17 00:00:00 2001
From: Borislav Petkov <petkovbb@gmail.com>
Date: Mon, 5 Oct 2009 07:57:26 +0200
Subject: [PATCH] ide-tape: remove the BKL
Replace the BKL calls in the chrdev_{open,release} interfaces with a
simple sleeping mutex.
Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
---
drivers/ide/ide-tape.c | 21 +++++++++++++++------
1 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index 58fc920..6a0e625 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -221,6 +221,8 @@ typedef struct ide_tape_obj {
static DEFINE_MUTEX(idetape_ref_mutex);
+static DEFINE_MUTEX(idetape_chrdev_mutex);
+
static struct class *idetape_sysfs_class;
static void ide_tape_release(struct device *);
@@ -1457,10 +1459,11 @@ static int idetape_chrdev_open(struct inode *inode, struct file *filp)
if (i >= MAX_HWIFS * MAX_DRIVES)
return -ENXIO;
- lock_kernel();
+ mutex_lock(&idetape_chrdev_mutex);
+
tape = ide_tape_get(NULL, true, i);
if (!tape) {
- unlock_kernel();
+ mutex_unlock(&idetape_chrdev_mutex);
return -ENXIO;
}
@@ -1519,12 +1522,15 @@ static int idetape_chrdev_open(struct inode *inode, struct file *filp)
tape->door_locked = DOOR_LOCKED;
}
}
- unlock_kernel();
+ mutex_unlock(&idetape_chrdev_mutex);
+
return 0;
out_put_tape:
ide_tape_put(tape);
- unlock_kernel();
+
+ mutex_unlock(&idetape_chrdev_mutex);
+
return retval;
}
@@ -1551,7 +1557,8 @@ static int idetape_chrdev_release(struct inode *inode, struct file *filp)
ide_drive_t *drive = tape->drive;
unsigned int minor = iminor(inode);
- lock_kernel();
+ mutex_lock(&idetape_chrdev_mutex);
+
tape = drive->driver_data;
ide_debug_log(IDE_DBG_FUNC, "enter");
@@ -1575,7 +1582,9 @@ static int idetape_chrdev_release(struct inode *inode, struct file *filp)
}
clear_bit(ilog2(IDE_AFLAG_BUSY), &drive->atapi_flags);
ide_tape_put(tape);
- unlock_kernel();
+
+ mutex_unlock(&idetape_chrdev_mutex);
+
return 0;
}
--
1.6.3.3
--
Regards/Gruss,
Boris.
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ide-tape: remove the BKL
2009-10-11 10:25 [PATCH] ide-tape: remove the BKL Borislav Petkov
@ 2009-10-29 10:10 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2009-10-29 10:10 UTC (permalink / raw)
To: petkovbb; +Cc: linux-ide
From: Borislav Petkov <petkovbb@googlemail.com>
Date: Sun, 11 Oct 2009 12:25:19 +0200
> Replace the BKL calls in the chrdev_{open,release} interfaces with a
> simple sleeping mutex.
>
> Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
Applied to ide-next-2.6
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-29 10:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-11 10:25 [PATCH] ide-tape: remove the BKL Borislav Petkov
2009-10-29 10:10 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox