/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */ /* The copyright notice above does not evidence any */ /* actual or intended publication of such source code. */ /* * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * PROPRIETARY NOTICE (Combined) * * This source code is unpublished proprietary information * constituting, or derived under license from AT&T's UNIX(r) System V. * In addition, portions of such source code were derived from Berkeley * 4.3 BSD under license from the Regents of the University of * California. * * * * Copyright Notice * * Notice of copyright on this source code product does not indicate * publication. * * Copyright (c) 1986-1990,1997-2000 by Sun Microsystems, Inc. * All rights reserved. * * Copyright (c) 1983-1989 by AT&T. * All rights reserved. */ #ifndef _VM_SEG_DEV_H #define _VM_SEG_DEV_H #pragma ident "@(#)seg_dev.h 1.34 00/08/07 SMI" /* From: SVr4.0 "kernel:vm/seg_dev.h 1.8" */ #ifdef __cplusplus extern "C" { #endif /* * Structure whose pointer is passed to the segdev_create routine */ struct segdev_crargs { offset_t offset; /* starting offset */ int (*mapfunc)(dev_t dev, off_t off, int prot); /* map function */ dev_t dev; /* device number */ uchar_t type; /* type of sharing done */ uchar_t prot; /* protection */ uchar_t maxprot; /* maximum protection */ uint_t hat_attr; /* hat attr */ uint_t hat_flags; /* currently, hat_flags is used ONLY for */ /* HAT_LOAD_NOCONSIST; in future, it can be */ /* expanded to include any flags that are */ /* not already part of hat_attr */ void *devmap_data; /* devmap_handle private data */ }; /* * (Semi) private data maintained by the seg_dev driver per segment mapping * * The segment lock is necessary to protect fields that are modified * when the "read" version of the address space lock is held. This lock * is not needed when the segment operation has the "write" version of * the address space lock (it would be redundant). * * The following fields in segdev_data are read-only when the address * space is "read" locked, and don't require the segment lock: * * vp * offset * mapfunc * maxprot */ struct segdev_data { offset_t offset; /* device offset for start of mapping */ kmutex_t lock; /* protects segdev_data */ int (*mapfunc)(dev_t dev, off_t off, int prot); struct vnode *vp; /* vnode associated with device */ uchar_t pageprot; /* true if per page protections present */ uchar_t prot; /* current segment prot if pageprot == 0 */ uchar_t maxprot; /* maximum segment protections */ uchar_t type; /* type of sharing done */ struct vpage *vpage; /* per-page information, if needed */ uint_t hat_attr; /* hat attr - pass to attr in hat_devload */ uint_t hat_flags; /* set HAT_LOAD_NOCONSIST flag in hat_devload */ /* see comments above in segdev_crargs */ size_t softlockcnt; /* # of SOFTLOCKED in seg */ void *devmap_data; /* devmap_handle private data */ }; #ifdef _KERNEL extern int segdev_create(struct seg *, void *); extern int segdev_copyto(struct seg *, caddr_t, const void *, void *, size_t); extern int segdev_copyfrom(struct seg *, caddr_t, const void *, void *, size_t); #endif /* _KERNEL */ #ifdef __cplusplus } #endif #endif /* _VM_SEG_DEV_H */