patch-2.3.14 linux/fs/minix/truncate.c
Next file: linux/fs/msdos/namei.c
Previous file: linux/fs/exec.c
Back to the patch index
Back to the overall index
- Lines: 52
- Date:
Wed Aug 18 10:15:19 1999
- Orig file:
v2.3.13/linux/fs/minix/truncate.c
- Orig date:
Mon Aug 9 14:59:23 1999
diff -u --recursive --new-file v2.3.13/linux/fs/minix/truncate.c linux/fs/minix/truncate.c
@@ -62,10 +62,7 @@
}
*p = 0;
mark_inode_dirty(inode);
- if (bh) {
- mark_buffer_clean(bh);
- brelse(bh);
- }
+ bforget(bh);
minix_free_block(inode,tmp);
}
return retry;
@@ -113,7 +110,7 @@
}
*ind = 0;
mark_buffer_dirty(ind_bh, 1);
- brelse(bh);
+ bforget(bh);
minix_free_block(inode,tmp);
}
ind = (unsigned short *) ind_bh->b_data;
@@ -226,10 +223,7 @@
}
*p = 0;
mark_inode_dirty(inode);
- if (bh) {
- mark_buffer_clean(bh);
- brelse(bh);
- }
+ bforget(bh);
minix_free_block(inode,tmp);
}
return retry;
@@ -277,7 +271,7 @@
}
*ind = 0;
mark_buffer_dirty(ind_bh, 1);
- brelse(bh);
+ bforget(bh);
minix_free_block(inode,tmp);
}
ind = (unsigned long *) ind_bh->b_data;
@@ -406,7 +400,8 @@
(unsigned long *) inode->u.minix_i.u.i2_data + 9);
if (!retry)
break;
- current->counter = 0;
+ run_task_queue(&tq_disk);
+ current->policy |= SCHED_YIELD;
schedule();
}
inode->i_mtime = inode->i_ctime = CURRENT_TIME;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)