Deleted Added
full compact
vfs_default.c (51068) vfs_default.c (51138)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed
6 * to Berkeley by John Heidemann of the UCLA Ficus project.
7 *
8 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed
6 * to Berkeley by John Heidemann of the UCLA Ficus project.
7 *
8 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *
39 * $FreeBSD: head/sys/kern/vfs_default.c 51068 1999-09-07 22:42:38Z alfred $
39 * $FreeBSD: head/sys/kern/vfs_default.c 51138 1999-09-11 00:46:08Z alfred $
40 */
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/buf.h>
45#include <sys/kernel.h>
46#include <sys/lock.h>
47#include <sys/malloc.h>

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

575 struct mount *mp;
576 ino_t ino;
577 struct vnode **vpp;
578{
579 return (EOPNOTSUPP);
580}
581
582int
40 */
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/buf.h>
45#include <sys/kernel.h>
46#include <sys/lock.h>
47#include <sys/malloc.h>

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

575 struct mount *mp;
576 ino_t ino;
577 struct vnode **vpp;
578{
579 return (EOPNOTSUPP);
580}
581
582int
583vfs_stdfhtovp (mp, fhp, nam, vpp, exflagsp, credanonp)
583vfs_stdfhtovp (mp, fhp, vpp)
584 struct mount *mp;
585 struct fid *fhp;
584 struct mount *mp;
585 struct fid *fhp;
586 struct sockaddr *nam;
587 struct vnode **vpp;
586 struct vnode **vpp;
588 int *exflagsp;
587{
588 return (EOPNOTSUPP);
589}
590
591int
592vfs_stdcheckexp (mp, nam, extflagsp, credanonp)
593 struct mount *mp;
594 struct sockaddr *nam;
595 int *extflagsp;
589 struct ucred **credanonp;
590{
591 return (EOPNOTSUPP);
592}
593
594int
595vfs_stdinit (vfsp)
596 struct vfsconf *vfsp;

--- 12 unchanged lines hidden ---
596 struct ucred **credanonp;
597{
598 return (EOPNOTSUPP);
599}
600
601int
602vfs_stdinit (vfsp)
603 struct vfsconf *vfsp;

--- 12 unchanged lines hidden ---