Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionRobert Peterson
2016-10-05 17:15:59 UTC
Description of problem:
The gfs2_edit savemeta feature does not save leaf chain blocks.
These are cases where a dinode's leaf block points to another
"chain" leaf block via lf_next.
We need to fix gfs2_edit so that it saves all leaf chain blocks.
Version-Release number of selected component (if applicable):
All
How reproducible:
Always
Steps to Reproduce:
Something like this:
mkfs.gfs2 -O -j1 -plock_nolock /dev/sasdrives/scratch |grep "groups"
mount -tgfs2 /dev/sasdrives/scratch /mnt/gfs2
cd /mnt/gfs2
/home/bob/tools/bz1138749_tests/100_names.sh
cd -
umount /mnt/gfs2
gfs2_edit savemeta /dev/sasdrives/scratch /tmp/100names.with.same.hash.meta.gz
gfs2_edit -p 0x8349 /dev/sasdrives/scratch |grep lf_next
gfs2_edit printsavedmeta /tmp/100names.with.same.hash.meta.gz |grep 0x8349
gfs2_edit printsavedmeta /tmp/100names.with.same.hash.meta.gz |grep 0x834a
Actual results:
Block 0x834a does not appear in the printsavedmeta output because it
was never saved. That's the problem.
Expected results:
33644 (l=0xff8): Block #33610 (0x834a) (directory leaf)
Additional info:
The steps given above do this:
1. A new GFS2 file system is made and mounted
2. The script creates enough files with a duplicate hash value
that the leaf block is forced into a chain leaf block. In
this case, block 0x834a is the chain leaf block.
3. The file system is unmounted and the metadata saved to a file.
4. The leaf block at 0x8349 is printed to prove we have a non-zero
value for lf_next.
5. The first printsavedmeta proves we saved that leaf which has
the forward chain.
6. The second printsavedmeta proves gfs2_edit savemeta did or did
not save the chain leaf block.
Created attachment 1207653[details]
Script used to recreate the problem
Ben Marzinski created this script to touch one hundred files
that all have the same hash value, which forces GFS2 to put
some of them on a leaf chain block.
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2017:2226