Deleted Added
full compact
36c36
< * $FreeBSD: head/sys/fs/ext2fs/ext2_alloc.c 252103 2013-06-23 02:44:42Z pfg $
---
> * $FreeBSD: head/sys/fs/ext2fs/ext2_alloc.c 254283 2013-08-13 15:40:43Z pfg $
83,84c83,84
< ext2_alloc(struct inode *ip, int32_t lbn, int32_t bpref, int size,
< struct ucred *cred, int32_t *bnp)
---
> ext2_alloc(struct inode *ip, daddr_t lbn, e4fs_daddr_t bpref, int size,
> struct ucred *cred, e4fs_daddr_t *bnp)
169c169,170
< int32_t soff, newblk, blkno;
---
> int soff;
> e2fs_daddr_t newblk, blkno;
253c254
< if ((newblk = (int32_t)ext2_hashalloc(ip, dtog(fs, pref), pref,
---
> if ((newblk = (e2fs_daddr_t)ext2_hashalloc(ip, dtog(fs, pref), pref,
553,555c554,556
< int32_t
< ext2_blkpref(struct inode *ip, e2fs_lbn_t lbn, int indx, int32_t *bap,
< int32_t blocknr)
---
> e4fs_daddr_t
> ext2_blkpref(struct inode *ip, e2fs_lbn_t lbn, int indx, e2fs_daddr_t *bap,
> e2fs_daddr_t blocknr)
578c579
< (int32_t)(ip->i_block_group *
---
> (e2fs_daddr_t)(ip->i_block_group *
958c959
< ext2_blkfree(struct inode *ip, int32_t bno, long size)
---
> ext2_blkfree(struct inode *ip, e4fs_daddr_t bno, long size)