Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Now that the if_srt module has a chance of working (ie, it now



details:   https://anonhg.NetBSD.org/src/rev/df477c1ac86f
branches:  trunk
changeset: 449836:df477c1ac86f
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Tue Mar 26 00:36:14 2019 +0000

description:
Now that the if_srt module has a chance of working (ie, it now
actually attaches/detaches the cdevsw!), add the required srt
module to allow module autoload triggered by opening /dev/srtN

XXX As noted in the recent commit to if_srt.c, someone(tm) needs
XXX to create the /dev/srt* device nodes with major 179. :)

diffstat:

 distrib/sets/lists/modules/mi |   4 ++-
 sys/modules/Makefile          |   4 +-
 sys/modules/srt/Makefile      |   8 ++++++
 sys/modules/srt/srt.c         |  51 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 64 insertions(+), 3 deletions(-)

diffs (103 lines):

diff -r 201b567ace53 -r df477c1ac86f distrib/sets/lists/modules/mi
--- a/distrib/sets/lists/modules/mi     Tue Mar 26 00:23:32 2019 +0000
+++ b/distrib/sets/lists/modules/mi     Tue Mar 26 00:36:14 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.120 2019/03/24 11:20:26 pgoyette Exp $
+# $NetBSD: mi,v 1.121 2019/03/26 00:36:14 pgoyette Exp $
 #
 # Note: don't delete entries from here - mark them as "obsolete" instead.
 #
@@ -392,6 +392,8 @@
 ./@MODULEDIR@/spkr_synch                       base-obsolete           obsolete
 ./@MODULEDIR@/sppp_subr                                base-kernel-modules     kmod
 ./@MODULEDIR@/sppp_subr/sppp_subr.kmod         base-kernel-modules     kmod
+./@MODULEDIR@/srt                              base-kernel-modules     kmod
+./@MODULEDIR@/srt/srt.kmod                     base-kernel-modules     kmod
 ./@MODULEDIR@/suser                            base-kernel-modules     kmod
 ./@MODULEDIR@/suser/suser.kmod                 base-kernel-modules     kmod
 ./@MODULEDIR@/swcrypto                         base-kernel-modules     kmod
diff -r 201b567ace53 -r df477c1ac86f sys/modules/Makefile
--- a/sys/modules/Makefile      Tue Mar 26 00:23:32 2019 +0000
+++ b/sys/modules/Makefile      Tue Mar 26 00:36:14 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.220 2019/03/24 11:20:26 pgoyette Exp $
+#      $NetBSD: Makefile,v 1.221 2019/03/26 00:36:14 pgoyette Exp $
 
 .include <bsd.own.mk>
 
@@ -84,7 +84,7 @@
 SUBDIR+=       if_pppoe
 SUBDIR+=       if_sl
 SUBDIR+=       if_smsc
-SUBDIR+=       if_srt
+SUBDIR+=       if_srt srt
 SUBDIR+=       if_stf
 SUBDIR+=       if_strip
 SUBDIR+=       if_tap tap
diff -r 201b567ace53 -r df477c1ac86f sys/modules/srt/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/srt/Makefile  Tue Mar 26 00:36:14 2019 +0000
@@ -0,0 +1,8 @@
+# $NetBSD: Makefile,v 1.1 2019/03/26 00:36:14 pgoyette Exp $
+
+.include "../Makefile.inc"
+
+KMOD=          srt
+SRCS=          srt.c
+
+.include <bsd.kmodule.mk>
diff -r 201b567ace53 -r df477c1ac86f sys/modules/srt/srt.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/srt/srt.c     Tue Mar 26 00:36:14 2019 +0000
@@ -0,0 +1,51 @@
+/*     $NetBSD: srt.c,v 1.1 2019/03/26 00:36:14 pgoyette Exp $ */
+
+/*-
+ * Copyright (c) 2016 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Paul Goyette
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: srt.c,v 1.1 2019/03/26 00:36:14 pgoyette Exp $");
+
+#include <sys/errno.h>
+#include <sys/module.h>
+
+MODULE(MODULE_CLASS_DRIVER, srt, "if_srt");
+
+static int
+srt_modcmd(modcmd_t cmd, void *arg)  
+{
+
+       switch (cmd) {
+       case MODULE_CMD_INIT:
+       case MODULE_CMD_FINI:
+               return 0;
+       default:
+               return ENOTTY;
+       }
+}



Home | Main Index | Thread Index | Old Index