vnodes
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 31 Jul 1989 02:11:57 +0000 (18:11 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 31 Jul 1989 02:11:57 +0000 (18:11 -0800)
SCCS-vsn: sbin/restore/restore.h 5.4
SCCS-vsn: sbin/tunefs/tunefs.c 5.9
SCCS-vsn: usr.bin/quota/quota.c 5.8
SCCS-vsn: usr.sbin/edquota/edquota.c 5.10
SCCS-vsn: usr.sbin/mkproto/mkproto.c 5.5
SCCS-vsn: usr.sbin/quot/quot.c 4.17
SCCS-vsn: usr.sbin/repquota/repquota.c 5.7

usr/src/sbin/restore/restore.h
usr/src/sbin/tunefs/tunefs.c
usr/src/usr.bin/quota/quota.c
usr/src/usr.sbin/edquota/edquota.c
usr/src/usr.sbin/mkproto/mkproto.c
usr/src/usr.sbin/quot/quot.c
usr/src/usr.sbin/repquota/repquota.c

index 34b3fa7..705824f 100644 (file)
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)restore.h   5.3 (Berkeley) %G%
+ *     @(#)restore.h   5.4 (Berkeley) %G%
  */
 
  */
 
-#include <stdio.h>
 #include <sys/param.h>
 #include <sys/param.h>
-#include <sys/inode.h>
-#include <sys/fs.h>
+#include <sys/time.h>
+#include <sys/vnode.h>
 #include <sys/dir.h>
 #include <sys/dir.h>
+#include <ufs/inode.h>
+#include <ufs/fs.h>
+#include <stdio.h>
 
 /*
  * Flags
 
 /*
  * Flags
index 01c515f..c05e737 100644 (file)
@@ -22,7 +22,7 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)tunefs.c   5.8 (Berkeley) %G%";
+static char sccsid[] = "@(#)tunefs.c   5.9 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -30,8 +30,10 @@ static char sccsid[] = "@(#)tunefs.c 5.8 (Berkeley) %G%";
  */
 #include <sys/param.h>
 #include <sys/stat.h>
  */
 #include <sys/param.h>
 #include <sys/stat.h>
-#include <sys/fs.h>
-#include <sys/inode.h>
+#include <sys/time.h>
+#include <sys/vnode.h>
+#include <ufs/inode.h>
+#include <ufs/fs.h>
 #include <fstab.h>
 #include <stdio.h>
 #include <paths.h>
 #include <fstab.h>
 #include <stdio.h>
 #include <paths.h>
index 060abd8..394d4d9 100644 (file)
@@ -22,16 +22,16 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)quota.c    5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)quota.c    5.8 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
  * Disk quota reporting program.
  */
 #include <sys/param.h>
 #endif /* not lint */
 
 /*
  * Disk quota reporting program.
  */
 #include <sys/param.h>
-#include <sys/quota.h>
 #include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/file.h>
 #include <sys/stat.h>
+#include <ufs/quota.h>
 #include <stdio.h>
 #include <fstab.h>
 #include <ctype.h>
 #include <stdio.h>
 #include <fstab.h>
 #include <ctype.h>
index 9a3a21a..87df665 100644 (file)
@@ -22,7 +22,7 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)edquota.c  5.9 (Berkeley) %G%";
+static char sccsid[] = "@(#)edquota.c  5.10 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
@@ -31,8 +31,8 @@ static char sccsid[] = "@(#)edquota.c 5.9 (Berkeley) %G%";
 #include <sys/param.h>
 #include <sys/stat.h>
 #include <sys/file.h>
 #include <sys/param.h>
 #include <sys/stat.h>
 #include <sys/file.h>
-#include <sys/quota.h>
-#include <signal.h>
+#include <sys/signal.h>
+#include <ufs/quota.h>
 #include <errno.h>
 #include <fstab.h>
 #include <pwd.h>
 #include <errno.h>
 #include <fstab.h>
 #include <pwd.h>
index 79c7979..72f6e75 100644 (file)
@@ -11,18 +11,20 @@ char copyright[] =
 #endif not lint
 
 #ifndef lint
 #endif not lint
 
 #ifndef lint
-static char sccsid[] = "@(#)mkproto.c  5.4 (Berkeley) %G%";
+static char sccsid[] = "@(#)mkproto.c  5.5 (Berkeley) %G%";
 #endif not lint
 
 /*
  * Make a file system prototype.
  * usage: mkproto filsys proto
  */
 #endif not lint
 
 /*
  * Make a file system prototype.
  * usage: mkproto filsys proto
  */
-#include <stdio.h>
 #include <sys/param.h>
 #include <sys/param.h>
-#include <sys/inode.h>
-#include <sys/fs.h>
+#include <sys/time.h>
+#include <sys/vnode.h>
 #include <sys/dir.h>
 #include <sys/dir.h>
+#include <ufs/inode.h>
+#include <ufs/fs.h>
+#include <stdio.h>
 
 union {
        struct  fs fs;
 
 union {
        struct  fs fs;
index c172e77..cae9710 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef lint
 #ifndef lint
-static char *sccsid = "@(#)quot.c      4.16 (Berkeley) 89/05/15";
+static char *sccsid = "@(#)quot.c      4.17 (Berkeley) 89/07/30";
 #endif
 
 /*
 #endif
 
 /*
@@ -7,9 +7,11 @@ static char *sccsid = "@(#)quot.c      4.16 (Berkeley) 89/05/15";
  */
 
 #include <sys/param.h>
  */
 
 #include <sys/param.h>
-#include <sys/inode.h>
-#include <sys/fs.h>
+#include <sys/time.h>
+#include <sys/vnode.h>
 #include <sys/file.h>
 #include <sys/file.h>
+#include <ufs/inode.h>
+#include <ufs/fs.h>
 #include <stdio.h>
 #include <ctype.h>
 #include <paths.h>
 #include <stdio.h>
 #include <ctype.h>
 #include <paths.h>
index 5de9e09..639a491 100644 (file)
@@ -22,19 +22,19 @@ char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)repquota.c 5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)repquota.c 5.7 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
  * Quota report
  */
 #endif /* not lint */
 
 /*
  * Quota report
  */
-#include <stdio.h>
-#include <errno.h>
 #include <sys/param.h>
 #include <sys/param.h>
-#include <sys/quota.h>
 #include <sys/stat.h>
 #include <sys/stat.h>
+#include <ufs/quota.h>
 #include <fstab.h>
 #include <pwd.h>
 #include <fstab.h>
 #include <pwd.h>
+#include <stdio.h>
+#include <errno.h>
 
 #define LOGINNAMESIZE 8
 struct fileusage {
 
 #define LOGINNAMESIZE 8
 struct fileusage {