From: Hillf Danton <hdanton@sina.com>
To: syzbot <syzbot+f65a2014305525a9f816@syzkaller.appspotmail.com>
Cc: linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com
Subject: Re: [syzbot] [fs?] BUG: sleeping function called from invalid context in vfree (2)
Date: Mon, 18 Aug 2025 18:07:57 +0800 [thread overview]
Message-ID: <20250818100758.5020-1-hdanton@sina.com> (raw)
In-Reply-To: <68a2decd.050a0220.e29e5.009a.GAE@google.com>
> Date: Mon, 18 Aug 2025 01:05:33 -0700 [thread overview]
> Hello,
>
> syzbot found the following issue on:
>
> HEAD commit: 8f5ae30d69d7 Linux 6.17-rc1
> git tree: git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-kernelci
> console output: https://syzkaller.appspot.com/x/log.txt?x=15232442580000
> kernel config: https://syzkaller.appspot.com/x/.config?x=8c5ac3d8b8abfcb
> dashboard link: https://syzkaller.appspot.com/bug?extid=f65a2014305525a9f816
> userspace arch: arm64
> syz repro: https://syzkaller.appspot.com/x/repro.syz?x=14cbaba2580000
> C reproducer: https://syzkaller.appspot.com/x/repro.c?x=1157faf0580000
#syz test upstream master
--- x/include/linux/mm_types.h
+++ y/include/linux/mm_types.h
@@ -1166,6 +1166,7 @@ struct mm_struct {
#ifdef CONFIG_PREEMPT_RT
struct rcu_head delayed_drop;
#endif
+ struct work_struct drop_work;
#ifdef CONFIG_HUGETLB_PAGE
atomic_long_t hugetlb_usage;
#endif
--- x/kernel/fork.c
+++ y/kernel/fork.c
@@ -666,6 +666,14 @@ static void cleanup_lazy_tlbs(struct mm_
on_each_cpu(do_check_lazy_tlb, (void *)mm, 1);
}
+static void mmdrop_workfn(struct work_struct *work)
+{
+ struct mm_struct *mm;
+
+ mm = container_of(work, struct mm_struct, drop_work);
+ futex_hash_free(mm);
+ free_mm(mm);
+}
/*
* Called when the last reference to the mm
* is dropped: either by a lazy thread or by
@@ -689,9 +697,8 @@ void __mmdrop(struct mm_struct *mm)
mm_pasid_drop(mm);
mm_destroy_cid(mm);
percpu_counter_destroy_many(mm->rss_stat, NR_MM_COUNTERS);
- futex_hash_free(mm);
-
- free_mm(mm);
+ INIT_WORK(&mm->drop_work, mmdrop_workfn);
+ schedule_work(&mm->drop_work);
}
EXPORT_SYMBOL_GPL(__mmdrop);
--
next prev parent reply other threads:[~2025-08-18 10:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-18 8:05 syzbot
2025-08-18 10:07 ` Hillf Danton [this message]
2025-08-18 11:42 ` syzbot
2025-08-18 12:40 ` Breno Leitao
2025-08-18 13:19 ` Hillf Danton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250818100758.5020-1-hdanton@sina.com \
--to=hdanton@sina.com \
--cc=linux-kernel@vger.kernel.org \
--cc=syzbot+f65a2014305525a9f816@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®