Module Name: src Committed By: pooka Date: Mon Jul 19 15:30:44 UTC 2010
Modified Files: src/sys/rump/include/rump: rumpvfs_if_pub.h src/sys/rump/librump/rumpvfs: rumpvfs_if_priv.h rumpvfs_if_wrappers.c Log Message: regen: stat compat syscalls moved To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/rump/include/rump/rumpvfs_if_pub.h cvs rdiff -u -r1.6 -r1.7 src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h \ src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c 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/rumpvfs_if_pub.h diff -u src/sys/rump/include/rump/rumpvfs_if_pub.h:1.6 src/sys/rump/include/rump/rumpvfs_if_pub.h:1.7 --- src/sys/rump/include/rump/rumpvfs_if_pub.h:1.6 Wed May 26 21:51:58 2010 +++ src/sys/rump/include/rump/rumpvfs_if_pub.h Mon Jul 19 15:30:43 2010 @@ -1,8 +1,8 @@ -/* $NetBSD: rumpvfs_if_pub.h,v 1.6 2010/05/26 21:51:58 pooka Exp $ */ +/* $NetBSD: rumpvfs_if_pub.h,v 1.7 2010/07/19 15:30:43 pooka Exp $ */ /* * Automatically generated. DO NOT EDIT. - * from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp + * from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp * by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp */ @@ -38,7 +38,5 @@ void rump_pub_rcvp_set(struct vnode *, struct vnode *); struct vnode * rump_pub_cdir_get(void); int rump_pub_syspuffs_glueinit(int, int *); -int rump_pub_sys___stat30(const char *, struct stat *); -int rump_pub_sys___lstat30(const char *, struct stat *); void rump_pub_vattr50_to_vattr(const struct vattr *, struct vattr *); void rump_pub_vattr_to_vattr50(const struct vattr *, struct vattr *); Index: src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h diff -u src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h:1.6 src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h:1.7 --- src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h:1.6 Wed May 26 21:51:58 2010 +++ src/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h Mon Jul 19 15:30:43 2010 @@ -1,8 +1,8 @@ -/* $NetBSD: rumpvfs_if_priv.h,v 1.6 2010/05/26 21:51:58 pooka Exp $ */ +/* $NetBSD: rumpvfs_if_priv.h,v 1.7 2010/07/19 15:30:43 pooka Exp $ */ /* * Automatically generated. DO NOT EDIT. - * from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp + * from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp * by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp */ @@ -38,7 +38,5 @@ void rump_rcvp_set(struct vnode *, struct vnode *); struct vnode * rump_cdir_get(void); int rump_syspuffs_glueinit(int, int *); -int rump_sys___stat30(const char *, struct stat *); -int rump_sys___lstat30(const char *, struct stat *); void rump_vattr50_to_vattr(const struct vattr *, struct vattr *); void rump_vattr_to_vattr50(const struct vattr *, struct vattr *); Index: src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c diff -u src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.6 src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.7 --- src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.6 Wed May 26 21:51:59 2010 +++ src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Mon Jul 19 15:30:43 2010 @@ -1,8 +1,8 @@ -/* $NetBSD: rumpvfs_if_wrappers.c,v 1.6 2010/05/26 21:51:59 pooka Exp $ */ +/* $NetBSD: rumpvfs_if_wrappers.c,v 1.7 2010/07/19 15:30:43 pooka Exp $ */ /* * Automatically generated. DO NOT EDIT. - * from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp + * from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp * by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp */ @@ -372,30 +372,6 @@ } __weak_alias(rump_syspuffs_glueinit,rump_vfs_unavailable); -int -rump_pub_sys___stat30(const char *arg1, struct stat *arg2) -{ - int rv; - - rump_schedule(); - rv = rump_sys___stat30(arg1, arg2); - rump_unschedule(); - - return rv; -} - -int -rump_pub_sys___lstat30(const char *arg1, struct stat *arg2) -{ - int rv; - - rump_schedule(); - rv = rump_sys___lstat30(arg1, arg2); - rump_unschedule(); - - return rv; -} - void rump_pub_vattr50_to_vattr(const struct vattr *arg1, struct vattr *arg2) {