<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>Is there any reason that a call to <b><font face="Courier New,
          Courier, monospace">llapi_layout_alloc()</font></b> would
      result in the following error messge?<br>
    </p>
    <p><font color="#e91c49"><b><font face="Courier New, Courier,
            monospace">/nobackupp17/jbauer2/dd.out has no stripe info</font></b></font><br>
    </p>
    <p>In the code snippet below, I get the first print "on entry",
      followed by the above error message, but I don't get the print
      after the call to llapi_layout_alloc().  <br>
    </p>
    <p>I'm using pointers to functions from dlopen()/dlsym() as this is
      in a library that has to run on non-Lustre systems.  I'm quite
      confident that it is pointing to llapi_layout_alloc.<br>
    </p>
    <p><font face="Courier New, Courier, monospace">fprintf(stderr,"%s()
        on entry\n",__func__);<br>
           struct llapi_layout *layout = (*llapi_layout_alloc_fcn)();<br>
        fprintf(stderr,"%s()
        %p=llapi_layout_alloc()\n",__func__,layout);<br>
           if( layout == NULL ) return -1 ;</font><br>
      <br>
    </p>
  </body>
</html>