diff options
author | Mike Marshall <hubcap@omnibond.com> | 2016-03-03 19:46:48 +0100 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2016-03-03 19:46:48 +0100 |
commit | 9d9e7ba9ee8f304c4608f3c81aa5e7fb3bddd251 (patch) | |
tree | 73cd63e6279ae26fa5415fdaf65d08a67c417a8c /fs/orangefs/orangefs-mod.c | |
parent | Orangefs: update orangefs.txt (diff) | |
download | linux-9d9e7ba9ee8f304c4608f3c81aa5e7fb3bddd251.tar.xz linux-9d9e7ba9ee8f304c4608f3c81aa5e7fb3bddd251.zip |
Orangefs: improve gossip statements
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-mod.c')
-rw-r--r-- | fs/orangefs/orangefs-mod.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fs/orangefs/orangefs-mod.c b/fs/orangefs/orangefs-mod.c index a4e08dd3e669..91a4293d1cd7 100644 --- a/fs/orangefs/orangefs-mod.c +++ b/fs/orangefs/orangefs-mod.c @@ -261,12 +261,13 @@ void purge_inprogress_ops(void) next, &htable_ops_in_progress[i], list) { - gossip_debug(GOSSIP_INIT_DEBUG, - "pvfs2-client-core: purging in-progress op tag " - "%llu %s\n", - llu(op->tag), - get_opname_string(op)); set_op_state_purged(op); + gossip_debug(GOSSIP_DEV_DEBUG, + "%s: op:%s: op_state:%d: process:%s:\n", + __func__, + get_opname_string(op), + op->op_state, + current->comm); } spin_unlock(&htable_ops_in_progress_lock); } |