Re: [PATCH 4/6] 9pfs: refactor 'name_idx' -> 'nvalid' in v9fs_walk()

2022-03-11 Thread Greg Kurz
On Thu, 10 Mar 2022 10:07:04 +0100
Christian Schoenebeck  wrote:

> On Mittwoch, 9. März 2022 18:12:17 CET Christian Schoenebeck wrote:
> > The local variable 'name_idx' is used in two loops in function v9fs_walk().
> > Let the first loop use its own variable 'nvalid' instead, which we will use
> > in subsequent patches as the number of (requested) path components
> > successfully retrieved/walked by background I/O thread.

I think walked is clear enough.

> > 
> > Signed-off-by: Christian Schoenebeck 
> > ---
> >  hw/9pfs/9p.c | 16 
> >  1 file changed, 8 insertions(+), 8 deletions(-)
> > 
> > diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> > index a6d6b3f835..6cdc566866 100644
> > --- a/hw/9pfs/9p.c
> > +++ b/hw/9pfs/9p.c
> > @@ -1764,7 +1764,7 @@ static bool same_stat_id(const struct stat *a, const
> > struct stat *b)
> > 
> >  static void coroutine_fn v9fs_walk(void *opaque)
> >  {
> > -int name_idx;
> > +int name_idx, nvalid;
> 
> Or rather renaming this nvalid -> nfetched?
> 

or simply nwalked ?

Anyway,

Reviewed-by: Greg Kurz 

> >  g_autofree V9fsQID *qids = NULL;
> >  int i, err = 0;
> >  V9fsPath dpath, path;
> > @@ -1842,17 +1842,17 @@ static void coroutine_fn v9fs_walk(void *opaque)
> >  break;
> >  }
> >  stbuf = fidst;
> > -for (name_idx = 0; name_idx < nwnames; name_idx++) {
> > +for (nvalid = 0; nvalid < nwnames; nvalid++) {
> >  if (v9fs_request_cancelled(pdu)) {
> >  err = -EINTR;
> >  break;
> >  }
> >  if (!same_stat_id(>s->root_st, ) ||
> > -strcmp("..", wnames[name_idx].data))
> > +strcmp("..", wnames[nvalid].data))
> >  {
> >  err = s->ops->name_to_path(>ctx, ,
> > -   wnames[name_idx].data,
> > -   [name_idx]);
> > +   wnames[nvalid].data,
> > +   [nvalid]);
> >  if (err < 0) {
> >  err = -errno;
> >  break;
> > @@ -1861,13 +1861,13 @@ static void coroutine_fn v9fs_walk(void *opaque)
> >  err = -EINTR;
> >  break;
> >  }
> > -err = s->ops->lstat(>ctx, [name_idx], );
> > +err = s->ops->lstat(>ctx, [nvalid], );
> >  if (err < 0) {
> >  err = -errno;
> >  break;
> >  }
> > -stbufs[name_idx] = stbuf;
> > -v9fs_path_copy(, [name_idx]);
> > +stbufs[nvalid] = stbuf;
> > +v9fs_path_copy(, [nvalid]);
> >  }
> >  }
> >  });
> 
> 




Re: [PATCH 4/6] 9pfs: refactor 'name_idx' -> 'nvalid' in v9fs_walk()

