X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fobdclass%2Fllog.c;h=cac2baaf53d5029a7c673ea4f76a7e82662906d7;hb=710e1a34bada840db26198d8333d6477e536ef86;hp=b83a74c9e58c3ebc25580ed3ecc3c9b62abc2853;hpb=84c7efc87ceb70ea05db4d0ae7f85d3c7932f38b;p=fs%2Flustre-release.git diff --git a/lustre/obdclass/llog.c b/lustre/obdclass/llog.c index b83a74c..cac2baa 100644 --- a/lustre/obdclass/llog.c +++ b/lustre/obdclass/llog.c @@ -85,7 +85,7 @@ int llog_cancel_rec(struct llog_handle *loghandle, int index) int rc = 0; ENTRY; - CDEBUG(D_HA, "canceling %d in log "LPX64"\n", + CDEBUG(D_RPCTRACE, "canceling %d in log "LPX64"\n", index, loghandle->lgh_id.lgl_oid); if (index == 0) { @@ -94,7 +94,7 @@ int llog_cancel_rec(struct llog_handle *loghandle, int index) } if (!ext2_clear_bit(index, llh->llh_bitmap)) { - CDEBUG(D_HA, "catalog index %u already clear?\n", index); + CDEBUG(D_RPCTRACE, "catalog index %u already clear?\n", index); RETURN(-EINVAL); } @@ -380,7 +380,7 @@ int llog_reverse_process(struct llog_handle *loghandle, llog_cb_t cb, rec = buf; idx = le32_to_cpu(rec->lrh_index); if (idx < index) - CDEBUG(D_HA, "index %u : idx %u\n", index, idx); + CDEBUG(D_RPCTRACE, "index %u : idx %u\n", index, idx); while (idx < index) { rec = ((void *)rec + le32_to_cpu(rec->lrh_len)); idx ++;