From 3c05ee29755f47f2c4dd74149175d83d0f03cddc Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 4 Feb 2005 19:55:46 +0000 Subject: [PATCH] At some point, somebody added a 5th upcall argument, but didn't print it with the rest of them. --- lustre/ptlrpc/recover.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lustre/ptlrpc/recover.c b/lustre/ptlrpc/recover.c index 68d7b02..8fe7108 100644 --- a/lustre/ptlrpc/recover.c +++ b/lustre/ptlrpc/recover.c @@ -105,13 +105,13 @@ void ptlrpc_run_failed_import_upcall(struct obd_import* imp) rc = USERMODEHELPER(argv[0], argv, envp); if (rc < 0) { - CERROR("Error invoking recovery upcall %s %s %s %s %s: %d; " + CERROR("Error invoking recovery upcall %s %s %s %s %s %s: %d; " "check /proc/sys/lustre/lustre_upcall\n", - argv[0], argv[1], argv[2], argv[3], argv[4],rc); + argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], rc); } else { - CWARN("Invoked upcall %s %s %s %s %s\n", - argv[0], argv[1], argv[2], argv[3], argv[4]); + CWARN("Invoked upcall %s %s %s %s %s %s\n", + argv[0], argv[1], argv[2], argv[3], argv[4], argv[5]); } #else if (imp->imp_state == LUSTRE_IMP_CLOSED) { -- 1.8.3.1