diff options
author | Zhihao Cheng <chengzhihao1@huawei.com> | 2020-06-16 10:11:46 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2020-12-14 00:12:42 +0300 |
commit | b80a974b8c58164ed57b0f025a47b8f003198d9e (patch) | |
tree | 39d43f45e27c2b4ec86589d8ee2610343e6c325e /fs/ubifs | |
parent | bf6dab7a6ce79c56764623b970be10fc6edd8a68 (diff) | |
download | linux-b80a974b8c58164ed57b0f025a47b8f003198d9e.tar.xz |
ubifs: ubifs_dump_node: Dump all branches of the index node
An index node can have up to c->fanout branches, all branches should be
displayed while dumping index node.
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index 8b49ece5f656..1bbb9fe661b1 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c @@ -537,7 +537,7 @@ void ubifs_dump_node(const struct ubifs_info *c, const void *node, int node_len) pr_err("\tlevel %d\n", (int)le16_to_cpu(idx->level)); pr_err("\tBranches:\n"); - for (i = 0; i < n && i < c->fanout - 1; i++) { + for (i = 0; i < n && i < c->fanout; i++) { const struct ubifs_branch *br; br = ubifs_idx_branch(c, idx, i); |