From 38fc683d33777e0e32b2aab82e3d7cb6d0b87874 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Beh=C3=BAn?= Date: Fri, 6 Oct 2017 16:56:07 +0200 Subject: [PATCH] fs: Set .opendir to fs_opendir_unsupported for btrfs Otherwise fs_opendir will fault. Signed-off-by: Marek Behun --- fs/fs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fs/fs.c b/fs/fs.c index 84349f3..9c4d67f 100644 --- a/fs/fs.c +++ b/fs/fs.c @@ -233,6 +233,7 @@ static struct fstype_info fstypes[] = { .read = btrfs_read, .write = fs_write_unsupported, .uuid = btrfs_uuid, + .opendir = fs_opendir_unsupported, }, #endif {