Orangefs: make some gossip statements more helpful.

Signed-off-by: Mike Marshall <hubcap@omnibond.com>
diff --git a/fs/orangefs/waitqueue.c b/fs/orangefs/waitqueue.c
index 36eedd6..2c47f15 100644
--- a/fs/orangefs/waitqueue.c
+++ b/fs/orangefs/waitqueue.c
@@ -67,11 +67,10 @@
 retry_servicing:
 	op->downcall.status = 0;
 	gossip_debug(GOSSIP_WAIT_DEBUG,
-		     "orangefs: service_operation: %s %p\n",
+		     "%s: %s op:%p: process:%s: pid:%d:\n",
+		     __func__,
 		     op_name,
-		     op);
-	gossip_debug(GOSSIP_WAIT_DEBUG,
-		     "orangefs: operation posted by process: %s, pid: %i\n",
+		     op,
 		     current->comm,
 		     current->pid);
 
@@ -122,6 +121,13 @@
 
 	ret = wait_for_matching_downcall(op, timeout,
 					 flags & ORANGEFS_OP_INTERRUPTIBLE);
+
+	gossip_debug(GOSSIP_WAIT_DEBUG,
+		     "%s: wait_for_matching_downcall returned %d for %p\n",
+		     __func__,
+		     ret,
+		     op);
+
 	if (!ret) {
 		spin_unlock(&op->lock);
 		/* got matching downcall; make sure status is in errno format */