Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump regen: rump_vfs_extattrctl
details: https://anonhg.NetBSD.org/src/rev/ce3f405cf6d2
branches: trunk
changeset: 755032:ce3f405cf6d2
user: pooka <pooka%NetBSD.org@localhost>
date: Thu May 20 15:47:45 2010 +0000
description:
regen: rump_vfs_extattrctl
diffstat:
sys/rump/include/rump/rumpvfs_if_pub.h | 5 +++--
sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c | 16 ++++++++++++++--
2 files changed, 17 insertions(+), 4 deletions(-)
diffs (55 lines):
diff -r 4e99a6f61349 -r ce3f405cf6d2 sys/rump/include/rump/rumpvfs_if_pub.h
--- a/sys/rump/include/rump/rumpvfs_if_pub.h Thu May 20 15:46:47 2010 +0000
+++ b/sys/rump/include/rump/rumpvfs_if_pub.h Thu May 20 15:47:45 2010 +0000
@@ -1,8 +1,8 @@
-/* $NetBSD: rumpvfs_if_pub.h,v 1.4 2010/04/14 14:14:53 pooka Exp $ */
+/* $NetBSD: rumpvfs_if_pub.h,v 1.5 2010/05/20 15:47:45 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
- * from: NetBSD: rumpvfs.ifspec,v 1.1 2009/10/14 17:17:00 pooka Exp
+ * from: NetBSD: rumpvfs.ifspec,v 1.3 2010/05/20 15:46:47 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@@ -31,6 +31,7 @@
int rump_pub_vfs_sync(struct mount *, int, struct kauth_cred *);
int rump_pub_vfs_fhtovp(struct mount *, struct fid *, struct vnode **);
int rump_pub_vfs_vptofh(struct vnode *, struct fid *, size_t *);
+int rump_pub_vfs_extattrctl(struct mount *, int, struct vnode *, int, const char *);
void rump_pub_vfs_syncwait(struct mount *);
int rump_pub_vfs_getmp(const char *, struct mount **);
void rump_pub_rcvp_set(struct vnode *, struct vnode *);
diff -r 4e99a6f61349 -r ce3f405cf6d2 sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c
--- a/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Thu May 20 15:46:47 2010 +0000
+++ b/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Thu May 20 15:47:45 2010 +0000
@@ -1,8 +1,8 @@
-/* $NetBSD: rumpvfs_if_wrappers.c,v 1.4 2010/04/14 14:14:53 pooka Exp $ */
+/* $NetBSD: rumpvfs_if_wrappers.c,v 1.5 2010/05/20 15:47:45 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
- * from: NetBSD: rumpvfs.ifspec,v 1.1 2009/10/14 17:17:00 pooka Exp
+ * from: NetBSD: rumpvfs.ifspec,v 1.3 2010/05/20 15:46:47 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@@ -296,6 +296,18 @@
return rv;
}
+int
+rump_pub_vfs_extattrctl(struct mount *arg1, int arg2, struct vnode *arg3, int arg4, const char *arg5)
+{
+ int rv;
+
+ rump_schedule();
+ rv = rump_vfs_extattrctl(arg1, arg2, arg3, arg4, arg5);
+ rump_unschedule();
+
+ return rv;
+}
+
void
rump_pub_vfs_syncwait(struct mount *arg1)
{
Home |
Main Index |
Thread Index |
Old Index