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
btrfs qgroup clear-stale calls sync (via btrfs_util_sync_fd()) in cmd/qgroup.c line 2213 before figuring out whether quotas are enabled at all (in line 2219).
This causes unnecessary delays on a system which does not enable quotas, but which uses tools which call this quota-related command. Could you please find out whether quotas are enabled first?
The text was updated successfully, but these errors were encountered:
If qgroups are not enabled the 'clear-stale' command unconditionally
calls sync on the whole filesystem, which is unnecessary and can slow
down the system. Do a check first if qgroups are enabled.
Issue: #942
Signed-off-by: David Sterba <[email protected]>
If qgroups are not enabled the 'clear-stale' command unconditionally
calls sync on the whole filesystem, which is unnecessary and can slow
down the system. Do a check first if qgroups are enabled.
Issue: #942
Signed-off-by: David Sterba <[email protected]>
btrfs qgroup clear-stale
calls sync (viabtrfs_util_sync_fd()
) in cmd/qgroup.c line 2213 before figuring out whether quotas are enabled at all (in line 2219).This causes unnecessary delays on a system which does not enable quotas, but which uses tools which call this quota-related command. Could you please find out whether quotas are enabled first?
The text was updated successfully, but these errors were encountered: