InfiniBand Host Channel Adaptors on M-series and T-series on Solaris 10?

Hi,
I saw spec and implementation of Sun InfiniBand HCA's (PCIe) on Sun X-series servers running Solaris 10, but hasn't seen these InfiniBand HCA's on M-seris or T-series. Is it possible to use these InfiniBand HCA's on M- or T-series servers? Has any one used Sun or any other InfiniBand HCA's (PCIe) on Sun M-series or T-series running Solaris 10?
Thanks,
Ray

Hi,
The README for DAQmx 8.0 for Linux has some information on pthread:
Linking with the pthread Library
In C or C++, use care if your NI-DAQmx application links to the Linux pthread
library. It is recommended to link your application with the gcc -pthread flag
instead of linking directly with, for instance, -lpthread. Incorrect linking
can lead to segmentation faults when the NI-DAQmx libraries load. If, after
replacing -lpthread, you still get a segmentation fault when loading NI-DAQmx,
you must explicitly link the dl library (-ldl) as the first library in your
list.
Also, one of my colleagues suggested that you should be using fork as soon as possible before calling any NI API or 
else the child process could potentially die/segfault.
Please let me know if this helps.
Thanks,
Salvador Santolucito

Similar Messages

  • Virtualbox(PUEL) 3.1.6 Host-Only Adaptor connectivity problems

    Hi there! I'm a new Arch Linux user and i'm LOVING it ... I've hit one problem I can't seem to get Host-Only Adaptor networking working with VirtualBox (PUEL) with any virtual machines e.g. VM's can't communicate to anything Host machine, router etc, I've set static addresses for all my Vitual machines.
    (Host machine)
    /etc/conf.d/bridges
    # Settings for layer-2 bridges
    # For each bridge interface declared in INTERFACES (in rc.conf), declare
    # a bridge_${IF} variable that contains the real ethernet interfaces that
    # should be bridged togeether.
    # Then list the bridge interface name in the BRIDGE_INTERFACES array.
    # example:
    # in /etc/rc.conf:
    # eth0="eth0 up"
    # eth1="eth1 up"
    # br0="br0 192.168.0.2 netmask 255.255.255.0 up"
    # INTERFACES=(lo eth0 eth1 br0)
    # in /etc/conf.d/bridges
    bridge_br0="eth0 vbox0"
    BRIDGE_INTERFACES=(br0)
    #bridge_br0="eth0 eth1"
    #BRIDGE_INTERFACES=(br0)
    (Host Machine)
    /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="Australia/Melbourne"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(!snd-pcm-oss bridge vboxdrv vboxnetflt vboxnetadp)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="myhost"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    eth0="eth0 up"
    br0="dhcp" # Maybe you have some static configuration; change to fit
    INTERFACES=(eth0 br0)
    #Static IP example
    #eth0="eth0 192.168.1.200 netmask 255.255.255.0 broadcast 192.168.1.255"
    # eth0="dhcp"
    #INTERFACES=(eth0)
    gateway="default gw 192.168.1.254"
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.1.254"
    ROUTES=(gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng !network hal networkmanager openntpd dnsmasq netfs crond sshd alsa dbus gdm lp parport parport_pc cups)
    Guest Machine Slitaz
    /etc/network.conf
    Static ip = 192.168.1.180
    I need to use VirtualBox on an almost daily basis for work... I would highly appreciate you help so thanks in advance!

    Hi, I'm not sure I fully understand your issue.
    Are you telling VirtualBox don't allow you to add a Host-Only Adaptor via main menu File -> Net -> Add button? I once hit this problem and was lost some days because I come from the *buntu-land and all this configuration was nearly automatic there. If this is your problem you should first download and install the rigth AUR package, tha one working for me is virtualbox_bin now at latest version 3.1.8-1, you will need to install also virtualbox-additions. After you installed VirtualBox follow the instructions provided by packagers:
    IMPORTANT NOTES:
    - Run "vbox_build_module" as root every time your kernel is upgraded, to
      compile the module for the new kernel version.
    - Add your user to the vboxusers group:
         gpasswd -a USERNAME vboxusers
    - Add "vboxdrv" to the MODULES array in your "/etc/rc.conf"
    - Add "vboxnetflt" to MODULES if you want Host Interface networking.
    - Add "vboxnetadp" to MODULES if you want Host-Only networking.
    - If USB does not work for you out-of-the-box, add the following line
      to "/etc/fstab":
         none /proc/bus/usb usbfs auto,busgid=108,busmode=0775,devgid=108,devmode=0664 0 0
    Once you do that you'll be smoooooth 8-D

  • My weather channel app doesn't work and freezes my phone

    My weather channel app doesn't work and freezes my phone.  I've tried closing the app.  Also tried deleting and readding it.  All my other apps work.

    Try this:
    Make sure your iPhone is fully updated.
    Restart your iPhone
    Do NOT open the app, just delete it
    Reset your iPhone (hold down sleep/wake and home buttons simultaneously until you see an apple logo, then release the buttons)
    Readd the app
    Open the app and test.
    If that doesn't resolve the issue, then it may be an issue with the app itself and you might have to contact the app's developer.

  • HT4587 I was trying to change channels on my airport express and I hit "Forget" on the devices and now my computer can't locate the airport express device.  What do I do?

    My airport expresses are not showing up in my internet options.  I was trying to change channels between the airport utility and the airport expresses and they didn't reset properly.  I then hit "forget" on the options...now they are no longer visible.  It's a nightmare.  How do I get them back?

    There are three Airport resets, soft, hard and factory default.  It would probably be beneficial if you tried each one in sequence.  Actually, you could jump to the factory default reset if you don't mind reconfiguring from scratch.

  • Adapter Modules & split 997 channel reqd for splitting Edi and Acknowledgement

    Hi,
    I am using  PI 7.11 with B2B add-on installed.We will be using AS2 adapters ,as of now
    configured file adapters in place of it.
    This B2B  scenario does not consists of  Party because 1 sender and 1 receiver system is involved as of now.
    May be client provides identifiers details and include party.
    In my previous B2B scenario(PI 7.3) involving Seeburger , AS2 channel was configured with(image shown below)
    SeeClassifier,BIC, message splitter modules and Split997 channel  for splitting EDI PO and Functional Acknowledgement.
    What are the adapter modules that will be required in case of B2B add on (PI 7.11)and does it requires
    EDI separator channel for splitting EDI doc & Func Ack.What can be the other probable issues.
    How we will monitor the messages and Ack once its implemented end to end?
    Regards,
    Mayank Yadav

    Hey Mayank,
    Inbound Scenario configuration: (3 step)
    1) Sender AS2 (EDI messages) -----> EDI separator receiver (no mapping required here; EDI separator is used to split bulk EDI messages and configure acknowledgements (997) if required)
    2) EDI separator sender (with message type(eg.850),version and sender ID/receiver ID configuration; here X12convertor module is used to change raw edi into XML) ----> Idoc or any receiver channel (inbound)(here you have your actual mapping)
    (if 997 is configured as requested in the first step; then you need to handle the 997 generated by EDI separator)
    3) EDI separator sender (997 message type,version,reverse combination of sender ID,receiver ID) to Receiver AS2 ( no modules required pass through)
    Outbound Scenario configuration
    1) sender channel (say Idoc) to AS2 receiver (requires mapping)
    997 file can be sent back by partners (EDI 997 as acknowledgement)
    this will be taken care like any other inbound message) which can be then converted to SYSTAT IDOC or so to track the status of outbound message.
    B2B status tab in PI monitoring helps you track acknowledgements
    Hope this answers your question:
    What are the adapter modules that will be required in case of B2B add on (PI 7.11)and does it require
    EDI separator channel for splitting EDI doc & Func Ack.What can be the other probable issues.
    How we will monitor the messages and Ack once its implemented end to end?
    For detailed information on this; please refer Functional Acknowledgement (Inbound and Outbound FA 997)- for Beginners
    Regards,
    Pooja

  • Create failover cluster to host Windows 2012 DC, Exchange 2013 and SQL as VMs

    One of our clients has running Windows Essential 2012, SQL and exchange 2007 as VM on VMware for 4 years without major issue. However, the physical server is getting old and have some hardware issues recently. They have budgets to buy two Dell servers, EqualLogic
    SAN, Windows server 2012 Datacenter and Exchange 2013. Is it possible for them to create failover cluster to host Windows 2012 DC, Exchange 2013 and SQL as VMs?
    Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Troubleshooting on
    http://www.ChicagoTech.net
    How to Setup Windows, Network, VPN & Remote Access on
    http://www.howtonetworking.com

    We will move all VMs from VMware to Hyper-V. Thank you.
    Bob Lin, MCSE & CNE Networking, Internet, Routing, VPN Troubleshooting on <p><a href="http://www.chicagotech.net"><span style="color:#0033cc">http://www.ChicagoTech.net<br/> </span></a></p>
    How to Setup Windows, Network, VPN &amp; Remote Access on <p><a href="http://www.howtonetworking.com"><span style="color:#0033cc">http://www.howtonetworking.com<br/> </span></a></p>

  • Creating a time channel in the data portal and filling it with data - Is there a more efficient way than this?

    I currently have a requirement to create a time channel in the data portal and subsequently fill it with data. I've shown below how I am currently doing it:
    Time_Ch = ChnAlloc("Time channel", 271214           , 1      ,           , "Time"         ,1                  ,1)              'Allocate time channel
    For intLoop = 1 to 271214
      ChD(intLoop,Time_Ch(0)) = CurrDateTimeReal          'Create time value
    Next
    I understand that the function to create and allocate memory for the time channel is extremely quick. However the time to store data in the channel afterwards is going to be highly dependent on the length I have assigned to the Time_Ch. In my application the length of Time_Ch is variable but could easily be in the order of 271214 or higher. Under such circumstances the time taken to fill Time_Ch is quite considerable. I am wondering whether this is the most appropriate way of doing things or whether there is a more efficient way of creating a time channel and filling it.
    Thanks very much for any help.
    Regards
    Matthew

    Hi Matthew,
    You are correct that there is a more efficient way to do this.  I'm a little confused about your "CurrDateTimeReal" assignment-- is this a constant?  Most people want a Time channel that counts up linearly in seconds or fractions of a second over the duration of the measurement.  But that looks like you would assign the same time value to all the rows of the new Time channel.
    If you want to create a "normal" Time channel that increases at a constant rate, you can use the ChnGenTime() function:
    ReturnValue = ChnGenTime(TimeChannel, GenTimeUnit, GenTimeXBeg, GenTimeXEnd, GenTimeStep, GenTimeMode, GenTimeNo)
    If you really do want a Time channel filled with all the same values, you can use the ChnLinGen() function and simply set the GenXBegin and GenXEnd parameters to be the same value:
    ReturnValue = ChnLinGen(TimeChannel, GenXBegin, GenXEnd, XNo, [GenXUnitPreset])
     In both cases you can use the Time channel you've already created (which as you say executes quickly) and point the output of these functions to that Time channel by using the Group/Channel syntax of the Time channel you created for the first TimeChannel parameter in either of the above functions.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • How to adjust adjacent channel bandwidth to 30 kHz and leave primary at 1.23 MHz

    I would also like to level trigger on the RF input of my NI PXI-5660

    Take a look at the shipping example called "RFSA Adjacent Channel Power Application Example.vi". If you dig down several levels in the VI heirarchy, you will find "SML Adjacent Channel Power.vi". This is where the actual channel powers are calculated for the center, upper, and lower channel. You will see the simple arithmetic that calculates the frequency bands for each channel. Using this technique and the "SMT Power In Band.vi", you can calculate channel powers for any channels you want with any bandwidth.
    Regards,
    Brent R.
    Applications Engineer
    National Instruments

  • HT204088 I subscribed with Al Jazeera sport channel via their app in the App Store ..but I faced a problem in activating the subscribed channel, I did contact them and they requested me to contact you in order to refund the payment .. How can I refund my

    I subscribed with Al Jazeera sport channel via their app in the App Store ..but I faced a problem in activating the subscribed channel, I did contact them and they requested me to contact you in order to refund the payment .. How can I refund my money ???

    Apple - Support - iOS Apps - Contact Support

  • I have the old skool Monster car cable--i tune in the channel on the Monster cable and my old iPod plays. I bought the adapter for Lightning to accommodate the new iPod i just bought. But it won't play. ***?

    I have the old skool Monster car cable--i tune in the channel on the Monster cable and my old iPod plays. I bought the adapter for Lightning to accommodate the new iPod i just bought. But it won't play. ***?

    It could just be a compatibility issue.  Have you tried resetting the Nano with everything connected to see if that makes a difference?
    To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    B-rock

  • I have recently bought a new domain which is hosted so that I can send and receive e-mails

    I have recently bought a new domain which is hosted so that I can send and receive e-mails & run a webpage. It has POP3 and SMTP settings that I can use to send and receive my e-mails via Outlook on my PC. However, it doesn't work on my iPad. I have changed port settings and appear to be able to send but each time I start the Mail application my iPad reports "username or password incorrect" even though these correctly work on my PC. MS Outlook Exchange 2010 Live Mail works OK with the same settings on my iPad but I would like to get all my mail via the iPad inbuilt application.
    Can anyone help?

    POP3 accounts are really designed only to be used from one computer and some email providers actually 'lock' the account while in use to stop it being used by another computer/device at the same time.
    Try closing Outlook, wait some minutes then try accessing it from the iPad. You may find it works once the POP3 connection has been released.
    Ideally, you should be using IMAP because POP3 is old and not suitable for modern, multi-device usage.

  • DVI ADAPTOR  iPad air crashes and resets after 5 or 30 minutes when i connect dvi adaptor

    DVI ADAPTOR  iPad air crashes and resets after 5 or 30 minutes when i connect dvi adaptor   I don't know the reason Sometimes its ok for more than 30 min and suddenly then crashes and the iPad resets

    For those still wondering how to install ios 6.1 on 5th gen iPod, you need to download it off of apples official website and then shift click restore from backup and choose the downloaded ios 6.1
    apples one year warrant covers any hardware problems like these right?

  • I tried to install an app from Channel 4 in the UK and got a message that my account would not allow that. Now I appear to be permanently connected to the UK ITunes Store. How to get back to the USA store?

    I tried to install an app from Channel 4 in the UK and got a message that my account would not allow that. Now I appear to be permanently connected to the UK ITunes Store. How to get back to the USA store?

    Never mind, after about 20 minutes it switched back by itself.

  • Fibre Channel Adaptor details

    I need a script to find out how many Fibre Channel Adaptors are connected to my list of servers. PLease let me know if any script is available.
    Thanks,
    Steve

    its not helping my scenario, I am trying to gather data for how many HBA card are connected to a server so that before putting those servers into VM farm I should have my capacity planning ready.
    Thanks
    Ravi

  • How install and configuring sudo in solaris 8

    I need install sudo in a zone with solaris 8 conteiner have solaris 10 ¿can a help my?
    Adolfo

    We don't provide sudo for Solaris 8, but you can try with the package available there : http://www.sudo.ws/sudo/download.html#binary
    They don't provide a specific package for Solaris 8 but may be will the binary working correctly in your zone.
    An other package, and is builded for Solaris 8, is available on www.sunfreeware.com website.
    Regarding the configuration, the method can differ depending on which version you will use. You can find a lot of examples on Internet if you want for details.

