Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump/librump kill weak aliases which are no longer neces...
details: https://anonhg.NetBSD.org/src/rev/feb663579fff
branches: trunk
changeset: 795731:feb663579fff
user: pooka <pooka%NetBSD.org@localhost>
date: Sat Apr 26 11:17:55 2014 +0000
description:
kill weak aliases which are no longer necessary
diffstat:
sys/rump/librump/rumpkern/rump.c | 5 ++---
sys/rump/librump/rumpnet/net_stub.c | 7 +++----
2 files changed, 5 insertions(+), 7 deletions(-)
diffs (55 lines):
diff -r 5fcdf7f98913 -r feb663579fff sys/rump/librump/rumpkern/rump.c
--- a/sys/rump/librump/rumpkern/rump.c Sat Apr 26 11:16:22 2014 +0000
+++ b/sys/rump/librump/rumpkern/rump.c Sat Apr 26 11:17:55 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.c,v 1.302 2014/04/25 19:56:01 pooka Exp $ */
+/* $NetBSD: rump.c,v 1.303 2014/04/26 11:17:55 pooka Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.302 2014/04/25 19:56:01 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.303 2014/04/26 11:17:55 pooka Exp $");
#include <sys/systm.h>
#define ELFSIZE ARCH_ELFSIZE
@@ -134,7 +134,6 @@
int rump__unavailable() {return EOPNOTSUPP;}
__weak_alias(biodone,rump__unavailable);
-__weak_alias(sopoll,rump__unavailable);
rump_proc_vfs_init_fn rump_proc_vfs_init = (void *)nullop;
rump_proc_vfs_release_fn rump_proc_vfs_release = (void *)nullop;
diff -r 5fcdf7f98913 -r feb663579fff sys/rump/librump/rumpnet/net_stub.c
--- a/sys/rump/librump/rumpnet/net_stub.c Sat Apr 26 11:16:22 2014 +0000
+++ b/sys/rump/librump/rumpnet/net_stub.c Sat Apr 26 11:17:55 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: net_stub.c,v 1.14 2013/06/26 17:10:23 pooka Exp $ */
+/* $NetBSD: net_stub.c,v 1.15 2014/04/26 11:17:55 pooka Exp $ */
/*
* Copyright (c) 2008 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: net_stub.c,v 1.14 2013/06/26 17:10:23 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: net_stub.c,v 1.15 2014/04/26 11:17:55 pooka Exp $");
#include <sys/param.h>
#include <sys/protosw.h>
@@ -45,9 +45,8 @@
panic("component not available");
}
-__weak_alias(rtioctl,__rumpnet_stub);
+
__weak_alias(rtrequest,__rumpnet_stub);
-__weak_alias(ifioctl,__rumpnet_stub);
__weak_alias(ifunit,__rumpnet_stub);
__weak_alias(ifreq_setaddr,__rumpnet_stub);
Home |
Main Index |
Thread Index |
Old Index