]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - net/ceph/debugfs.c
arm: imx: tx6: mfgtool defconfig
[karo-tx-linux.git] / net / ceph / debugfs.c
index 10421a4b76f8710def7328e45dabf227cc3cdb3b..d1a62c69a9f4fd1cff25ca458a66d8e2c6093099 100644 (file)
@@ -126,9 +126,13 @@ static int monc_show(struct seq_file *s, void *p)
                req = rb_entry(rp, struct ceph_mon_generic_request, node);
                op = le16_to_cpu(req->request->hdr.type);
                if (op == CEPH_MSG_STATFS)
-                       seq_printf(s, "%lld statfs\n", req->tid);
+                       seq_printf(s, "%llu statfs\n", req->tid);
+               else if (op == CEPH_MSG_POOLOP)
+                       seq_printf(s, "%llu poolop\n", req->tid);
+               else if (op == CEPH_MSG_MON_GET_VERSION)
+                       seq_printf(s, "%llu mon_get_version", req->tid);
                else
-                       seq_printf(s, "%lld unknown\n", req->tid);
+                       seq_printf(s, "%llu unknown\n", req->tid);
        }
 
        mutex_unlock(&monc->mutex);