svn commit: r366961 - head/sys/fs/cuse

Hans Petter Selasky hselasky at FreeBSD.org
Fri Oct 23 08:44:54 UTC 2020


Author: hselasky
Date: Fri Oct 23 08:44:53 2020
New Revision: 366961
URL: https://svnweb.freebsd.org/changeset/base/366961

Log:
  Fix for loading cuse.ko via rc.d . Make sure we declare the cuse(3)
  module by name and not only by the version information, so that
  "kldstat -q -m cuse" works.
  
  Found by:		Goran Mekic <meka at tilda.center>
  MFC after:		1 week
  Sponsored by:		Mellanox Technologies // NVIDIA Networking

Modified:
  head/sys/fs/cuse/cuse.c

Modified: head/sys/fs/cuse/cuse.c
==============================================================================
--- head/sys/fs/cuse/cuse.c	Fri Oct 23 06:24:38 2020	(r366960)
+++ head/sys/fs/cuse/cuse.c	Fri Oct 23 08:44:53 2020	(r366961)
@@ -64,6 +64,24 @@
 #include <fs/cuse/cuse_defs.h>
 #include <fs/cuse/cuse_ioctl.h>
 
+static int
+cuse_modevent(module_t mod, int type, void *data)
+{
+	switch (type) {
+	case MOD_LOAD:
+	case MOD_UNLOAD:
+		return (0);
+	default:
+		return (EOPNOTSUPP);
+	}
+}
+
+static moduledata_t cuse_mod = {
+	.name = "cuse",
+	.evhand = &cuse_modevent,
+};
+
+DECLARE_MODULE(cuse, cuse_mod, SI_SUB_DEVFS, SI_ORDER_FIRST);
 MODULE_VERSION(cuse, 1);
 
 /*


More information about the svn-src-all mailing list