You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some eagerness and other flags might in fact be required for other flags. For example, eager rmdir and eager unlink have a prerequisite on inaccuratestat and cachemissing being turned on. Otherwise, getattr will return the true stat information for the backing filesystem. Since libfuse itself will do a getattr immediately following delete, this is disastrous (the existence of the file is then cached by libfuse, causing e.g. future new create operations on the same name to fail).
The text was updated successfully, but these errors were encountered:
Some eagerness and other flags might in fact be required for other flags. For example, eager rmdir and eager unlink have a prerequisite on inaccuratestat and cachemissing being turned on. Otherwise, getattr will return the true stat information for the backing filesystem. Since libfuse itself will do a getattr immediately following delete, this is disastrous (the existence of the file is then cached by libfuse, causing e.g. future new create operations on the same name to fail).
The text was updated successfully, but these errors were encountered: