From f6e9801729d3c5fde4318c5c3029f54c81905f2c Mon Sep 17 00:00:00 2001 From: bobijam Date: Tue, 23 Dec 2008 07:15:31 +0000 Subject: [PATCH] format: * trim trailing white spaces * \t -> ' ' * 8 --- lustre/ldlm/ldlm_flock.c | 2 +- lustre/ldlm/ldlm_request.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lustre/ldlm/ldlm_flock.c b/lustre/ldlm/ldlm_flock.c index 439a4f4..f58e176 100644 --- a/lustre/ldlm/ldlm_flock.c +++ b/lustre/ldlm/ldlm_flock.c @@ -629,7 +629,7 @@ granted: cfs_flock_set_pid(getlk, (pid_t)lock->l_policy_data.l_flock.pid); cfs_flock_set_start(getlk, - (loff_t)lock->l_policy_data.l_flock.start); + (loff_t)lock->l_policy_data.l_flock.start); cfs_flock_set_end(getlk, (loff_t)lock->l_policy_data.l_flock.end); } else { diff --git a/lustre/ldlm/ldlm_request.c b/lustre/ldlm/ldlm_request.c index 46e7607..872ad36 100644 --- a/lustre/ldlm/ldlm_request.c +++ b/lustre/ldlm/ldlm_request.c @@ -78,9 +78,9 @@ int ldlm_expired_completion_wait(void *data) RETURN(0); LDLM_ERROR(lock, "lock timed out (enqueued at "CFS_TIME_T", " - CFS_DURATION_T"s ago); not entering recovery in " + CFS_DURATION_T"s ago); not entering recovery in " "server code, just going back to sleep", - lock->l_enqueued_time.tv_sec, + lock->l_enqueued_time.tv_sec, cfs_time_sub(cfs_time_current_sec(), lock->l_enqueued_time.tv_sec)); if (cfs_time_after(cfs_time_current(), next_dump)) { @@ -2103,10 +2103,10 @@ static int replay_lock_interpret(const struct lu_env *env, lock->l_remote_handle = reply->lock_handle; /* Key change rehash lock in per-export hash with new key */ - exp = req->rq_export; + exp = req->rq_export; if (exp && exp->exp_lock_hash) lustre_hash_rehash_key(exp->exp_lock_hash, &old_hash_key, - &lock->l_remote_handle, + &lock->l_remote_handle, &lock->l_exp_hash); LDLM_DEBUG(lock, "replayed lock:"); -- 1.8.3.1