diff options
Diffstat (limited to 'usr/src/uts/common/inet/udp/udp6ddi.c')
-rw-r--r-- | usr/src/uts/common/inet/udp/udp6ddi.c | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/usr/src/uts/common/inet/udp/udp6ddi.c b/usr/src/uts/common/inet/udp/udp6ddi.c index c5b203c654..a5f80f818c 100644 --- a/usr/src/uts/common/inet/udp/udp6ddi.c +++ b/usr/src/uts/common/inet/udp/udp6ddi.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -33,27 +32,24 @@ #include <inet/ip.h> #define INET_NAME "udp6" -#define INET_DEVMINOR IPV6_MINOR +#define INET_DEVMINOR 0 #define INET_DEVDESC "UDP6 STREAMS driver %I%" -#define INET_STRTAB udpinfo -#define INET_DEVMTFLAGS IP_DEVMTFLAGS +#define INET_DEVSTRTAB udpinfov6 /* * We define both synchronous STREAMS and sockfs direct-access * mode for UDP module instance, because it is autopushed on * top of /dev/ip for the sockets case. */ -#define INET_MODMTFLAGS (D_MP|D_SYNCSTR|_D_DIRECT) +#define INET_DEVMTFLAGS (D_MP|D_SYNCSTR|_D_DIRECT) #include "../inetddi.c" int _init(void) { - INET_BECOME_IP(); - /* - * device initialization is done in udpddi.c:_init() - * i.e. it is assumed it is called first + * device initialization happens when the actual code containing + * module (/kernel/drv/ip) is loaded, and driven from ip_ddi_init() */ return (mod_install(&modlinkage)); } |