Linus, The following changes since commit 19139539207934aef6335bdef09c9e4bd70d1808: zonefs: Fix management of open zones (2022-04-21 08:37:35 +0900) are available in the Git repository at: ssh://git@xxxxxxxxxxxxxxxxxxx/pub/scm/linux/kernel/git/dlemoal/zonefs tags/zonefs-5.19-rc1 for you to fetch changes up to 31a644b3c2ae6d0c47e84614ded3ce9bef1adb7a: documentation: zonefs: Document sysfs attributes (2022-04-26 14:53:06 +0900) Note: I made a mistake during this PR preparation and inadvertantly deleted the for-5.19 branch used for this PR. I recreated it and prepared the PR using this newly pushed for-5.19 branch. All patches have been in linux-next for a while. I hope this does not trigger any problem on your end. ---------------------------------------------------------------- zonefs changes for 5.19-rc1 This set of patches improve zonefs open sequential file accounting and adds accounting for active sequential files to allow the user to handle the maximum number of active zones of an NVMe ZNS drive. sysfs attributes for both open and active sequential files are also added to facilitate access to this information from applications without resorting to inspecting the block device limits. ---------------------------------------------------------------- Damien Le Moal (6): zonefs: Rename super block information fields zonefs: Always do seq file write open accounting zonefs: Export open zone resource information through sysfs zonefs: Add active seq file accounting documentation: zonefs: Cleanup the mount options section documentation: zonefs: Document sysfs attributes Documentation/filesystems/zonefs.rst | 52 +++++++++- fs/zonefs/Makefile | 2 +- fs/zonefs/super.c | 186 ++++++++++++++++++++++++++--------- fs/zonefs/sysfs.c | 139 ++++++++++++++++++++++++++ fs/zonefs/zonefs.h | 18 +++- 5 files changed, 344 insertions(+), 53 deletions(-) create mode 100644 fs/zonefs/sysfs.c