Deleted Added
full compact
msdosfs_vfsops.c (113979) msdosfs_vfsops.c (116271)
1/* $FreeBSD: head/sys/fs/msdosfs/msdosfs_vfsops.c 113979 2003-04-24 18:19:19Z jhb $ */
1/* $FreeBSD: head/sys/fs/msdosfs/msdosfs_vfsops.c 116271 2003-06-12 20:48:38Z phk $ */
2/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 817 unchanged lines hidden (view full) ---

827 defhp->defid_len = sizeof(struct defid);
828 defhp->defid_dirclust = dep->de_dirclust;
829 defhp->defid_dirofs = dep->de_diroffset;
830 /* defhp->defid_gen = dep->de_gen; */
831 return (0);
832}
833
834static struct vfsops msdosfs_vfsops = {
2/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
3
4/*-
5 * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
6 * Copyright (C) 1994, 1995, 1997 TooLs GmbH.
7 * All rights reserved.
8 * Original code by Paul Popelka (paulp@uts.amdahl.com) (see below).
9 *

--- 817 unchanged lines hidden (view full) ---

827 defhp->defid_len = sizeof(struct defid);
828 defhp->defid_dirclust = dep->de_dirclust;
829 defhp->defid_dirofs = dep->de_diroffset;
830 /* defhp->defid_gen = dep->de_gen; */
831 return (0);
832}
833
834static struct vfsops msdosfs_vfsops = {
835 msdosfs_mount,
836 vfs_stdstart,
837 msdosfs_unmount,
838 msdosfs_root,
839 vfs_stdquotactl,
840 msdosfs_statfs,
841 msdosfs_sync,
842 vfs_stdvget,
843 msdosfs_fhtovp,
844 vfs_stdcheckexp,
845 msdosfs_vptofh,
846 msdosfs_init,
847 msdosfs_uninit,
848 vfs_stdextattrctl,
835 .vfs_fhtovp = msdosfs_fhtovp,
836 .vfs_init = msdosfs_init,
837 .vfs_mount = msdosfs_mount,
838 .vfs_root = msdosfs_root,
839 .vfs_statfs = msdosfs_statfs,
840 .vfs_sync = msdosfs_sync,
841 .vfs_uninit = msdosfs_uninit,
842 .vfs_unmount = msdosfs_unmount,
843 .vfs_vptofh = msdosfs_vptofh,
849};
850
851VFS_SET(msdosfs_vfsops, msdosfs, 0);
844};
845
846VFS_SET(msdosfs_vfsops, msdosfs, 0);