PERFORCE change 169627 for review
Aditya Sarawgi
truncs at FreeBSD.org
Tue Oct 20 20:53:47 UTC 2009
http://p4web.freebsd.org/chv.cgi?CH=169627
Change 169627 by truncs at aditya on 2009/10/20 20:53:30
- Remove unused variable "eoff"
- Don't explicitly typecast "pref" to long
Affected files ...
.. //depot/projects/soc2009/soc_ext2fs/src/sys/fs/ext2fs/ext2_alloc.c#15 edit
Differences ...
==== //depot/projects/soc2009/soc_ext2fs/src/sys/fs/ext2fs/ext2_alloc.c#15 (text+ko) ====
@@ -187,7 +187,7 @@
struct ext2mount *ump;
struct cluster_save *buflist;
struct indir start_ap[NIADDR + 1], end_ap[NIADDR + 1], *idp;
- int32_t start_lbn, end_lbn, soff, eoff, newblk, blkno =0;
+ int32_t start_lbn, end_lbn, soff, newblk, blkno =0;
int i, len, start_lvl, end_lvl, pref, ssize;
vp = ap->a_vp;
@@ -258,7 +258,7 @@
/*
* Search the block map looking for an allocation of the desired size.
*/
- if ((newblk = (int32_t)ext2_hashalloc(ip, dtog(fs, pref), (long)pref,
+ if ((newblk = (int32_t)ext2_hashalloc(ip, dtog(fs, pref), pref,
len, ext2_clusteralloc)) == 0){
EXT2_UNLOCK(ump);
goto fail;
More information about the p4-projects
mailing list