kernel: Fix compilation (#520)

The definiton of fsnotify_add_mark changed multiple times, once in 4.11-rc2, once in 6.9-rc1, so older kernels still need to fix.
This commit is contained in:
TwinbornPlate75
2025-11-02 21:30:12 +08:00
committed by GitHub
parent f87066473b
commit 9db87ae630

View File

@@ -70,8 +70,12 @@ static int add_mark_on_inode(struct inode *inode, u32 mask,
fsnotify_init_mark(m, g); fsnotify_init_mark(m, g);
m->mask = mask; m->mask = mask;
ret = fsnotify_add_inode_mark(m, inode, 0); ret = fsnotify_add_inode_mark(m, inode, 0);
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
fsnotify_init_mark(m, g);
m->mask = mask;
ret = fsnotify_add_mark(m, inode, NULL, 0);
#else #else
fsnotify_init_mark(m, m_free); fsnotify_init_mark(m, g, m_free);
m->mask = mask; m->mask = mask;
ret = fsnotify_add_mark(m, g, inode, NULL, 0); ret = fsnotify_add_mark(m, g, inode, NULL, 0);
#endif #endif