Maybe you are looking for

  • ASA boot problem

    Hello, I have problem with ASA 5505. One of our customers brought me ASA 5505 with deleted flash. They want me to fix the problem. I tried to load image from rommon mode, but failed many many times. I used 4 different software files. I tried many man

  • Is it possible to load web content?

    Hello, I'd like to know if its possible to load a file (an xml file) from a web resource with a given address like: http://server.com/file.xml. I tried to do this with myDocument.importXML(File(file)); but this does not seem to work. Thanks in advanc

  • Can't export to avi

    I have a Captivate 4 session that I need to export to avi in order to edit it with other video in Adobe Premiere Pro, but in Captivate, I go to File > Publish and choose the avi setting, and it starts exporting for about a minute until the memory usa

  • MacBook Pro on Mountain Lion randomly restarts

    Dear Support Community My laptop keep randmly restarting.  I uninstalled Little Snitch and this helped slow down the frequency of restarts but they are still at least 3 - 4 per hour. I have had the dust blown out by the local Apple rep so its not hea

  • Photoshop's JPEG Algorithm - from a website (Apache) environment

    I'm not sure if this is the correct forum for this post, but none of the others seemed to fit either.  Here is my situation: I am the programmer for a website that maintains images.  I need to modify the images "on the fly", and I've done what needs