Gilles Gravier wrote > Jürgen Keil wrote: > > Gilles Gravier wrote > > > >> What's with the new warning about pcplusmp mod remove message? :) > >> > > > > This one? > > > > WARNING: pcplusmp: mod_remove_by_name failed 16 > > > > You get it on uniprocessor systems (uppc)... > > Any chance it can be just set and something that gets written to system > log, but not displayed on screen? Warnings for things that are more or > less normal only serve to confuse the user...
Well, yes, psm_install() in usr/src/uts/i86pc/os/mp_implfuncs.c could print the warning with a first character of "!" so that it goes only to the system log. 424 err = mod_remove_by_name(cswp->psw_infop->p_mach_idstring); 425 if (err) 426 cmn_err(CE_WARN, "%s: mod_remove_by_name failed %d", 427 &machstring[0], err); I think we get this message on uppc systems since the putback for 6714111 "Solaris needs to support the Intel IOMMU" The putback for this feature added a dependency on mach/pcplusmp to the rootnex kernel module, so that pcplusmp is forced into memory now on all systems. http://src.opensolaris.org/source/diff/onnv/onnv-gate/usr/src/uts/i86pc/io/rootnex.c?r2=%2Fonnv%2Fonnv-gate%2Fusr%2Fsrc%2Futs%2Fi86pc%2Fio%2Frootnex.c%407589&r1=%2Fonnv%2Fonnv-gate%2Fusr%2Fsrc%2Futs%2Fi86pc%2Fio%2Frootnex.c%407542 -- This message posted from opensolaris.org _______________________________________________ indiana-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/indiana-discuss
