diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-25 13:23:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-05-25 13:23:42 -0700 |
commit | 6951abe8f37b1f4f9a0e7c036873f0ab4f56abf1 (patch) | |
tree | 57b5f9dc4505fdaaf69812de1669135bb095fe89 /fs/jffs2/background.c | |
parent | 2313022ec5942e3ddd2e4e57002ed71926887f87 (diff) | |
parent | af9a8730ddb6a4b2edd779ccc0aceb994d616830 (diff) | |
download | linux-6951abe8f37b1f4f9a0e7c036873f0ab4f56abf1.tar.gz linux-6951abe8f37b1f4f9a0e7c036873f0ab4f56abf1.tar.bz2 linux-6951abe8f37b1f4f9a0e7c036873f0ab4f56abf1.zip |
Merge tag 'jffs2-for-linus-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs
Pull jffs2 updates from Richard Weinberger:
- Fix illegal memory access in jffs2_free_inode()
- Kernel-doc fixes
- print symbolic error names
* tag 'jffs2-for-linus-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs:
jffs2: Fix potential illegal address access in jffs2_free_inode
jffs2: Simplify the allocation of slab caches
jffs2: nodemgmt: fix kernel-doc comments
jffs2: print symbolic error name instead of error code
Diffstat (limited to 'fs/jffs2/background.c')
-rw-r--r-- | fs/jffs2/background.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/background.c b/fs/jffs2/background.c index 6da92ecaf66d..bb0ee1a59e71 100644 --- a/fs/jffs2/background.c +++ b/fs/jffs2/background.c @@ -44,8 +44,8 @@ int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c) tsk = kthread_run(jffs2_garbage_collect_thread, c, "jffs2_gcd_mtd%d", c->mtd->index); if (IS_ERR(tsk)) { - pr_warn("fork failed for JFFS2 garbage collect thread: %ld\n", - -PTR_ERR(tsk)); + pr_warn("fork failed for JFFS2 garbage collect thread: %pe\n", + tsk); complete(&c->gc_thread_exit); ret = PTR_ERR(tsk); } else { |