Sponsored Content
Full Discussion: Startup error
Operating Systems Solaris Startup error Post 302361469 by sachin.bedraman on Tuesday 13th of October 2009 09:14:37 AM
Old 10-13-2009
Question Startup error

Hi,
Greetings to all Smilie,
I am using Solaris 5.10 on a HP xw6600 workstation with 2 Intel Xeon processors.
System works fine. But during startup the below WARNINGS occur.

WARNING:CPU 1 feature mismatch
WARNING:There will be no MCA support on chip 0 core 0 strand 2(cmd_hdl_create returned null)

WARNING:CPU 3 feature mismatch
WARNING:There will be no MCA support on chip 1 core 0 strand 2(cmd_hdl_create returned null)

WARNING:CPU 5 feature mismatch
WARNING:There will be no MCA support on chip 0 core 0 strand 3(cmd_hdl_create returned null)

WARNING:CPU 7 feature mismatch
WARNING:There will be no MCA support on chip 1 core 0 strand 2(cmd_hdl_create returned null)


Can any one help me to eliminate this error.. Smilie
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Startup File

I am running Mandrake 8.1 and am wondering what file Linux uses to start services. Such as MySQLD and Apache. I need to add a program to this startup file so that it loads when linux loads. Thanks Gregg (3 Replies)
Discussion started by: gdboling
3 Replies

2. UNIX for Dummies Questions & Answers

lynx startup

how to add an GUI application in a lynx 9.0 server start up. replies appreciated. raguram R (4 Replies)
Discussion started by: raguramtgr
4 Replies

3. Solaris

Startup error: The X-server can not be started on display :0...

Earlier today SPARCBOOK 5000 was working, but was asked to upgrade an application on it. 1. uninstalled application 2. loaded latest solaris 8 recommended cluster (downloaded it yesterday). 3. reboot machine after patch update On reboot all looks OK upto the point it attempts to run... (9 Replies)
Discussion started by: devonthomas384@
9 Replies

4. AIX

Not executing during startup

I have a command in my iniitab as follows: dsmc:2a:once:/usr/tivoli/tsm/client/ba/bin/dsmc sched > /dev/null 2>&1 But the command doe not appear to execute during a system boot. Not sure why. I am running AIX 5.1 Thanks for the help Mike (2 Replies)
Discussion started by: mhenryj
2 Replies

5. HP-UX

Startup scripts

Hi all We have HP UX 11.23 installed on 4 RISC servers (2 oracle databases, 2 Oracle App Servers) , we are in a construction period , so the power failure may happen more than once a day. I need to learn how to create an automatic startup services as in Windows, if we know that the services... (5 Replies)
Discussion started by: kafaween
5 Replies

6. Solaris

Mountall error at system startup

Hi I have SVM on my Solaris 10 5/08 SPARC with the following configuration: d1: Mirror Submirror 0: d11 State: Okay Submirror 1: d12 State: Okay Pass: 1 Read option: roundrobin (default) Write option: parallel (default) Size:... (2 Replies)
Discussion started by: Sapfeer
2 Replies

7. Shell Programming and Scripting

Apache Startup Fails with PHP Error

Great tins massive! Im Manqoba from Midrand, South Africa... I have installed Apache and PHP on a solaris 9 box, using the packages below: apache-2.2.14-sol9-sparc-local php-5.2.13-sol9-sparc-local After installing the packages I edited my httpd.conf file, to load the php5 module when... (10 Replies)
Discussion started by: Macarena S.A
10 Replies

8. Shell Programming and Scripting

Apache tomcat startup script not booting at startup.

I copied the script from an AskUbuntu post - #!/bin/bash ### BEGIN INIT INFO # Provides: tomcat7 # Required-Start: $network # Required-Stop: $network # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start/Stop Tomcat server ### END INIT INFO ... (14 Replies)
Discussion started by: Hijanoqu
14 Replies

9. Shell Programming and Scripting

Startup script

I can't quite find a clear answer on how to properly write a start up script. Does anybody have any ideas?? (3 Replies)
Discussion started by: Huitzilopochtli
3 Replies
MCA(9)							   BSD Kernel Developer's Manual						    MCA(9)

