diff options
author | David Teigland <teigland@redhat.com> | 2007-11-07 09:06:06 -0600 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2008-01-29 17:17:08 -0600 |
commit | 11b2498ba7c88343d91630d679c8f2aeb8d57c48 (patch) | |
tree | 2310871d4ab425ffce51fc515009b5677ceea0e0 /fs/dlm/lock.c | |
parent | e028398da7615dd3a795505ddf7942506bbb49bd (diff) | |
download | linux-3.10-11b2498ba7c88343d91630d679c8f2aeb8d57c48.tar.gz linux-3.10-11b2498ba7c88343d91630d679c8f2aeb8d57c48.tar.bz2 linux-3.10-11b2498ba7c88343d91630d679c8f2aeb8d57c48.zip |
dlm: don't print common non-errors
Change log_error() to log_debug() for conditions that can occur in
large number in normal operation.
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm/lock.c')
-rw-r--r-- | fs/dlm/lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index 7bc6ad9299a..63fe74df97c 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -4258,7 +4258,7 @@ int dlm_recover_master_copy(struct dlm_ls *ls, struct dlm_rcom *rc) put_rsb(r); out: if (error) - log_print("recover_master_copy %d %x", error, rl->rl_lkid); + log_debug(ls, "recover_master_copy %d %x", error, rl->rl_lkid); rl->rl_result = error; return error; } |