Commit a9e60c36 authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] mountable futexfs

Missing kill_sb member meant that futexfs died
a death when someone tried to mount it.
parent 2e82fa86
......@@ -468,6 +468,7 @@ futexfs_get_sb(struct file_system_type *fs_type,
static struct file_system_type futex_fs_type = {
.name = "futexfs",
.get_sb = futexfs_get_sb,
.kill_sb = kill_anon_super,
};
static int __init init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment