summaryrefslogtreecommitdiff
path: root/smoketest/scripts/system
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2026-05-02 20:36:32 +0200
committerChristian Breunig <christian@breunig.cc>2026-05-02 20:36:32 +0200
commit733a9f65d4e159f1539280e05ce3d6bcf5b499d7 (patch)
tree32a498736e3b210dcd652560da0c5d7814c47f16 /smoketest/scripts/system
parent0bfde189978dec10de9994837c71bc795743aea7 (diff)
downloadvyos-1x-733a9f65d4e159f1539280e05ce3d6bcf5b499d7.tar.gz
vyos-1x-733a9f65d4e159f1539280e05ce3d6bcf5b499d7.zip
Kernel: T8147: remove dependency on Kernel CONFIG_INOTIFY_STACKFS option
The inotify support for overlayfs is no longer needed. Native upstream support landed in kernel 4.16 (commit 31747eda41ef/764baba80168 in 2018, which made overlayfs hash inodes by their lower inode so fsnotify works on overlay mounts), and kernel 6.8 (commit bc2473c90fca in 2023) extended it so fsnotify generates events for operations on the real underlying files of an overlay.
Diffstat (limited to 'smoketest/scripts/system')
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py
index d3de78e4c..3cc22da07 100755
--- a/smoketest/scripts/system/test_kernel_options.py
+++ b/smoketest/scripts/system/test_kernel_options.py
@@ -146,7 +146,7 @@ class TestKernelModules(unittest.TestCase):
self.assertTrue(tmp)
def test_inotify_stackfs(self):
- for option in ['CONFIG_INOTIFY_USER', 'CONFIG_INOTIFY_STACKFS']:
+ for option in ['CONFIG_INOTIFY_USER']:
tmp = re.findall(f'{option}=y', self._config_data)
self.assertTrue(tmp)