Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump regen: kauth_cred_t -> struct kauth_cred *
details: https://anonhg.NetBSD.org/src/rev/f2d7b5a74a69
branches: trunk
changeset: 753954:f2d7b5a74a69
user: pooka <pooka%NetBSD.org@localhost>
date: Wed Apr 14 14:14:52 2010 +0000
description:
regen: kauth_cred_t -> struct kauth_cred *
diffstat:
sys/rump/include/rump/rumpkern_if_pub.h | 8 ++++----
sys/rump/include/rump/rumpvfs_if_pub.h | 6 +++---
sys/rump/librump/rumpkern/rumpkern_if_priv.h | 8 ++++----
sys/rump/librump/rumpkern/rumpkern_if_wrappers.c | 12 ++++++------
sys/rump/librump/rumpvfs/rumpvfs_if_priv.h | 6 +++---
sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c | 6 +++---
6 files changed, 23 insertions(+), 23 deletions(-)
diffs (161 lines):
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/include/rump/rumpkern_if_pub.h
--- a/sys/rump/include/rump/rumpkern_if_pub.h Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/include/rump/rumpkern_if_pub.h Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpkern_if_pub.h,v 1.6 2010/03/05 18:43:58 pooka Exp $ */
+/* $NetBSD: rumpkern_if_pub.h,v 1.7 2010/04/14 14:14:53 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -15,9 +15,9 @@
size_t rump_pub_uio_getresid(struct uio *);
off_t rump_pub_uio_getoff(struct uio *);
size_t rump_pub_uio_free(struct uio *);
-kauth_cred_t rump_pub_cred_create(uid_t, gid_t, size_t, gid_t *);
-kauth_cred_t rump_pub_cred_suserget(void);
-void rump_pub_cred_put(kauth_cred_t);
+struct kauth_cred* rump_pub_cred_create(uid_t, gid_t, size_t, gid_t *);
+struct kauth_cred* rump_pub_cred_suserget(void);
+void rump_pub_cred_put(struct kauth_cred *);
struct lwp * rump_pub_newproc_switch(void);
struct lwp * rump_pub_lwp_alloc(pid_t, lwpid_t);
struct lwp * rump_pub_lwp_alloc_and_switch(pid_t, lwpid_t);
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/include/rump/rumpvfs_if_pub.h
--- a/sys/rump/include/rump/rumpvfs_if_pub.h Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/include/rump/rumpvfs_if_pub.h Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvfs_if_pub.h,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpvfs_if_pub.h,v 1.4 2010/04/14 14:14:53 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -24,11 +24,11 @@
void rump_pub_freecn(struct componentname *, int);
int rump_pub_checksavecn(struct componentname *);
int rump_pub_namei(uint32_t, uint32_t, const char *, struct vnode **, struct vnode **, struct componentname **);
-struct componentname * rump_pub_makecn(u_long, u_long, const char *, size_t, kauth_cred_t, struct lwp *);
+struct componentname * rump_pub_makecn(u_long, u_long, const char *, size_t, struct kauth_cred *, struct lwp *);
int rump_pub_vfs_unmount(struct mount *, int);
int rump_pub_vfs_root(struct mount *, struct vnode **, int);
int rump_pub_vfs_statvfs(struct mount *, struct statvfs *);
-int rump_pub_vfs_sync(struct mount *, int, kauth_cred_t);
+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 *);
void rump_pub_vfs_syncwait(struct mount *);
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/librump/rumpkern/rumpkern_if_priv.h
--- a/sys/rump/librump/rumpkern/rumpkern_if_priv.h Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/librump/rumpkern/rumpkern_if_priv.h Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpkern_if_priv.h,v 1.6 2010/03/05 18:43:59 pooka Exp $ */
+/* $NetBSD: rumpkern_if_priv.h,v 1.7 2010/04/14 14:14:52 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -15,9 +15,9 @@
size_t rump_uio_getresid(struct uio *);
off_t rump_uio_getoff(struct uio *);
size_t rump_uio_free(struct uio *);
-kauth_cred_t rump_cred_create(uid_t, gid_t, size_t, gid_t *);
-kauth_cred_t rump_cred_suserget(void);
-void rump_cred_put(kauth_cred_t);
+struct kauth_cred* rump_cred_create(uid_t, gid_t, size_t, gid_t *);
+struct kauth_cred* rump_cred_suserget(void);
+void rump_cred_put(struct kauth_cred *);
struct lwp * rump_newproc_switch(void);
struct lwp * rump_lwp_alloc(pid_t, lwpid_t);
struct lwp * rump_lwp_alloc_and_switch(pid_t, lwpid_t);
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/librump/rumpkern/rumpkern_if_wrappers.c
--- a/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpkern_if_wrappers.c,v 1.6 2010/03/05 18:43:59 pooka Exp $ */
+/* $NetBSD: rumpkern_if_wrappers.c,v 1.7 2010/04/14 14:14:52 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -128,10 +128,10 @@
return rv;
}
-kauth_cred_t
+struct kauth_cred*
rump_pub_cred_create(uid_t arg1, gid_t arg2, size_t arg3, gid_t *arg4)
{
- kauth_cred_t rv;
+ struct kauth_cred* rv;
rump_schedule();
rv = rump_cred_create(arg1, arg2, arg3, arg4);
@@ -140,10 +140,10 @@
return rv;
}
-kauth_cred_t
+struct kauth_cred*
rump_pub_cred_suserget(void)
{
- kauth_cred_t rv;
+ struct kauth_cred* rv;
rump_schedule();
rv = rump_cred_suserget();
@@ -153,7 +153,7 @@
}
void
-rump_pub_cred_put(kauth_cred_t arg1)
+rump_pub_cred_put(struct kauth_cred *arg1)
{
rump_schedule();
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/librump/rumpvfs/rumpvfs_if_priv.h
--- a/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/librump/rumpvfs/rumpvfs_if_priv.h Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvfs_if_priv.h,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpvfs_if_priv.h,v 1.4 2010/04/14 14:14:53 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -24,11 +24,11 @@
void rump_freecn(struct componentname *, int);
int rump_checksavecn(struct componentname *);
int rump_namei(uint32_t, uint32_t, const char *, struct vnode **, struct vnode **, struct componentname **);
-struct componentname * rump_makecn(u_long, u_long, const char *, size_t, kauth_cred_t, struct lwp *);
+struct componentname * rump_makecn(u_long, u_long, const char *, size_t, struct kauth_cred *, struct lwp *);
int rump_vfs_unmount(struct mount *, int);
int rump_vfs_root(struct mount *, struct vnode **, int);
int rump_vfs_statvfs(struct mount *, struct statvfs *);
-int rump_vfs_sync(struct mount *, int, kauth_cred_t);
+int rump_vfs_sync(struct mount *, int, struct kauth_cred *);
int rump_vfs_fhtovp(struct mount *, struct fid *, struct vnode **);
int rump_vfs_vptofh(struct vnode *, struct fid *, size_t *);
void rump_vfs_syncwait(struct mount *);
diff -r cae05d559de7 -r f2d7b5a74a69 sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c
--- a/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Wed Apr 14 14:12:48 2010 +0000
+++ b/sys/rump/librump/rumpvfs/rumpvfs_if_wrappers.c Wed Apr 14 14:14:52 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpvfs_if_wrappers.c,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpvfs_if_wrappers.c,v 1.4 2010/04/14 14:14:53 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
@@ -213,7 +213,7 @@
}
struct componentname *
-rump_pub_makecn(u_long arg1, u_long arg2, const char *arg3, size_t arg4, kauth_cred_t arg5, struct lwp *arg6)
+rump_pub_makecn(u_long arg1, u_long arg2, const char *arg3, size_t arg4, struct kauth_cred *arg5, struct lwp *arg6)
{
struct componentname * rv;
@@ -261,7 +261,7 @@
}
int
-rump_pub_vfs_sync(struct mount *arg1, int arg2, kauth_cred_t arg3)
+rump_pub_vfs_sync(struct mount *arg1, int arg2, struct kauth_cred *arg3)
{
int rv;
Home |
Main Index |
Thread Index |
Old Index