What does errno 72 (EMULTIHOP) mean?

 
Could be also:
ConstantTypeOS
ERROR_REDIR_PAUSEDWin32 errorWindows
EBADRPCerrnoMac
ELOCKUNMAPPEDerrnoSolaris
CANCEL_STATE_IN_COMPLETED_IRPBugCheck CodeWindows
Previous Next
EPROTO EDOTDOT

EMULTIHOP

EMULTIHOP reports that a multihop operation was attempted. It is relevant to remote or distributed path resolution where an operation would need to pass through more than one remote hop or forwarding boundary that the layer does not support.

On Linux this is uncommon in ordinary local filesystem and socket code. If it appears, focus on mount stacking, automounts, remote namespace layout, protocol gateways, and compatibility layers that translate remote path traversal failures into traditional errno names.

Useful checks

  • Identify every mount, automount, bind mount, and remote hop in the failing path.
  • Check whether the protocol supports crossing referrals, exports, or remote roots.
  • Compare with EXDEV for local cross-device limits and ENOLINK for severed links.

POSIX errno.h · Linux errno(3) · Linux UAPI errno definitions


Looking for a different code? Search another status or error code.