Operating System - HP-UX
1833696 Members
3745 Online
110062 Solutions
New Discussion

Errors in console STREAMS/UX

 
RNC
Frequent Advisor

Errors in console STREAMS/UX

Hello all,

I have my server HP9000 with version HP-UX 11.0, and when I connect by console, I recive the next messages:

****STREAMS/UX******
Mon Sep 26 METDST..... ERROR Subsys:STREAMS loc:001231101 ...... ar_rput_dlpi: DL_UDERROR_IND, dl_dest_addr_length 8 dl_errno 4

****STREAMS/UX*******
Mon...... ERROR Subsys:STREAMS loc:001231104 .... ip_rput_dlpi: DL??? failed dl_errno 4 dl_unix_errno 57

Some one knows the mean of the errors? Or some one idea?

Thanks in advance
2 REPLIES 2
baiju_3
Esteemed Contributor

Re: Errors in console STREAMS/UX

Not too sure ,

But check whether you have any NFS related issue , like stale NFS etc ..


Thanks,
BL.
Good things Just Got better (Plz,not stolen from advertisement -:) )
Bill Hassell
Honored Contributor

Re: Errors in console STREAMS/UX

Both error messages have an errno value (a syandard Unix error code):



from /usr/include/sys/errno.h:
define EINTR 4 /* interrupted system call */

from man 2 errno:
[EINTR] Interrupted system call. An asynchronous signal (such
as interrupt or quit), which the user has elected to
catch, occurred during a system call. If execution is
resumed after processing the signal, it will appear as
if the interrupted system call returned this error
condition unless the system call is restarted (see
sigvector(2)).


from /usr/include/sys/errno.h:
define ENOLINK 57 /* the link has been severed */

from man 2 errno:
[ENOLINK] No connection. The link with the device has been
severed or disconnected.


Bill Hassell, sysadmin