Deleted Added
full compact
40c40
< * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_inode.c 96752 2002-05-16 19:43:28Z iedowse $
---
> * $FreeBSD: head/sys/gnu/fs/ext2fs/ext2_inode.c 96877 2002-05-18 19:12:38Z iedowse $
61c61
< static int ext2_indirtrunc(struct inode *, daddr_t, daddr_t, daddr_t, int,
---
> static int ext2_indirtrunc(struct inode *, int32_t, int32_t, int32_t, int,
127c127
< daddr_t lastblock;
---
> int32_t lastblock;
129,130c129,130
< daddr_t bn, lbn, lastiblock[NIADDR], indir_lbn[NIADDR];
< daddr_t oldblks[NDADDR + NIADDR], newblks[NDADDR + NIADDR];
---
> int32_t bn, lbn, lastiblock[NIADDR], indir_lbn[NIADDR];
> int32_t oldblks[NDADDR + NIADDR], newblks[NDADDR + NIADDR];
363,364c363,364
< daddr_t lbn, lastbn;
< daddr_t dbn;
---
> int32_t lbn, lastbn;
> int32_t dbn;
371c371
< daddr_t *bap, *copy, nb, nlbn, last;
---
> int32_t *bap, *copy, nb, nlbn, last;
414,415c414,415
< bap = (daddr_t *)bp->b_data;
< MALLOC(copy, daddr_t *, fs->s_blocksize, M_TEMP, M_WAITOK);
---
> bap = (int32_t *)bp->b_data;
> MALLOC(copy, int32_t *, fs->s_blocksize, M_TEMP, M_WAITOK);
418c418
< (u_int)(NINDIR(fs) - (last + 1)) * sizeof (daddr_t));
---
> (u_int)(NINDIR(fs) - (last + 1)) * sizeof (int32_t));
436c436
< fsbtodb(fs, nb), (daddr_t)-1, level - 1, &blkcount)) != 0)
---
> fsbtodb(fs, nb), (int32_t)-1, level - 1, &blkcount)) != 0)