From: rivaldihormat-debug <rivaldihormat@gmail.com>
To: intel-wired-lan@lists.osuosl.org
Cc: linux-kernel@vger.kernel.org, Rifaldi Hormat <rivaldihormat@gmail.com>
Subject: [PATCH] i40e: fix integer overflow in i40e_dbg_command_write()
Date: Sat, 5 Sep 2026 16:31:44 +0000 [thread overview]
Message-ID: <20260905163144.17069-1-rivaldihormat@gmail.com> (raw)
From: Rifaldi Hormat <rivaldihormat@gmail.com>
Signed-off-by: Rifaldi Hormat <rivaldihormat@gmail.com>
---
drivers/net/ethernet/intel/i40e/i40e_debugfs.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/net/ethernet/intel/i40e/i40e_debugfs.c b/drivers/net/ethernet/intel/i40e/i40e_debugfs.c
index 0b52509cb14c..74e75504fdda 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_debugfs.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_debugfs.c
@@ -722,6 +722,8 @@ static ssize_t i40e_dbg_command_write(struct file *filp,
int cnt;
/* don't allow partial writes */
+ if (count == 0 || count > PAGE_SIZE)
+ return -EINVAL;
if (*ppos != 0)
return 0;
@@ -1605,6 +1607,8 @@ static ssize_t i40e_dbg_netdev_ops_write(struct file *filp,
int i, cnt;
/* don't allow partial writes */
+ if (count == 0 || count > PAGE_SIZE)
+ return -EINVAL;
if (*ppos != 0)
return 0;
--
2.53.0
next reply other threads:[~2026-09-05 16:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-05 16:31 rivaldihormat-debug [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-09-05 15:31 rivaldihormat-debug
2026-09-04 6:25 rivaldihormat-debug
2026-09-05 14:31 ` Paul Menzel
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=20260905163144.17069-1-rivaldihormat@gmail.com \
--to=rivaldihormat@gmail.com \
--cc=intel-wired-lan@lists.osuosl.org \
--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®