From: phil Date: Thu, 18 Dec 2003 09:45:44 +0000 (+0000) Subject: Print the service name in the mds RECOVERY: message X-Git-Tag: v1_7_100~2894 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=4c285dd126910fdbeead3e9784a6fb739a8c4e3f;p=fs%2Flustre-release.git Print the service name in the mds RECOVERY: message --- diff --git a/lustre/mds/mds_fs.c b/lustre/mds/mds_fs.c index 453d8b4..e494243 100644 --- a/lustre/mds/mds_fs.c +++ b/lustre/mds/mds_fs.c @@ -336,9 +336,9 @@ static int mds_read_last_rcvd(struct obd_device *obd, struct file *file) obd->obd_last_committed = mds->mds_last_transno; if (obd->obd_recoverable_clients) { - CWARN("RECOVERY: %d recoverable clients, last_transno " - LPU64"\n", obd->obd_recoverable_clients, - mds->mds_last_transno); + CWARN("RECOVERY: service %s, %d recoverable clients, " + "last_transno "LPU64"\n", obd->obd_name, + obd->obd_recoverable_clients, mds->mds_last_transno); obd->obd_next_recovery_transno = obd->obd_last_committed + 1; obd->obd_recovering = 1; }