|
|
| version 1.8, 2004/01/20 05:04:08 | version 1.9, 2004/02/12 23:36:28 |
|---|---|
| Line 90 static int smbfs_unmount(struct mount *, | Line 90 static int smbfs_unmount(struct mount *, |
| static int smbfs_init(struct vfsconf *vfsp); | static int smbfs_init(struct vfsconf *vfsp); |
| static int smbfs_uninit(struct vfsconf *vfsp); | static int smbfs_uninit(struct vfsconf *vfsp); |
| #if __FreeBSD_version < 400009 | #if defined(__FreeBSD__) && __FreeBSD_version < 400009 |
| static int smbfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp); | static int smbfs_vget(struct mount *mp, ino_t ino, struct vnode **vpp); |
| static int smbfs_fhtovp(struct mount *, struct fid *, | static int smbfs_fhtovp(struct mount *, struct fid *, |
| struct sockaddr *, struct vnode **, int *, | struct sockaddr *, struct vnode **, int *, |
| Line 106 static struct vfsops smbfs_vfsops = { | Line 106 static struct vfsops smbfs_vfsops = { |
| smbfs_quotactl, | smbfs_quotactl, |
| smbfs_statfs, | smbfs_statfs, |
| smbfs_sync, | smbfs_sync, |
| #if __FreeBSD_version > 400008 | #if defined(__DragonFly__) || __FreeBSD_version > 400008 |
| vfs_stdvget, | vfs_stdvget, |
| vfs_stdfhtovp, /* shouldn't happen */ | vfs_stdfhtovp, /* shouldn't happen */ |
| vfs_stdcheckexp, | vfs_stdcheckexp, |
| Line 466 loop: | Line 466 loop: |
| return (allerror); | return (allerror); |
| } | } |
| #if __FreeBSD_version < 400009 | #if defined(__FreeBSD__) && __FreeBSD_version < 400009 |
| /* | /* |
| * smbfs flat namespace lookup. Unsupported. | * smbfs flat namespace lookup. Unsupported. |
| */ | */ |