Module Name: src
Committed By: pooka
Date: Thu May 20 15:47:45 UTC 2010
Modified Files:
src/sys/rump/include/rump: rumpvfs_if_pub.h
src/sys/rump/librump/rumpvfs: rumpvfs_if_wrappers.c
Log Message:
regen: rump_vfs_extattrctl
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/rump/include/rump/rumpvfs_if_pub.h
cvs rdiff -u -r1.4 -r1.5 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.4 src/sys/rump/include/rump/rumpvfs_if_pub.h:1.5
--- src/sys/rump/include/rump/rumpvfs_if_pub.h:1.4 Wed Apr 14 14:14:53 2010
+++ src/sys/rump/include/rump/rumpvfs_if_pub.h Thu May 20 15:47:45 2010
@@ -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 *);
Index: src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c
diff -u src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.4 src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.5
--- src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c:1.4 Wed Apr 14 14:14:53 2010
+++ src/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Thu May 20 15:47:45 2010
@@ -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)
{