2022-03-10 Thread Christian Schoenebeck
On Mittwoch, 9. März 2022 18:12:17 CET Christian Schoenebeck wrote:
> The local variable 'name_idx' is used in two loops in function v9fs_walk().
> Let the first loop use its own variable 'nvalid' instead, which we will use
> in subsequent patches as the number of (requested) path components
> successfully retrieved/walked by background I/O thread.
> 
> Signed-off-by: Christian Schoenebeck 
> ---
>  hw/9pfs/9p.c | 16 
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> index a6d6b3f835..6cdc566866 100644
> --- a/hw/9pfs/9p.c
> +++ b/hw/9pfs/9p.c
> @@ -1764,7 +1764,7 @@ static bool same_stat_id(const struct stat *a, const
> struct stat *b)
> 
>  static void coroutine_fn v9fs_walk(void *opaque)
>  {
> -int name_idx;
> +int name_idx, nvalid;

Or rather renaming this nvalid -> nfetched?

>  g_autofree V9fsQID *qids = NULL;
>  int i, err = 0;
>  V9fsPath dpath, path;
> @@ -1842,17 +1842,17 @@ static void coroutine_fn v9fs_walk(void *opaque)
>  break;
>  }
>  stbuf = fidst;
> -for (name_idx = 0; name_idx < nwnames; name_idx++) {
> +for (nvalid = 0; nvalid < nwnames; nvalid++) {
>  if (v9fs_request_cancelled(pdu)) {
>  err = -EINTR;
>  break;
>  }
>  if (!same_stat_id(>s->root_st, ) ||
> -strcmp("..", wnames[name_idx].data))
> +strcmp("..", wnames[nvalid].data))
>  {
>  err = s->ops->name_to_path(>ctx, ,
> -   wnames[name_idx].data,
> -   [name_idx]);
> +   wnames[nvalid].data,
> +   [nvalid]);
>  if (err < 0) {
>  err = -errno;
>  break;
> @@ -1861,13 +1861,13 @@ static void coroutine_fn v9fs_walk(void *opaque)
>  err = -EINTR;
>  break;
>  }
> -err = s->ops->lstat(>ctx, [name_idx], );
> +err = s->ops->lstat(>ctx, [nvalid], );
>  if (err < 0) {
>  err = -errno;
>  break;
>  }
> -stbufs[name_idx] = stbuf;
> -v9fs_path_copy(, [name_idx]);
> +stbufs[nvalid] = stbuf;
> +v9fs_path_copy(, [nvalid]);
>  }
>  }
>  });





[PATCH 4/6] 9pfs: refactor 'name_idx' -> 'nvalid' in v9fs_walk()

2022-03-09 Thread Christian Schoenebeck
The local variable 'name_idx' is used in two loops in function v9fs_walk().
Let the first loop use its own variable 'nvalid' instead, which we will use
in subsequent patches as the number of (requested) path components
successfully retrieved/walked by background I/O thread.

Signed-off-by: Christian Schoenebeck 
---
 hw/9pfs/9p.c | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
index a6d6b3f835..6cdc566866 100644
--- a/hw/9pfs/9p.c
+++ b/hw/9pfs/9p.c
@@ -1764,7 +1764,7 @@ static bool same_stat_id(const struct stat *a, const 
struct stat *b)
 
 static void coroutine_fn v9fs_walk(void *opaque)
 {
-int name_idx;
+int name_idx, nvalid;
 g_autofree V9fsQID *qids = NULL;
 int i, err = 0;
 V9fsPath dpath, path;
@@ -1842,17 +1842,17 @@ static void coroutine_fn v9fs_walk(void *opaque)
 break;
 }
 stbuf = fidst;
-for (name_idx = 0; name_idx < nwnames; name_idx++) {
+for (nvalid = 0; nvalid < nwnames; nvalid++) {
 if (v9fs_request_cancelled(pdu)) {
 err = -EINTR;
 break;
 }
 if (!same_stat_id(>s->root_st, ) ||
-strcmp("..", wnames[name_idx].data))
+strcmp("..", wnames[nvalid].data))
 {
 err = s->ops->name_to_path(>ctx, ,
-   wnames[name_idx].data,
-   [name_idx]);
+   wnames[nvalid].data,
+   [nvalid]);
 if (err < 0) {
 err = -errno;
 break;
@@ -1861,13 +1861,13 @@ static void coroutine_fn v9fs_walk(void *opaque)
 err = -EINTR;
 break;
 }
-err = s->ops->lstat(>ctx, [name_idx], );
+err = s->ops->lstat(>ctx, [nvalid], );
 if (err < 0) {
 err = -errno;
 break;
 }
-stbufs[name_idx] = stbuf;
-v9fs_path_copy(, [name_idx]);
+stbufs[nvalid] = stbuf;
+v9fs_path_copy(, [nvalid]);
 }
 }
 });
-- 
2.30.2