login
Header Space

 
 

[PATCH 1/4] ide-tape: remove tape->cache_stage

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <bzolnier@...>
Cc: <linux-kernel@...>, <linux-ide@...>, Borislav Petkov <petkovbb@...>
Date: Sunday, March 9, 2008 - 1:10 pm

Prior to allocating a new pipeline stage, the code checked for the existence of
a cached pipeline stage to use. Do away with and stick to normal pipeline
stages only.

Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
---
 drivers/ide/ide-tape.c |   28 ++++------------------------
 1 files changed, 4 insertions(+), 24 deletions(-)

diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c
index 792c76e..32ba6c8 100644
--- a/drivers/ide/ide-tape.c
+++ b/drivers/ide/ide-tape.c
@@ -365,8 +365,6 @@ typedef struct ide_tape_obj {
 	idetape_stage_t *next_stage;
 	/* New requests will be added to the pipeline here */
 	idetape_stage_t *last_stage;
-	/* Optional free stage which we can use */
-	idetape_stage_t *cache_stage;
 	int pages_per_stage;
 	/* Wasted space in each stage */
 	int excess_bh_size;
@@ -1684,21 +1682,6 @@ abort:
 	return NULL;
 }
 
-static idetape_stage_t *idetape_kmalloc_stage(idetape_tape_t *tape)
-{
-	idetape_stage_t *cache_stage = tape->cache_stage;
-
-	debug_log(DBG_PROCS, "Enter %s\n", __func__);
-
-	if (tape->nr_stages >= tape->max_stages)
-		return NULL;
-	if (cache_stage != NULL) {
-		tape->cache_stage = NULL;
-		return cache_stage;
-	}
-	return __idetape_kmalloc_stage(tape, 0, 0);
-}
-
 static int idetape_copy_stage_from_user(idetape_tape_t *tape,
 		idetape_stage_t *stage, const char __user *buf, int n)
 {
@@ -2231,7 +2214,7 @@ static int idetape_add_chrdev_write_request(ide_drive_t *drive, int blocks)
 	debug_log(DBG_CHRDEV, "Enter %s\n", __func__);
 
 	/* Attempt to allocate a new stage. Beware possible race conditions. */
-	while ((new_stage = idetape_kmalloc_stage(tape)) == NULL) {
+	while ((new_stage = __idetape_kmalloc_stage(tape, 0, 0)) == NULL) {
 		spin_lock_irqsave(&tape->lock, flags);
 		if (test_bit(IDETAPE_FLAG_PIPELINE_ACTIVE, &tape->flags)) {
 			idetape_wait_for_request(drive, tape->active_data_rq);
@@ -2448,13 +2431,13 @@ static int idetape_init_read(ide_drive_t *drive, int max_stages)
 	rq.current_nr_sectors = blocks;
 	if (!test_bit(IDETAPE_FLAG_PIPELINE_ERR, &tape->flags) &&
 	    tape->nr_stages < max_stages) {
-		new_stage = idetape_kmalloc_stage(tape);
+		new_stage = __idetape_kmalloc_stage(tape, 0, 0);
 		while (new_stage != NULL) {
 			new_stage->rq = rq;
 			idetape_add_stage_tail(drive, new_stage);
 			if (tape->nr_stages >= max_stages)
 				break;
-			new_stage = idetape_kmalloc_stage(tape);
+			new_stage = __idetape_kmalloc_stage(tape, 0, 0);
 		}
 	}
 	if (!test_bit(IDETAPE_FLAG_PIPELINE_ACTIVE, &tape->flags)) {
@@ -3245,10 +3228,7 @@ static int idetape_chrdev_release(struct inode *inode, struct file *filp)
 		else
 			idetape_wait_for_pipeline(drive);
 	}
-	if (tape->cache_stage != NULL) {
-		__idetape_kfree_stage(tape->cache_stage);
-		tape->cache_stage = NULL;
-	}
+
 	if (minor < 128 && test_bit(IDETAPE_FLAG_MEDIUM_PRESENT, &tape->flags))
 		(void) idetape_rewind_tape(drive);
 	if (tape->chrdev_dir == IDETAPE_DIR_NONE) {
-- 
1.5.4.1

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 0/4] ide-tape: remove pipeline functionality-v2, Borislav Petkov, (Sun Mar 9, 1:10 pm)
Re: [PATCH 0/4] ide-tape: remove pipeline functionality-v2, Bartlomiej Zolnierkiewicz..., (Mon Mar 10, 7:24 pm)
Re: [PATCH 4/4] ide-tape: remove pipeline-specific code from..., Bartlomiej Zolnierkiewicz..., (Mon Mar 10, 7:25 pm)
Re: [PATCH 4/4] ide-tape: remove pipeline-specific code from..., Bartlomiej Zolnierkiewicz..., (Wed Mar 12, 9:51 am)
[PATCH 1/4] ide-tape: remove tape->cache_stage, Borislav Petkov, (Sun Mar 9, 1:10 pm)
Re: [PATCH 1/4] ide-tape: remove tape-&gt;cache_stage, Bartlomiej Zolnierkiewicz..., (Mon Mar 10, 7:24 pm)
Re: [PATCH 1/4] ide-tape: remove tape-&gt;cache_stage, Borislav Petkov, (Tue Mar 11, 2:40 am)
Re: [PATCH 3/4] ide-tape remove pipeline speed/control calcu..., Bartlomiej Zolnierkiewicz..., (Mon Mar 10, 7:25 pm)
Re: [PATCH 2/4] ide-tape: remove pipeline-specific code from..., Bartlomiej Zolnierkiewicz..., (Mon Mar 10, 7:25 pm)
Re: [PATCH 2/4] ide-tape: remove pipeline-specific code from..., Bartlomiej Zolnierkiewicz..., (Wed Mar 12, 10:31 am)
Re: [PATCH 2/4] ide-tape: remove pipeline-specific code from..., Bartlomiej Zolnierkiewicz..., (Wed Mar 12, 9:51 am)
speck-geostationary