Date: Thu, 29 Dec 2005 13:46:33 -0500 From: John Baldwin <jhb@freebsd.org> To: freebsd-current@freebsd.org Cc: Alexander Leidinger <Alexander@leidinger.net> Subject: Re: Can someone with MOD_LOAD-foo please look into PR 82026? Message-ID: <200512291346.34428.jhb@freebsd.org> In-Reply-To: <20051229180155.178e4be5@Magellan.Leidinger.net> References: <20051229180155.178e4be5@Magellan.Leidinger.net>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thursday 29 December 2005 12:01 pm, Alexander Leidinger wrote:
> Hi,
>
> the problem is the "MOD_LOAD (ibcs2, 0xc1700e90, 0) error 45" message
> on load.
>
> PRs 73978, 73663 and 89211 talk about the same issue.
>
> Bye,
> Alexander.
Well, the "busy" PR database won't let me look at your PR over the web, but
73798 can be fixed with this simple patch:
Index: ibcs2_sysvec.c
===================================================================
RCS file: /usr/cvs/src/sys/i386/ibcs2/ibcs2_sysvec.c,v
retrieving revision 1.30
diff -u -r1.30 ibcs2_sysvec.c
--- ibcs2_sysvec.c 29 Jan 2005 23:11:58 -0000 1.30
+++ ibcs2_sysvec.c 29 Dec 2005 18:45:32 -0000
@@ -105,6 +105,8 @@
int rval = 0;
switch(type) {
+ case MOD_LOAD:
+ break;
case MOD_UNLOAD:
/* if this was an ELF module we'd use elf_brand_inuse()... */
sx_slock(&allproc_lock);
--
John Baldwin <jhb@FreeBSD.org> <>< http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve" = http://www.FreeBSD.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200512291346.34428.jhb>
