diff options
author | Ilya Dryomov <ilya.dryomov@inktank.com> | 2014-05-12 13:05:47 +0400 |
---|---|---|
committer | Yan, Zheng <zheng.z.yan@intel.com> | 2014-06-06 09:29:56 +0800 |
commit | 002b36ba5ef7a0e2ad0392130a71029765136cf0 (patch) | |
tree | 894ff9218549e14d3d8e31699d728924286d71c8 /net | |
parent | 23cd573b46c1f90645023ca2989bc041a0fcf38c (diff) | |
download | linux-stable-002b36ba5ef7a0e2ad0392130a71029765136cf0.tar.gz linux-stable-002b36ba5ef7a0e2ad0392130a71029765136cf0.tar.bz2 linux-stable-002b36ba5ef7a0e2ad0392130a71029765136cf0.zip |
libceph: recognize poolop requests in debugfs
Recognize poolop requests in debugfs monc dump, fix prink format
specifiers - tid is unsigned.
Signed-off-by: Ilya Dryomov <ilya.dryomov@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/ceph/debugfs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/ceph/debugfs.c b/net/ceph/debugfs.c index 10421a4b76f8..8903dcee8d8e 100644 --- a/net/ceph/debugfs.c +++ b/net/ceph/debugfs.c @@ -126,9 +126,11 @@ 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 - seq_printf(s, "%lld unknown\n", req->tid); + seq_printf(s, "%llu unknown\n", req->tid); } mutex_unlock(&monc->mutex); |