On Tue, Jun 18, 2024 at 11:14:07PM -0700, Christoph Hellwig wrote: > On Mon, Jun 17, 2024 at 05:50:24PM -0700, Darrick J. Wong wrote: > > From: Darrick J. Wong <djwong@xxxxxxxxxx> > > > > Create some hardlinked files so that we can exercise parent pointers. > > > > Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> > > --- > > common/populate | 38 ++++++++++++++++++++++++++++++++++++++ > > src/popdir.pl | 11 +++++++++++ > > 2 files changed, 49 insertions(+) > > > > > > diff --git a/common/populate b/common/populate > > index 15f8055c2c..d80e78f386 100644 > > --- a/common/populate > > +++ b/common/populate > > @@ -464,6 +464,44 @@ _scratch_xfs_populate() { > > + > > + # Create a couple of parent pointers > > + __populate_create_dir "${SCRATCH_MNT}/PPTRS" 1 '' --hardlink --format "two_%d" > > > + __populate_create_dir "${SCRATCH_MNT}/PPTRS" ${nr} '' --hardlink --format "many%04d" > > > + __populate_create_dir "${SCRATCH_MNT}/PPTRS" ${nr} '' --hardlink --format "y%0254d" > > > + ln "${SCRATCH_MNT}/PPTRS/vlength" "${SCRATCH_MNT}/PPTRS/${fname}" > > Can you break these lines to make the code a little easier to read? Will do. > Otherwise looks good: > > Reviewed-by: Christoph Hellwig <hch@xxxxxx> Thanks! --D