Solaris 10 GA and 64 bit Pentium Processor. Device Driver Problem

We have a Dell Poweredge SC420 with 3.4 GHz Pentium 4 (EMT64)
it also has 300Gb SCSI disk and 2 Gb Ram.
By default this machine tried to boot with the 64 bit kernel then could not load the CADP driver (SCSI CARD). We forced the Kernel to 32 bit by changing the BOOT_FILE from /kernel/AMD64/unix to /kernel/unix.
The machine is now booted but we are having problems with our PCI device. The device is a DMA Bus master and works fine on another SC420 which has a 2.8GHz Non-64 bit processor running the same release of Solaris. The device driver fails in strategy when we try to bind the dma buffer,(ddi_dma_buf_bind_handle) returning DDI_DMA_TOOBIG when the cookie count is > 1.
The machine appears to function apart from our device although we have suffered some kernel panics. We cannot ascertain if other devices are performing DMA successfully but must assume that they are.
Anybody got any ideas, Has anyone else got this processor working?

My bad. The memory per guest domain is 1GB. Se the Section 1 (NEW) - Hardware http://wikis.sun.com/display/SolarisLogicalDomains/LDoms%20Community%20Cookbook
Ignore the http://www.sun.com/software/solaris/specs.jsp

Similar Messages

  • I am unable to see, access, or navigate to, the far right side of iTunes 11.3.1.2 home screen on Dell Inspiron 3000 Windows 8.1 w/64-bit Pentium Processor.

    I am unable to see, access, or navigate to, the far right side of iTunes 11.3.1.2 home screen on Dell Inspiron 3000 Windows 8.1 w/64-bit Pentium Processor.

    Try dragging the window away from its location, resizing it, then maximizing it.  There's been a bug since iTunes 11 that doesn't always size the window correctly if set to run maximized automatically (which I've notice most particularly on dual-screen systems).

  • Acrobat Pro XI and 64 bit Win 8.1 installation problem

    When I try to install Acrobat Pro XI on my 64 bit Win 8.1 system it's not able to find some files.
    For example:  Xtras\AdobePDF\Amd64Vista
    If I skip that file, and the others, it says "Installation Failed". If I try to run it I get error 16.
    Any suggestions?
    Thanks,
    Dean

    I would run http://labs.adobe.com/downloads/acrobatcleaner.html and delete any Acrobat folders that have been created, then try again. Be sure to log in as the administrator and disable anti-virus when you have problems like this.

  • Makefile for building 32 and 64 bit versions of a driver/app

    Does anyone have good example Makefile that can build both a 32bit and 64bit version on device driver and userspace programs? I'm using gcc and gmake to build a streams module and some user space utilities for both 32 and 64 bit x86 and Sparc architectures. I currently have a bunch of taget specific make files, but I know there must be a better more elegant way of doing this. Ideally I would like to build both the 32 and 64 bit versions for the running architecture with the same make command. I don't need to cross compile (ie. build sparc on x86 ).

    Yes, with Creative Cloud you will have both 32 and 64 bit versions installed. 32 bit is useful in cases when you have a plugin that only supports 32 bit, not 64 bit.
    You might check below forum discussion as well.
    http://forums.adobe.com/message/4737722

  • Little bit of thread and little bit of instant messenger design problem

    OK! i have a small problem here, i am planning on making a instant messenger server and client, not compatible with any out there(as of yet) and not using any stansard protocols out there, just something i made on my own. ok now the problem i am trying to figure out is....i have a "Messaging Server" as the name suggests it sends messages from one client to the other, how it is setup is, client connects to this server, the server accepts and creates a new thread for this client and adds a message listener to this client handler thread. as and when the server creates this thread for the client, it puts it in a vector which is keeping track of every client connected to this server. so now when the client sends a message to another client, basically it goes through this server, the thread upon receiving this message, fires a method of the listener. this method takes the message, finds out who it is going to(therefore the userid) and seaches the threads vector to find the appropriate thread and then just creats another striped down message out of the received message and calls a method in that thread to send this newly created message and hence the message should be sent.(i am speculating, i still have not created this)
    so the problem ia m logically facing is...at what point of time who is taking the load, what i mean by that is, when the thread receives the message, ofcourse it is this thread which is working is taking the load, but when the listener fucntion is fired which thread is handlign the call is it the client handler thread which fired the method or the messaging server thread which creates these threads?? now once that is solved, who(which thread) is doing the work when i call the fucntion in the other thread which i found aftre searching the vector. i mean i am thinking like this cuz i am not much in sink with the way threads work. i am also trying to figure out this to find out the load the server or the threads will be having.
    algo example:
    class messageServer
         vector currentWorkingThreads;
         messageListener listener;
         main()
              listener = new messageListener(); //should it be here or the other place i am mentioning below
              while(true)
                   clientHandler = socket.accept();
                   listener = new messageListener(); //should it be here or the other place i am mentioning above
                   //create a thread and add this thread object to the vector
                   thread.addLisenter(listener);
    class messageServerThread
         string userid;
         messageListener lis;
         run()
              object obj = in.readObject();
              lis.sendMessage(obj);
         sendMessage(obj)
              out.writeObject(obj);
              out.flush;
    class messageListener
         sendMessage(msSendMessage msg)
              //find the appropriate user thread
              loop(currentWorkingThread.next())
                   messageServerThread msgThread = (messageServerThread)currentWorkingThread.element();
                   if(msg.userid == msgThread.userid)
                        msReceiveMessage rcvMsg = msg.strip(); //dosent matter what this does, it just strips the unwanted info and returns the type msReceiveMessage
                        msgThread.sendMessage(rcvMsg);
    and if this is something out of the line, or not a good way of doing it, can someone help me with the design it would be gr8.
    thanx a lot
    -Ankur
    help would be greatly appreciated.
    [email protected]

    other, how it is setup is, client connects to this
    server, the server accepts and creates a new thread
    for this client and adds a message listener to this
    client handler thread. as and when the server creates
    this thread for the client, it puts it in a vector
    which is keeping track of every client connected to
    this server.ok so far.
    so now when the client sends a message to
    another client, basically it goes through this server,
    the thread upon receiving this message, fires a method
    of the listener. this method takes the message, finds
    out who it is going to(therefore the userid) and
    seaches the threads vector to find the appropriate
    thread and then just creats another striped down
    message out of the received message and calls a method
    in that thread to send this newly created message andhere you seem to confuse the thread instance and the thread of execution. the thread invoking this method is still the event handling thread (i.e. the receiver thread of the socket). you do not need threads for delivering - this can be done by the receiving sockets' event handling threads. disadvantage: if processing of the message takes significant time then the socket is blocked and cannot process another message.
    solution: put the message in an event queue which is processed by one or more threads. (see my example i e-mailed you)
    robert
    hence the message should be sent.(i am speculating, i
    still have not created this)
    so the problem ia m logically facing is...at what
    point of time who is taking the load, what i mean by
    that is, when the thread receives the message,
    ofcourse it is this thread which is working is taking
    the load, but when the listener fucntion is fired
    which thread is handlign the call is it the client
    handler thread which fired the method or the messaging
    server thread which creates these threads?? now once
    that is solved, who(which thread) is doing the work
    when i call the fucntion in the other thread which i
    found aftre searching the vector. i mean i am thinking
    like this cuz i am not much in sink with the way
    threads work. i am also trying to figure out this to
    find out the load the server or the threads will be
    having.
    algo example:
    class messageServer
    vector currentWorkingThreads;
    messageListener listener;
    main()
    listener = new messageListener(); //should it be
    e here or the other place i am mentioning below
    while(true)
    clientHandler = socket.accept();
    listener = new messageListener(); //should it be
    be here or the other place i am mentioning above
    //create a thread and add this thread object to the
    he vector
    thread.addLisenter(listener);
    class messageServerThread
    string userid;
    messageListener lis;
    run()
    object obj = in.readObject();
    lis.sendMessage(obj);
    sendMessage(obj)
    out.writeObject(obj);
    out.flush;
    class messageListener
    sendMessage(msSendMessage msg)
    //find the appropriate user thread
    loop(currentWorkingThread.next())
    messageServerThread msgThread =
    =
    (messageServerThread)currentWorkingThread.element();
    if(msg.userid == msgThread.userid)
    msReceiveMessage rcvMsg = msg.strip(); //dosent
    ent matter what this does, it just strips the unwanted
    info and returns the type msReceiveMessage
    msgThread.sendMessage(rcvMsg);
    and if this is something out of the line, or not a
    good way of doing it, can someone help me with the
    design it would be gr8.
    thanx a lot
    -Ankur
    help would be greatly appreciated.
    [email protected]

  • System is very fragile and has trouble booting. Hard Drive Problem?

    Im having a problem with my Intel iMac which I can't solve and it really annoying me. As of lately my mac has been crashing, a lot. I am running Snow Leopard 10.6.2 on my 2008 24" iMac.
    In the order that I remember them happening, here are the symptoms:
    1. Applications would not start, from the dock to from spotlight.
    2. Pressing OptionCommandEscape showed no applications in the Force Quit dialogue.
    3. Rebooting solved the problems for a while.
    4. Starting the Disk Utility in OS X will trigger 1.
    5. My fiancees account will not log in, it either freezes on the wallpaper or kicks me back to the login screen. Making the keyboard not work to type in my password on my account.
    6. Rebooting the machine now often results in booting to a folder with a ? (question mark) on it.
    7. Most recently I lost the drive completely and could not boot into anything.
    Here is what i have done to try fix it.
    A. I have ran the repair disk in disk utility by booting from the install CD. However now (see 7.) I cannot even see the drive in the utility to try again.
    B. I booted with Command + s to enable the console and typed /sbin/fsck -sy a few times
    C. Holding Option while booting will NOT show my HDD only the CD
    D. I reset the PRAM by holding CommandOption+PR during boot. This doesnt seem to have done anything.
    E. to resolve 7. I pulled the power cord out for 30 mins. Then it booted.... weird
    The machine overall feels very fragile and I cannot do anything with it really and its amazing if it even boots up. What are my options? The only thing I have not tried is a full reinstall of OS X. However it feels like more of a hardware issue, will this fix it? I'm not sure.
    Thank you for looking and any suggestions are welcome.
    Cheers.
    Andrew
    Message was edited by: Jamsen

    First, make sure your user data is backed up.
    Instead of just unplugging it, use the reset SMC procedure
    http://support.apple.com/kb/HT3964
    which is unplugging the iMac and reconnecting using a precise procedure. You should disconnect ALL cables when you do this. If you have been connecting the power cord to a power strip, connect it directly to a wall outlet for this test. Power up with nothing connected, except the power cord. If it does start up from the hard drive, connect only your keyboard/mouse and use it that way, doing the things that caused problems. Any improvement?
    If not, the next thing you should try, since you have already done good troubleshooting, is probably to erase the hard drive and reinstall the software. There is a way to do this and give the hard drive a good test, so you can post back if you want more info.

  • Slow and Incomplete Importing- iTunes or optical drive problem?

    My computer is importing some music from cd's, but not everything.. It just took 30 minutes to import 15 songs and then I realized it didn't even import every song, or just 2-3 seconds of a few.
    And, a cd will play songs beautifully with a cd player, but then have static- or not play at all on my laptop.
    I also tried using a cleaning disc, and it didn't seem to help. But it is a cheap one.. perhaps a better one would work?
    This happened the same day after just updating iTunes..
    Waaa.... Any thoughts? Thanks.

    Eureka (I think!). This morning the file-name length problem suddenly hit me. So I radically shortened the main name, checked that the names of subfolders were short and didn't have any undesirable characters in them and burnt another CD, just dragging the stuff into Toast — and it behaves perfectly. Whether any random factors were involved in this miracle cure I cannot tell until and unless the problem recurs with another collection of photos, but I on the whole think not.
    There are puzzles, though: as I understand it, systems and applications (in this case OS X, Toast and Pioneer) limit file-names either to 31 or to 255 characters. My original name had 102 characters (less than 255, though more than 31), but my new name has 49 characters — still more than 31. And why did neither Toast nor the Pioneer drive put up a 'File-name too long' warning as soon as I tried to burn with the old, long name?
    I wonder if anyone has any thoughts about this? In the meantime, though, I can now get on with life.

  • Solaris 8 x86 and 10 x86 differences

    I have a device driver that works on Solaris 8 x86. I installed this same device driver on a box with Solaris 10 x86. Under Solaris 10 x86 I get a message "WARNING: minor name <tec
    _0> is not compatible network driver name <tec>". Also, opening the device under Solaris 10 x86 will cause the OS to quit responding. Where can I find a list of differences between Solaris 8 x86 and Solaris 10 x86?
    Thanks.
    David

    Another way to install Matrox G550 is to Install AcceleratedX from www.xig.com
    It supports a lot of graphic card and it also supports hardware acceleration for OpenGL
    BUt obviously its not free :(

  • Installation steps for 64 and 32 bit on same machine

    I'm running Windows Server 2008 R2 64 bit. All my webapps are using 32 bit mode.
    I want to install both Oracle 10G 64 and 32 bit on the same machine. Which version should i install first?
    64 bit or 32 bit first?
    Thanks..

    Why do you want to install both Oracle 32-bit and 64-bit? Oracle 32-bit client can communicate with a 64-bit database and vice versa.
    Also installing both the 32-bit and 64-bit may result in legal problems when your site is audited by Oracle.
    Sybrand Bakker
    Senior Oracle DBA

  • Both itunes and my computer do not recognize my ipod classic, have had this before and reinstalled the device driver when asked to do so. However now it doesn't, how do i get this done?

    Neither Itunes nor my computer recognize my Ipod classic. Have had this once before and when asked to reinstall device driver, did that and problem solved. However now I do not get this message, so don't know how to reinstall.

    Try Turning off the Windows Firewall on your PC.

  • NI device driver locations for upgrading labview to 64-bit

    There is a section in the NI LabVIEW 2012 SPI (64-bit) download where it prompts you for the location of the NI Device Drivers.  Unfortunately, I cannot get a hold of the original CDs for a while, so I cannot see where they default to.  Does anyone know where these drivers default to?  Alternatively, what should I search for if I want to find these device drivers?
    Attachments:
    device driver problem search.png ‏247 KB

    Hi leejesm,
    You can find device drivers at this link.

  • Multi processor Solaris 2.6 and mutex locks

    hi,
    is anyone aware of any documented issues with Solaris 2.6 running
    on dual-SPARC processors (multi-processor environment) where the
    programs using "mutex locks" (multi-threaded applications), require
    some special handling, in terms of compiling and linking, to some
    special libraries.
    as far as i remember, in some OS book, maybe Peterson's, it was said
    that the mechanism for implementing mutex-locks on multi-processor
    systems is to use low-level spin-locks. this brings down performance
    on a single-processor system, making the processor doing busy-wait,
    but this happens to be the only way of mutex-locking in a multi-processor
    system. if this is so, then where is such behaviour documented in case
    of Solaris 2.6.
    i have had problems with my applications crashing (rathing hanging up)
    in a vfork() on such a system, but same application works fine, with
    100% reproducability, on a single-processor system.
    thanks for any inputs or suggestions and/or information.
    regards,
    banibrata dutta

    I am also facing similar problem. Application which written using Mulit-Threaded using Posix Mutexes. When i run on SINGLE processor manchine, i.e.
    SunOS sund4 5.7 Generic_106541-11 sun4u sparc SUNW,Ultra-5_10
    It works perfectly.
    But when try to run on dual processor machine, i.e.
    SunOS sund2 5.7 Generic_106541-11 sun4u sparc SUNW,Ultra-250
    It is blocking in the one of mutexes.
    Please inform us what is problem. Mr. B. Datta, you comes to know
    any channel, please inform me also at [email protected]
    Thanx & regards,
    -venkat

  • It´s thrue that there´s a MB that supports 64 bit and 32 bit processors?

    hi.. i have an amd 64 bit  but i don´t like it so much because there are no programs to use it well... so i´m thinking to change myself to an intel P4 but i work with graphics and i don´t know what to do...
    ... a friend told me that there is a motherboard that supports bouth 64 bit and 32 bit processor...
    can you confirm this?
    if you don´t, please help me..!!
    any solution is well recived...
    DC

    Although someone mentioned about the 865PE Neo3-F which maybe one but no one can confirm this as none of the manufacturers has brought it up yet but the fact that Prescott moving on to 64bit may be possible.
    http://www.xbitlabs.com/news/cpu/display/20031027151409.html
    http://www.pcworld.com/news/article/0,aid,116136,00.asp
    http://anandtech.com/cpuchipsets/showdoc.html?i=1956

  • Solaris V10 -32 bit and 64 bit

    Hi All,
    I want to know in detail the differences between Solaris 32-bit and 64-bit w.r.t.configuration,networking protocols supported,security and functioning.
    Thanks In Anticipation,
    GM

    www.sun.com > Products&Services > Software >
    Operating Systems ...............................
    You can find answers to any and all of your questions !!!!!

  • Intel(R) Atom(TM)/Celeron(R)/Pentium(R) Processor need driver for Windows 10

    After upgrade to Windows 10. This device drive does not work. I went to the HP driver download site and down loaded and installed  <  Intel Trusted Execution Engine Interface (TXE) Driver for the supported notebook models running a supported operating system. The Intel Trusted Execution Engine Interface enables the Secure Boot and provides services required for platform security features such as Intel Platform Trust Technology (Intel PPT). File name:  sp69602.exe
    Release details
    Released: Nov 21, 2014
    Version 1.20 Rev.A  >  However it still does not work. Need Windows 10 , 64bit  Driver. HP  "sp69602.exe"  Driver package does not work. Product Name: HP 15-R011DX
    Operating System: Microsoft Windows 10 pro (64-bit)
    Dear Sir,
    In my HP notebook pc in Device manager,, other devices need to insatall a driver,, that hardware id is :
    ACPI\VEN_INT&DEV_33BD&REV_0002
    ACPI\VEN_INT&DEV_33BD
    ACPI\INT33BD
    *INT33BD
    i think that devices is Intel(R) Atom(TM)/Celeron(R)/Pentium(R) Processor MBI Device - 33BD and Intel(R) Atom(TM)/Celeron(R)/Pentium(R) Processor Trusted Execution Engine Interface.
    but how to download and install this drivers.. please give a download link to install these drivers..
    Thanks.. 

    Hi  ,
    Thank you for visiting the HP Forums! A great place where you can find solutions for your issues, with help from the community!
    I came across your post about the Notebook, and wanted to assist you! I have looked into your issue about your  HP 15-r011dx Notebook and issues with the Intel(R) Atom(TM)/Celeron(R)/Pentium(R) Processor MBI Device driver.
    Here is a link to the HP Support Assistant if you need it. Just download and run the application and it will help with the software and drivers on your system  that need updating. To install Microsoft.NET Framework 3.5, you have to go to the control panel>programs>turn Windows Features on/off and check the box to install  Microsoft.NET Framework 3.5 which is not automatically included in Windows 8.1. What happens if you right click on the driver and select update? Have you also tried to rollback the driver? Please let me know. Thanks.

Maybe you are looking for

  • Help please with Page Numbers & Facing Pages in Book Layout

    I am having some dramas with my book project which is 168 pages including cover.  I have created 22 different documents for the chapters and other pages.  I had everything in a book and have been able to create a PDF, but then I needed to remove the

  • Why are all methods virtual???

    class Base      public Base()           System.out.println("Calling f() from base class ...");           f();           return;      public void f()           System.out.println("Base class function called!");           return; class Derived extends

  • External drive is suddenly read-only, yet is formatted for Mac

    I've had a 1TB external hard drive for the last year and never had a problem with it until now. Suddenly, it is showing as read-only, however, it's formatted for Mac. How am I able to fix this? Do I have to re-format it?

  • Question Demo tenant S&OP

    One of my parnters would like to have access to a demo tenant for S&OP (on demand). How can I arrange this? Thank you in advance. Kind Regards, Djoekie Klein

  • My OS X (10.9.1) won't recognize my 2nd gen iPod shuffle anymore :(

    Ever since I got a new desktop Mac 10.9, my 2nd gen iPod shuffle has only shown up occasionally when I plug it in...apparently at random.  I've tried restarting with it plugged, plugging it while on, plugging it while off-no variables seem to make an