Module Name: src
Committed By: pooka
Date: Thu Aug 15 20:45:38 UTC 2013
Modified Files:
src/sys/rump/include/rump: rumpdefs.h
Log Message:
regen
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/rump/include/rump/rumpdefs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/include/rump/rumpdefs.h
diff -u src/sys/rump/include/rump/rumpdefs.h:1.22 src/sys/rump/include/rump/rumpdefs.h:1.23
--- src/sys/rump/include/rump/rumpdefs.h:1.22 Tue Jun 25 21:07:22 2013
+++ src/sys/rump/include/rump/rumpdefs.h Thu Aug 15 20:45:38 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpdefs.h,v 1.22 2013/06/25 21:07:22 stacktic Exp $ */
+/* $NetBSD: rumpdefs.h,v 1.23 2013/08/15 20:45:38 pooka Exp $ */
/*
* AUTOMATICALLY GENERATED. DO NOT EDIT.
@@ -295,7 +295,7 @@ enum rump_vtype { RUMP_VNON, RUMP_VREG,
#define RUMP_MSG_IOVUSRSPACE 0x4000000
#define RUMP_MSG_LENUSRSPACE 0x8000000
-/* NetBSD: in.h,v 1.88 2013/04/27 21:35:24 joerg Exp */
+/* NetBSD: in.h,v 1.87 2012/06/22 14:54:35 christos Exp */
#define RUMP_IP_OPTIONS 1
#define RUMP_IP_HDRINCL 2
#define RUMP_IP_TOS 3
@@ -480,7 +480,7 @@ struct rump_modctl_load {
size_t ml_propslen;
};
-/* NetBSD: ufsmount.h,v 1.40 2013/06/16 13:33:30 hannken Exp */
+/* NetBSD: ufsmount.h,v 1.39 2012/10/19 17:09:08 drochner Exp */
struct rump_ufs_args {
char *fspec; /* block special device to mount */
};
@@ -490,4 +490,17 @@ struct rump_sysvbfs_args {
char *fspec; /* blocks special holding the fs to mount */
};
+/* NetBSD: dirent.h,v 1.28 2011/09/27 01:40:32 christos Exp */
+struct rump_dirent {
+ ino_t d_fileno; /* file number of entry */
+ uint16_t d_reclen; /* length of this record */
+ uint16_t d_namlen; /* length of string in d_name */
+ uint8_t d_type; /* file type, see below */
+#if defined(_NETBSD_SOURCE)
+ char d_name[MAXNAMLEN + 1]; /* name must be no longer than this */
+#else
+ char d_name[511 + 1]; /* name must be no longer than this */
+#endif
+};
+
#endif /* _RUMP_RUMPDEFS_H_ */