From 194e56234a58fa39c22aada5210f06ddf62c69d5 Mon Sep 17 00:00:00 2001 From: Richard Yao Date: Fri, 20 Jun 2014 13:23:15 -0400 Subject: [PATCH] Include sys/taskq.h in linux/vfs_compat.h We should have included sys/taskq.h directly because we use the taskq code here, but we instead had files that included sys/taskq.h also include sys/kmem.h, which happened to include sys/taskq.h. sys/kmem.h no longer does this, so we must define the include as we should have done in the first place. Signed-off-by: Richard Yao Signed-off-by: Brian Behlendorf Closes #2411 --- include/linux/vfs_compat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/vfs_compat.h b/include/linux/vfs_compat.h index 37121b623f69..098cf05f3c96 100644 --- a/include/linux/vfs_compat.h +++ b/include/linux/vfs_compat.h @@ -26,6 +26,8 @@ #ifndef _ZFS_VFS_H #define _ZFS_VFS_H +#include + /* * 2.6.28 API change, * Added insert_inode_locked() helper function, prior to this most callers