diff options
author | dyson <dyson@FreeBSD.org> | 1995-10-23 02:23:29 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1995-10-23 02:23:29 +0000 |
commit | b1a28fda3c0a3f2943f4dd0f1ce4889dc4548dc5 (patch) | |
tree | 5523ea9a03a0c87c10ad76292dec8feb90cea8fc /sys/miscfs/specfs/specdev.h | |
parent | 04162007d2d3e53c50936e8debe07599c3755d6b (diff) | |
download | FreeBSD-src-b1a28fda3c0a3f2943f4dd0f1ce4889dc4548dc5.zip FreeBSD-src-b1a28fda3c0a3f2943f4dd0f1ce4889dc4548dc5.tar.gz |
Finalize GETPAGES layering scheme. Move the device GETPAGES
interface into specfs code. No need at this point to modify the
PUTPAGES stuff except in the layered-type (NULL/UNION) filesystems.
Diffstat (limited to 'sys/miscfs/specfs/specdev.h')
-rw-r--r-- | sys/miscfs/specfs/specdev.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/miscfs/specfs/specdev.h b/sys/miscfs/specfs/specdev.h index af0f7a2..3ef7359 100644 --- a/sys/miscfs/specfs/specdev.h +++ b/sys/miscfs/specfs/specdev.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)specdev.h 8.2 (Berkeley) 2/2/94 - * $Id: specdev.h,v 1.2 1994/08/02 07:45:30 davidg Exp $ + * $Id: specdev.h,v 1.3 1995/07/29 11:40:32 bde Exp $ */ /* @@ -118,6 +118,7 @@ int spec_print __P((struct vop_print_args *)); #define spec_islocked ((int (*) __P((struct vop_islocked_args *)))nullop) int spec_pathconf __P((struct vop_pathconf_args *)); int spec_advlock __P((struct vop_advlock_args *)); +int spec_getpages __P((struct vop_getpages_args *)); #define spec_blkatoff ((int (*) __P((struct vop_blkatoff_args *)))spec_badop) #define spec_valloc ((int (*) __P((struct vop_valloc_args *)))spec_badop) #define spec_reallocblks \ |