patch-2.4.21 linux-2.4.21/drivers/mtd/mtdblock.c
Next file: linux-2.4.21/drivers/mtd/mtdblock_ro.c
Previous file: linux-2.4.21/drivers/mtd/maps/uclinux.c
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
2003-06-13 07:51:34.000000000 -0700
- Orig file:
linux-2.4.20/drivers/mtd/mtdblock.c
- Orig date:
2002-08-02 17:39:44.000000000 -0700
diff -urN linux-2.4.20/drivers/mtd/mtdblock.c linux-2.4.21/drivers/mtd/mtdblock.c
@@ -311,6 +311,7 @@
if (mtdblks[dev]) {
mtdblks[dev]->count++;
spin_unlock(&mtdblks_lock);
+ put_mtd_device(mtd);
return 0;
}
@@ -432,7 +433,7 @@
res = 0;
if (MINOR(req->rq_dev) >= MAX_MTD_DEVICES)
- panic(__FUNCTION__": minor out of bound");
+ panic("%s: minor out of bounds", __FUNCTION__);
if ((req->sector + req->current_nr_sectors) > (mtdblk->mtd->size >> 9))
goto end_req;
@@ -483,20 +484,14 @@
struct task_struct *tsk = current;
DECLARE_WAITQUEUE(wait, tsk);
- tsk->session = 1;
- tsk->pgrp = 1;
/* we might get involved when memory gets low, so use PF_MEMALLOC */
tsk->flags |= PF_MEMALLOC;
strcpy(tsk->comm, "mtdblockd");
- tsk->tty = NULL;
spin_lock_irq(&tsk->sigmask_lock);
sigfillset(&tsk->blocked);
recalc_sigpending(tsk);
spin_unlock_irq(&tsk->sigmask_lock);
- exit_mm(tsk);
- exit_files(tsk);
- exit_sighand(tsk);
- exit_fs(tsk);
+ daemonize();
while (!leaving) {
add_wait_queue(&thr_wq, &wait);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)