lkml.org 
[lkml]   [2022]   [Jun]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [PATCH v5 6/6] mm: shrinkers: add scan interface for shrinker debugfs
On Thu, Jun 02, 2022 at 11:41:32AM -0700, Andrew Morton wrote:
> On Wed, 1 Jun 2022 17:56:22 -0700 Roman Gushchin <roman.gushchin@linux.dev> wrote:
>
> > >
> > > > + ssize_t ret;
> > > > +
> > > > + if (copy_from_user(kbuf, buf, read_len))
> > > > + return -EFAULT;
> > > > + kbuf[read_len] = '\0';
> > > > +
> > > > + if (sscanf(kbuf, "%lu %d %lu", &ino, &nid, &nr_to_scan) < 2)
> > >
> > > Was it intentional to permit more than three args?
> >
> > Good catch! No, of course it wasn't intentional.
> >
> > Below is an updated version of this patch.
> >
> > ...
> >
> > + if (sscanf(kbuf, "%lu %d %lu", &ino, &nid, &nr_to_scan) != 2)
> > + return -EINVAL;
>
> s/2/3/methinks?
>
>

My bad, of course. Thanks!

--

diff --git a/mm/shrinker_debug.c b/mm/shrinker_debug.c
index 12026472daae..e5b40c43221d 100644
--- a/mm/shrinker_debug.c
+++ b/mm/shrinker_debug.c
@@ -124,7 +124,7 @@ static ssize_t shrinker_debugfs_scan_write(struct file *file,
return -EFAULT;
kbuf[read_len] = '\0';

- if (sscanf(kbuf, "%lu %d %lu", &ino, &nid, &nr_to_scan) != 2)
+ if (sscanf(kbuf, "%lu %d %lu", &ino, &nid, &nr_to_scan) != 3)
return -EINVAL;

if (nid < 0 || nid >= nr_node_ids)
\
 
 \ /
  Last update: 2022-06-03 00:25    [W:0.092 / U:0.020 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site