From: rread Date: Mon, 14 Jun 2004 19:40:30 +0000 (+0000) Subject: Land b_bug1742 onto b1_4_smallfix (20040614_1231) X-Git-Tag: v1_7_0_51~2^39~5 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=b63ce86c4db5072f81e84f3866ef6c048740e90b;p=fs%2Flustre-release.git Land b_bug1742 onto b1_4_smallfix (20040614_1231) 1742 - allow clients to reconnect durign replay 3570 - resend bulk reqs 3515 - only evict clients above gap after recovery aborts 3554 - fix cond_resched() --- diff --git a/lustre/include/linux/lustre_fsfilt.h b/lustre/include/linux/lustre_fsfilt.h index d83e149..3b3db89 100644 --- a/lustre/include/linux/lustre_fsfilt.h +++ b/lustre/include/linux/lustre_fsfilt.h @@ -152,7 +152,7 @@ fsfilt_start_ops(struct fsfilt_operations *ops, struct inode *inode, unsigned long now = jiffies; void *parent_handle = oti ? oti->oti_handle : NULL; void *handle = ops->fs_start(inode, op, parent_handle, logs); - CDEBUG(D_HA, "started handle %p (%p)\n", handle, parent_handle); + CDEBUG(D_INFO, "started handle %p (%p)\n", handle, parent_handle); if (oti != NULL) { if (parent_handle == NULL) { @@ -195,7 +195,7 @@ fsfilt_commit_ops(struct fsfilt_operations *ops, struct inode *inode, { unsigned long now = jiffies; int rc = ops->fs_commit(inode, handle, force_sync); - CDEBUG(D_HA, "committing handle %p\n", handle); + CDEBUG(D_INFO, "committing handle %p\n", handle); if (time_after(jiffies, now + 15 * HZ)) CERROR("long journal start time %lus\n", (jiffies - now) / HZ); @@ -227,7 +227,7 @@ fsfilt_brw_start_log(struct obd_device *obd, int objcount, void *parent_handle = oti ? oti->oti_handle : NULL; void *handle = obd->obd_fsops->fs_brw_start(objcount, fso, niocount, nb, parent_handle, logs); - CDEBUG(D_HA, "started handle %p (%p)\n", handle, parent_handle); + CDEBUG(D_INFO, "started handle %p (%p)\n", handle, parent_handle); if (oti != NULL) { if (parent_handle == NULL) { @@ -259,7 +259,7 @@ fsfilt_commit_async(struct obd_device *obd, struct inode *inode, unsigned long now = jiffies; int rc = obd->obd_fsops->fs_commit_async(inode, handle, wait_handle); - CDEBUG(D_HA, "committing handle %p (async)\n", *wait_handle); + CDEBUG(D_INFO, "committing handle %p (async)\n", *wait_handle); if (time_after(jiffies, now + 15 * HZ)) CERROR("long journal start time %lus\n", (jiffies - now) / HZ); @@ -271,7 +271,7 @@ fsfilt_commit_wait(struct obd_device *obd, struct inode *inode, void *handle) { unsigned long now = jiffies; int rc = obd->obd_fsops->fs_commit_wait(inode, handle); - CDEBUG(D_HA, "waiting for completion %p\n", handle); + CDEBUG(D_INFO, "waiting for completion %p\n", handle); if (time_after(jiffies, now + 15 * HZ)) CERROR("long journal start time %lus\n", (jiffies - now) / HZ); return rc;