diff options
author | njl <njl@FreeBSD.org> | 2003-03-03 19:15:40 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-03-03 19:15:40 +0000 |
commit | 5a225ad93319945ddf1088461e0b574dd6daf1f5 (patch) | |
tree | 7305b3cb7830a69706d4f895936e5aaecc614cbe /sys/gnu/ext2fs | |
parent | 7e3263308badc4fb7923e001ca3b61ca0cfaa7c0 (diff) | |
download | FreeBSD-src-5a225ad93319945ddf1088461e0b574dd6daf1f5.zip FreeBSD-src-5a225ad93319945ddf1088461e0b574dd6daf1f5.tar.gz |
Finish cleanup of vprint() which was begun with changing v_tag to a string.
Remove extraneous uses of vop_null, instead defering to the default op.
Rename vnode type "vfs" to the more descriptive "syncer".
Fix formatting for various filesystems that use vop_print.
Diffstat (limited to 'sys/gnu/ext2fs')
-rw-r--r-- | sys/gnu/ext2fs/ext2_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/ext2fs/ext2_vnops.c b/sys/gnu/ext2fs/ext2_vnops.c index e030b7c..7f76f7c 100644 --- a/sys/gnu/ext2fs/ext2_vnops.c +++ b/sys/gnu/ext2fs/ext2_vnops.c @@ -1498,7 +1498,7 @@ ext2_print(ap) struct vnode *vp = ap->a_vp; struct inode *ip = VTOI(vp); - printf("ino %lu, on dev %s (%d, %d)", (u_long)ip->i_number, + printf("\tino %lu, on dev %s (%d, %d)", (u_long)ip->i_number, devtoname(ip->i_dev), major(ip->i_dev), minor(ip->i_dev)); if (vp->v_type == VFIFO) fifo_printinfo(vp); |