add badop for reallocblks
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 3 Feb 1994 05:18:50 +0000 (21:18 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 3 Feb 1994 05:18:50 +0000 (21:18 -0800)
SCCS-vsn: sys/miscfs/fifofs/fifo.h 8.2
SCCS-vsn: sys/miscfs/specfs/specdev.h 8.2

usr/src/sys/miscfs/fifofs/fifo.h
usr/src/sys/miscfs/specfs/specdev.h

index 0c05873..c0a3287 100644 (file)
@@ -4,7 +4,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)fifo.h      8.1 (Berkeley) %G%
+ *     @(#)fifo.h      8.2 (Berkeley) %G%
  */
 
 #ifdef FIFO
  */
 
 #ifdef FIFO
@@ -50,6 +50,8 @@ int   fifo_pathconf __P((struct vop_pathconf_args *));
 int    fifo_advlock __P((struct vop_advlock_args *));
 #define fifo_blkatoff ((int (*) __P((struct  vop_blkatoff_args *)))fifo_badop)
 #define fifo_valloc ((int (*) __P((struct  vop_valloc_args *)))fifo_badop)
 int    fifo_advlock __P((struct vop_advlock_args *));
 #define fifo_blkatoff ((int (*) __P((struct  vop_blkatoff_args *)))fifo_badop)
 #define fifo_valloc ((int (*) __P((struct  vop_valloc_args *)))fifo_badop)
+#define fifo_reallocblks \
+       ((int (*) __P((struct  vop_reallocblks_args *)))fifo_badop)
 #define fifo_vfree ((int (*) __P((struct  vop_vfree_args *)))fifo_badop)
 #define fifo_truncate ((int (*) __P((struct  vop_truncate_args *)))nullop)
 #define fifo_update ((int (*) __P((struct  vop_update_args *)))nullop)
 #define fifo_vfree ((int (*) __P((struct  vop_vfree_args *)))fifo_badop)
 #define fifo_truncate ((int (*) __P((struct  vop_truncate_args *)))nullop)
 #define fifo_update ((int (*) __P((struct  vop_update_args *)))nullop)
index 22555e7..de598ba 100644 (file)
@@ -4,7 +4,7 @@
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)specdev.h   8.1 (Berkeley) %G%
+ *     @(#)specdev.h   8.2 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
@@ -93,6 +93,8 @@ int   spec_pathconf __P((struct vop_pathconf_args *));
 int    spec_advlock __P((struct vop_advlock_args *));
 #define spec_blkatoff ((int (*) __P((struct  vop_blkatoff_args *)))spec_badop)
 #define spec_valloc ((int (*) __P((struct  vop_valloc_args *)))spec_badop)
 int    spec_advlock __P((struct vop_advlock_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 \
+       ((int (*) __P((struct  vop_reallocblks_args *)))spec_badop)
 #define spec_vfree ((int (*) __P((struct  vop_vfree_args *)))spec_badop)
 #define spec_truncate ((int (*) __P((struct  vop_truncate_args *)))nullop)
 #define spec_update ((int (*) __P((struct  vop_update_args *)))nullop)
 #define spec_vfree ((int (*) __P((struct  vop_vfree_args *)))spec_badop)
 #define spec_truncate ((int (*) __P((struct  vop_truncate_args *)))nullop)
 #define spec_update ((int (*) __P((struct  vop_update_args *)))nullop)