From 3aa14c93be47d4ea94626ae9e7d9ad597a2bda4a Mon Sep 17 00:00:00 2001 From: Benjamin Levy Date: Wed, 8 Apr 2026 15:38:11 -0400 Subject: [PATCH] hyperfs: add `simple_statfs` --- src/hyperfs/hyperfs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hyperfs/hyperfs.c b/src/hyperfs/hyperfs.c index 35be2fe..675a6f0 100644 --- a/src/hyperfs/hyperfs.c +++ b/src/hyperfs/hyperfs.c @@ -1470,6 +1470,7 @@ static const struct super_operations hyperfs_super_operations = { .put_super = hyperfs_put_super, .show_options = hyperfs_show_options, .drop_inode = generic_delete_inode, + .statfs = simple_statfs, }; static void hyperfs_d_release(struct dentry *dentry)