Re: [PATCH v2 1/8] tests/9pfs: simplify do_mkdir()

2020-10-22 Thread Greg Kurz
On Wed, 21 Oct 2020 14:06:53 +0200 Christian Schoenebeck wrote: > Split out walking a directory path to a separate new utility function > do_walk() and use that function in do_mkdir(). > > The code difference saved this way is not much, but we'll use that new > do_walk() function in the upcoming

[PATCH v2 1/8] tests/9pfs: simplify do_mkdir()

2020-10-21 Thread Christian Schoenebeck
Split out walking a directory path to a separate new utility function do_walk() and use that function in do_mkdir(). The code difference saved this way is not much, but we'll use that new do_walk() function in the upcoming patches, so it will avoid quite some code duplication after all. Signed-of