NAME
MCA, mca_intr_establish, mca_intr_disestablish, mca_intr_evcnt, mca_conf_read, mca_conf_write -- MicroChannel Architecture bus SYNOPSIS
#include <sys/bus.h> #include <dev/mca/mcavar.h> #include <dev/mca/mcadevs.h> void * mca_intr_establish(mca_chipset_tag_t mc, mca_intr_handle_t hdl, int level, int (*handler)(void *), void *arg); void mca_intr_disestablish(mca_chipset_tag_t mc, mca_intr_handle_t hdl); const struct evcnt * mca_intr_evcnt(mca_chipset_tag_t mc, mca_intr_handle_t hdl); int mca_conf_read(mca_chipset_tag_t mc, int slot, int reg); void mca_conf_write(mca_chipset_tag_t mc, int slot, int reg, int data); DESCRIPTION
The MCA device provides support for IBM's MicroChannel Architecture bus found on IBM PS/2 systems and selected workstations. It was designed as a replacement bus for the ISA bus found on IBM's older machines. However, the bus specifications were only available under license, so MCA did not achieve widespread acceptance in the industry. Being a replacement for the ISA bus, the MCA bus does share some similar aspects with the ISA bus. Some MCA devices can be detected via the usual ISA-style probing. However, most device detection is done through the Programmable Option Select (POS) registers. These registers provide a window into a device to determine device-specific properties and configuration. The configuration of devices and their POS regis- ters is performed using IBM's system configuration software. The MCA bus uses level-triggered interrupts while the ISA bus uses edge-triggered interrupts. Level triggered interrupts have the advantage that they can be shared among multiple device. Therefore, most MCA-specific devices should be coded with shared interrupts in mind. DATA TYPES
Drivers for devices attached to the MCA bus will make use of the following data types: mca_chipset_tag_t Chipset tag for the MCA bus. mca_intr_handle_t The opaque handle describing an established interrupt handler. struct mca_attach_args A structure use to inform the driver of MCA bus properties. It contains the following members: bus_space_tag_t ma_iot; /* MCA I/O space tag */ bus_space_tag_t ma_memt; /* MCA mem space tag */ bus_dma_tag_t ma_dmat; /* MCA DMA tag */ int ma_slot; /* MCA slot number */ int ma_pos[8]; /* MCA POS values */ int ma_id; /* MCA device */ FUNCTIONS
mca_intr_establish(mc, hdl, level, handler, arg) Establish a MCA interrupt handler on the MCA bus specified by mc for the interrupt described completely by hdl. The priority of the interrupt is specified by level. When the interrupt occurs the function handler is called with argument arg. mca_intr_disestablish(mc, hdl) Dis-establish the interrupt handler on the MCA bus specified by mc for the interrupt described completely hdl. mca_intr_evcnt(mc, hdl) Do interrupt event counting on the MCA bus specified by mc for the event described completely by hdl. mca_conf_read(mc, slot, reg) Read the POS register reg for the device in slot slot on the MCA bus specified by mc. mca_conf_write(mc, slot, reg, data) Write data data to the POS register reg for the device in slot slot on the MCA bus specified by mc. AUTOCONFIGURATION
The MCA bus is a direct-connection bus. During autoconfiguration, the parent specifies the MCA device ID for the found device in the ma_id member of the mca_attach_args structure. Drivers should match on the device ID. Device capabilities and configuration information should be read from device POS registers using mca_conf_read(). Some important configuration information found in the POS registers include the I/O base address, memory base address and interrupt number. The location of these configurable options with the POS registers are device spe- cific. DMA SUPPORT
The MCA bus supports 32-bit, bidirectional DMA transfers. Currently, no machine-independent support for MCA DMA is available. CODE REFERENCES
The MCA subsystem itself is implemented within the file sys/dev/mca/mca_subr.c. Machine-dependent portions can be found in sys/arch/<arch>/mca/mca_machdep.c. The database of known devices exists within the file sys/dev/mca/mcadevs_data.h and is generated automat- ically from the file sys/dev/mca/mcadevs. New vendor and product identifiers should be added to this file. The database can be regenerated using the Makefile sys/dev/mca/Makefile.mcadevs. A good source of information about MCA devices is IBM's system configuration disk. The disk contains .adf files which describe the location of device configuration options in the POS registers. SEE ALSO
mca(4), autoconf(9), bus_dma(9), bus_space(9), driver(9), isa(9) BUGS
The machine-independent MCA driver does not currently support DMA. MCA devices which require DMA operation currently access the DMA capabil- ities directly. BSD
October 7, 2001 BSD
All times are GMT -4. The time now is 04:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy