Robert Schiele wrote: @@ -788,6 +794,11 @@ int start_statd(void) } if (nfs_probe_statd()) return 1; + while (cnt--) { + nanosleep(&ts, NULL); + if (nfs_probe_statd()) + return 1; + } } } #endif Shouldn't this be something like: while (cnt--) { if (nfs_probe_statd()) return 1; if (nanosleep(&ts, NULL) < 0) break; } ? -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html