diff options
author | Alexander Aring <aahringo@redhat.com> | 2022-06-22 21:45:05 +0300 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2022-06-24 19:52:36 +0300 |
commit | ea06d4cabf529eefbe7e89e3a8325f1f89355ccd (patch) | |
tree | 1a8a69cf063f78073b40f00ad2cf1f6b7448d944 /fs/dlm | |
parent | 19d7ca051d303622c423b4cb39e6bde5d177328b (diff) | |
download | linux-ea06d4cabf529eefbe7e89e3a8325f1f89355ccd.tar.xz |
fs: dlm: change plock interrupted message to debug again
This patch reverses the commit bcfad4265ced ("dlm: improve plock logging
if interrupted") by moving it to debug level and notifying the user an op
was removed.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/plock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/plock.c b/fs/dlm/plock.c index 59113d65e8d7..868940c48e3a 100644 --- a/fs/dlm/plock.c +++ b/fs/dlm/plock.c @@ -163,7 +163,7 @@ int dlm_posix_lock(dlm_lockspace_t *lockspace, u64 number, struct file *file, spin_lock(&ops_lock); list_del(&op->list); spin_unlock(&ops_lock); - log_print("%s: wait interrupted %x %llx pid %d, op removed", + log_debug(ls, "%s: wait interrupted %x %llx pid %d", __func__, ls->ls_global_id, (unsigned long long)number, op->info.pid); dlm_release_plock_op(op); @@ -443,7 +443,7 @@ static ssize_t dev_write(struct file *file, const char __user *u, size_t count, else wake_up(&recv_wq); } else - log_print("%s: no op %x %llx - may got interrupted?", __func__, + log_print("%s: no op %x %llx", __func__, info.fsid, (unsigned long long)info.number); return count; } |