Lines Matching refs:errorcode
492 int errorcode; in mount_linux_nfs() local
545 errorcode = 1; in mount_linux_nfs()
558 errorcode = 1; in mount_linux_nfs()
580 errorcode = do_mount_linux(type, mnt, flags, data); in mount_linux_nfs()
587 if (errorcode && mnt_data->fd != -1) { in mount_linux_nfs()
593 return errorcode; in mount_linux_nfs()
601 int errorcode; in mount_linux_nfs4() local
622 errorcode = do_mount_linux(type, mnt, flags, data); in mount_linux_nfs4()
624 return errorcode; in mount_linux_nfs4()
636 int errorcode; in mount_linux_nonfs() local
668 errorcode = do_mount_linux(type, mnt, flags, extra_opts); in mount_linux_nonfs()
711 errorcode = 1; in mount_linux_nonfs()
717 errorcode = do_mount_linux(type, mnt, flags, extra_opts); in mount_linux_nonfs()
721 if (errorcode != 0 && loopdev != NULL) { in mount_linux_nonfs()
744 return errorcode; in mount_linux_nonfs()
751 int errorcode; in mount_linux() local
761 errorcode = mount_linux_nfs4(type, mnt, flags, data); in mount_linux()
765 errorcode = mount_linux_nfs(type, mnt, flags, data); in mount_linux()
767 errorcode = mount_linux_nonfs(type, mnt, flags, data); in mount_linux()
769 return errorcode; in mount_linux()