diff options
author | Eric Biggers <ebiggers@google.com> | 2020-01-04 12:59:49 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-01-04 13:55:09 -0800 |
commit | b16155a0b01ae999add72b2ad2791b9c66285880 (patch) | |
tree | 388609aec8913e80f86fc6bc59e9fb11e5f0723c /fs/direct-io.c | |
parent | e0153fc2c7606f101392b682e720a7a456d6c766 (diff) | |
download | linux-stable-b16155a0b01ae999add72b2ad2791b9c66285880.tar.gz linux-stable-b16155a0b01ae999add72b2ad2791b9c66285880.tar.bz2 linux-stable-b16155a0b01ae999add72b2ad2791b9c66285880.zip |
fs/direct-io.c: include fs/internal.h for missing prototype
Include fs/internal.h to address the following 'sparse' warning:
fs/direct-io.c:591:5: warning: symbol 'sb_init_dio_done_wq' was not declared. Should it be static?
Link: http://lkml.kernel.org/r/20191209234544.128302-1-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/direct-io.c')
-rw-r--r-- | fs/direct-io.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/direct-io.c b/fs/direct-io.c index 0ec4f270139f..00b4d15bb811 100644 --- a/fs/direct-io.c +++ b/fs/direct-io.c @@ -39,6 +39,8 @@ #include <linux/atomic.h> #include <linux/prefetch.h> +#include "internal.h" + /* * How many user pages to map in one call to get_user_pages(). This determines * the size of a structure in the slab cache |