diff options
author | Wonguk Lee <wonguk.lee1023@gmail.com> | 2023-05-05 23:05:16 +0900 |
---|---|---|
committer | Dave Kleikamp <dave.kleikamp@oracle.com> | 2023-06-20 14:58:08 -0500 |
commit | f3fb462443a5e150599fa6692e660e25c974e7be (patch) | |
tree | 68bb9f23ce760718a8199c46d560ea636f7d002e /fs/jfs | |
parent | 11509910c599cbd04585ec35a6d5e1a0053d84c1 (diff) |
fs: jfs: (trivial) Fix typo in dbInitTree function
While trying to fix the jfs UBSAN problem reported in syzkaller,
(https://syzkaller.appspot.com/bug?id=01abadbd6ae6a08b1f1987aa61554c6b3ac19ff2)
I found the typo in the comment of dbInitTree function and fix it.
Signed-off-by: Wonguk Lee <wonguk.lee1023@gmail.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Diffstat (limited to 'fs/jfs')
-rw-r--r-- | fs/jfs/jfs_dmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/jfs_dmap.c b/fs/jfs/jfs_dmap.c index da6a2bc6bf02..d4d094168a2f 100644 --- a/fs/jfs/jfs_dmap.c +++ b/fs/jfs/jfs_dmap.c @@ -3857,7 +3857,7 @@ static int dbInitTree(struct dmaptree * dtp) l2max = le32_to_cpu(dtp->l2nleafs) + dtp->budmin; /* - * configure the leaf levevl into binary buddy system + * configure the leaf level into binary buddy system * * Try to combine buddies starting with a buddy size of 1 * (i.e. two leaves). At a buddy size of 1 two buddy leaves |