NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: kern/52630: Missing kernel module dependencies in cgd module (pull-up request)
The following reply was made to PR kern/52630; it has been noted by GNATS.
From: Paul Goyette <paul%whooppee.com@localhost>
To: gnats-bugs%netbsd.org@localhost
Cc:
Subject: Re: kern/52630: Missing kernel module dependencies in cgd module
(pull-up request)
Date: Fri, 20 Oct 2017 16:39:32 +0800 (+08)
Thanks for the problem report.
I have identified the commit that fixed this problem in -current, and have
requested a pull-up for the netbsd-7, netbsd-7-0, and netbsd-7-1 branches.
Once the pull-ups are done, the fix should be included in any new netbsd-7
release, ie netbsd-7.2, netbsd-7.0.2, and/or netbsd-7.1.1.
If you need to get the fix for netbsd-7 sooner, I'm afraid you'll need to
rebuild your own netbsd-7 kernel and modules.
The relevant change is:
--- src/sys/dev/cgd.c 2016/12/11 00:20:49 1.112
+++ src/sys/dev/cgd.c 2016/12/22 20:57:33 1.113
@@ -1,4 +1,4 @@
-/* $NetBSD: cgd.c,v 1.112 2016/12/11 00:20:49 alnsn Exp $ */
+/* $NetBSD: cgd.c,v 1.113 2016/12/22 20:57:33 kamil Exp $ */
/*-
* Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.112 2016/12/11 00:20:49 alnsn Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cgd.c,v 1.113 2016/12/22 20:57:33 kamil Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -1165,7 +1165,7 @@ selftest(void)
printf("done\n");
}
-MODULE(MODULE_CLASS_DRIVER, cgd, "dk_subr");
+MODULE(MODULE_CLASS_DRIVER, cgd, "blowfish,des,dk_subr");
#ifdef _MODULE
CFDRIVER_DECL(cgd, DV_DISK, NULL);
+------------------+--------------------------+----------------------------+
| Paul Goyette | PGP Key fingerprint: | E-mail addresses: |
| (Retired) | FA29 0E3B 35AF E8AE 6651 | paul at whooppee dot com |
| Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd dot org |
+------------------+--------------------------+----------------------------+
Home |
Main Index |
Thread Index |
Old Index