[Bugs] [Bug 1722546] New: do not assert in inode_unref if the inode table cleanup has started

bugzilla at redhat.com bugzilla at redhat.com
Thu Jun 20 15:28:23 UTC 2019


https://bugzilla.redhat.com/show_bug.cgi?id=1722546

            Bug ID: 1722546
           Summary: do not assert in inode_unref if the inode table
                    cleanup has started
           Product: GlusterFS
           Version: mainline
            Status: NEW
         Component: core
          Assignee: bugs at gluster.org
          Reporter: rabhat at redhat.com
                CC: bugs at gluster.org
  Target Milestone: ---
    Classification: Community



Description of problem:

There is a good chance that, the inode on which unref came has already been
zero refed and added to the purge list. This can happen when inode table is
being destroyed (glfs_fini is something which destroys the inode table).

Consider a directory 'a' which has a file 'b'. Now as part of inode table
destruction
zero refing of inodes does not happen from leaf to the root. It happens in the
order
inodes are present in the list. So, in this example, the dentry of 'b' would
have its
parent set to the inode of 'a'. So if 'a' gets zero refed first (as part of
inode table cleanup) and then 'b' has to zero refed, then dentry_unset is
called on
the dentry of 'b' and it further goes on to call inode_unref on b's parent
which is
'a'. In this situation, GF_ASSERT would be called as the refcount of 'a' has
been
already set to zero.

So, return the inode (in the function inode_unref without doing anything) if
the
inode table cleanup has already started and inode's refcount is zero.


Version-Release number of selected component (if applicable):


How reproducible:

This might happen when glfs_fini is called from a gfapi based process.

Steps to Reproduce:
1.
2.
3.

Actual results:


Expected results:


Additional info:

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.


More information about the Bugs mailing list