Deleted Added
full compact
fdesc_vfsops.c (27845) fdesc_vfsops.c (28270)
1/*
2 * Copyright (c) 1992, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
37 *
1/*
2 * Copyright (c) 1992, 1993, 1995
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)fdesc_vfsops.c 8.4 (Berkeley) 1/21/94
37 *
38 * $Id: fdesc_vfsops.c,v 1.10 1997/02/22 09:40:15 peter Exp $
38 * $Id: fdesc_vfsops.c,v 1.11 1997/08/02 14:31:59 bde Exp $
39 */
40
41/*
42 * /dev/fd Filesystem
43 */
44
45#include <sys/param.h>
46#include <sys/systm.h>

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

239 struct ucred *cred;
240 struct proc *p;
241{
242
243 return (0);
244}
245
246#define fdesc_fhtovp ((int (*) __P((struct mount *, struct fid *, \
39 */
40
41/*
42 * /dev/fd Filesystem
43 */
44
45#include <sys/param.h>
46#include <sys/systm.h>

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

239 struct ucred *cred;
240 struct proc *p;
241{
242
243 return (0);
244}
245
246#define fdesc_fhtovp ((int (*) __P((struct mount *, struct fid *, \
247 struct mbuf *, struct vnode **, int *, struct ucred **)))eopnotsupp)
247 struct sockaddr *, struct vnode **, int *, struct ucred **)))eopnotsupp)
248#define fdesc_quotactl ((int (*) __P((struct mount *, int, uid_t, caddr_t, \
249 struct proc *)))eopnotsupp)
250#define fdesc_sysctl ((int (*) __P((int *, u_int, void *, size_t *, void *, \
251 size_t, struct proc *)))eopnotsupp)
252#define fdesc_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \
253 eopnotsupp)
254#define fdesc_vptofh ((int (*) __P((struct vnode *, struct fid *)))eopnotsupp)
255

--- 15 unchanged lines hidden ---
248#define fdesc_quotactl ((int (*) __P((struct mount *, int, uid_t, caddr_t, \
249 struct proc *)))eopnotsupp)
250#define fdesc_sysctl ((int (*) __P((int *, u_int, void *, size_t *, void *, \
251 size_t, struct proc *)))eopnotsupp)
252#define fdesc_vget ((int (*) __P((struct mount *, ino_t, struct vnode **))) \
253 eopnotsupp)
254#define fdesc_vptofh ((int (*) __P((struct vnode *, struct fid *)))eopnotsupp)
255

--- 15 unchanged lines hidden ---