NetBSD-Bugs archive

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

Re: install/50076: Error on boot NetBSD-7.0_RC1-i386 on Toshiba Tecra 550CDT



The following reply was made to PR port-i386/50076; it has been noted by GNATS.

From: Martin Husemann <martin%duskware.de@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: 
Subject: Re: install/50076: Error on boot NetBSD-7.0_RC1-i386 on Toshiba Tecra 550CDT
Date: Thu, 23 Jul 2015 08:19:57 +0200

 For easy access in gnats: it is a kernel fault at cfparent_match, called
 from config_found() at the end of oboe_attach().
 
 The bug is pretty obvious in the source:
 
 	sc->sc_child = config_found((void *)sc, &ia, ir_print);
 
 Can you build your own kernel for testing? If so, try the patch
 below - if not, let me know.
 
 Martin
 
 Index: oboe.c
 ===================================================================
 RCS file: /cvsroot/src/sys/dev/pci/oboe.c,v
 retrieving revision 1.42
 diff -u -r1.42 oboe.c
 --- oboe.c	29 Mar 2014 19:28:25 -0000	1.42
 +++ oboe.c	23 Jul 2015 06:18:38 -0000
 @@ -238,7 +238,7 @@
  
  	oboe_alloc_taskfile(sc);
  
 -	sc->sc_child = config_found((void *)sc, &ia, ir_print);
 +	sc->sc_child = config_found(self, &ia, ir_print);
  }
  
  static int
 


Home | Main Index | Thread Index | Old Index