--- src/sys/vfs/ufs/ufsmount.h 2006/05/06 02:43:14 1.8 +++ src/sys/vfs/ufs/ufsmount.h 2006/05/26 17:07:48 1.9 @@ -95,19 +95,8 @@ struct ufsmount { int64_t um_savedmaxfilesize; /* XXX - limit maxfilesize */ struct malloc_type *um_malloctype; /* The inodes malloctype */ int um_i_effnlink_valid; /* i_effnlink valid? */ - int (*um_blkatoff) (struct vnode *, off_t, char **, struct buf **); - int (*um_truncate) (struct vnode *, off_t, int, struct ucred *); - int (*um_update) (struct vnode *, int); - int (*um_valloc) (struct vnode *, int, struct ucred *, struct vnode **); - int (*um_vfree) (struct vnode *, ino_t, int); }; -#define UFS_BLKATOFF(aa, bb, cc, dd) VFSTOUFS((aa)->v_mount)->um_blkatoff(aa, bb, cc, dd) -#define UFS_TRUNCATE(aa, bb, cc, dd) VFSTOUFS((aa)->v_mount)->um_truncate(aa, bb, cc, dd) -#define UFS_UPDATE(aa, bb) VFSTOUFS((aa)->v_mount)->um_update(aa, bb) -#define UFS_VALLOC(aa, bb, cc, dd) VFSTOUFS((aa)->v_mount)->um_valloc(aa, bb, cc, dd) -#define UFS_VFREE(aa, bb, cc) VFSTOUFS((aa)->v_mount)->um_vfree(aa, bb, cc) - /* * Flags describing the state of quotas. */