From: syzbot <syzbot+dc57fd6722deb17e92af@syzkaller.appspotmail.com>
To: linux-kernel@vger.kernel.org
Subject: Forwarded: [PATCH] BUG: using smp_processor_id() in preemptible code in sk_skb_reason_drop
Date: Mon, 14 Sep 2026 04:30:17 -0700 [thread overview]
Message-ID: <6aa7dac9.3aa11909.1a03b8.0083.GAE@google.com> (raw)
In-Reply-To: <6aa316b2.f81106d8.2ab401.0014.GAE@google.com>
For archival purposes, forwarding an incoming command email to
linux-kernel@vger.kernel.org.
***
Subject: [PATCH] BUG: using smp_processor_id() in preemptible code in sk_skb_reason_drop
Author: jchuang26@m.fudan.edu.cn
#syz test: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 50d05c7c76c96b90462f24debacca971d2e86713
Reported-by: syzbot+dc57fd6722deb17e92af@syzkaller.appspotmail.com
diff --git a/net/core/drop_monitor.c b/net/core/drop_monitor.c
index abaf108ac..4c068d613 100644
--- a/net/core/drop_monitor.c
+++ b/net/core/drop_monitor.c
@@ -516,6 +516,15 @@ static void net_dm_packet_trace_kfree_skb_hit(void *ignore,
*/
nskb->tstamp = tstamp;
+ /*
+ * The tracepoint can run in preemptible context (e.g. from
+ * tcp_data_queue()). Pin the task to the current CPU before
+ * dereferencing the per-CPU pointer, otherwise this_cpu_ptr()
+ * triggers a "using smp_processor_id() in preemptible code"
+ * splat. migrate_disable() is used instead of preempt_disable()
+ * because the drop_queue spinlock can sleep on PREEMPT_RT.
+ */
+ migrate_disable();
data = this_cpu_ptr(&dm_cpu_data);
spin_lock_irqsave(&data->drop_queue.lock, flags);
@@ -527,6 +536,7 @@ static void net_dm_packet_trace_kfree_skb_hit(void *ignore,
schedule_work(&data->dm_alert_work);
+ migrate_enable();
return;
unlock_free:
@@ -534,6 +544,7 @@ static void net_dm_packet_trace_kfree_skb_hit(void *ignore,
u64_stats_inc(&data->stats.dropped);
u64_stats_update_end(&data->stats.syncp);
spin_unlock_irqrestore(&data->drop_queue.lock, flags);
+ migrate_enable();
consume_skb(nskb);
}
prev parent reply other threads:[~2026-09-14 11:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-10 20:44 [syzbot] [net?] " syzbot
2026-09-14 11:30 ` syzbot [this message]
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=6aa7dac9.3aa11909.1a03b8.0083.GAE@google.com \
--to=syzbot+dc57fd6722deb17e92af@syzkaller.appspotmail.com \
--cc=linux-kernel@vger.kernel.org \
/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®