Commit be297968 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

mm: only include blk_types in swap.h if CONFIG_SWAP is enabled

It's only needed for the CONFIG_SWAP-only use of bio_end_io_t.

Because CONFIG_SWAP implies CONFIG_BLOCK this will allow to drop some
ifdefs in blk_types.h.

Instead we'll need to add a few explicit includes that were implicit
before, though.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
parent 9f082171
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#define __LNET_TYPES_H__ #define __LNET_TYPES_H__
#include <linux/types.h> #include <linux/types.h>
#include <linux/bvec.h>
/** \addtogroup lnet /** \addtogroup lnet
* @{ * @{
......
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
#include <linux/pagemap.h> #include <linux/pagemap.h>
/* current_is_kswapd() */ /* current_is_kswapd() */
#include <linux/swap.h> #include <linux/swap.h>
#include <linux/bvec.h>
#define DEBUG_SUBSYSTEM S_LLITE #define DEBUG_SUBSYSTEM S_LLITE
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <linux/buffer_head.h> #include <linux/buffer_head.h>
#include <linux/writeback.h> #include <linux/writeback.h>
#include <linux/bit_spinlock.h> #include <linux/bit_spinlock.h>
#include <linux/bio.h>
#include "aops.h" #include "aops.h"
#include "attrib.h" #include "attrib.h"
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <linux/buffer_head.h> #include <linux/buffer_head.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/swap.h> #include <linux/swap.h>
#include <linux/bio.h>
#include "attrib.h" #include "attrib.h"
#include "aops.h" #include "aops.h"
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include <linux/quotaops.h> #include <linux/quotaops.h>
#include <linux/swap.h> #include <linux/swap.h>
#include <linux/uio.h> #include <linux/uio.h>
#include <linux/bio.h>
int reiserfs_commit_write(struct file *f, struct page *page, int reiserfs_commit_write(struct file *f, struct page *page,
unsigned from, unsigned to); unsigned from, unsigned to);
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
* Copyright (C) 2006 Ingo Molnar <mingo@elte.hu> * Copyright (C) 2006 Ingo Molnar <mingo@elte.hu>
* *
*/ */
#include <linux/bvec.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/file.h> #include <linux/file.h>
#include <linux/pagemap.h> #include <linux/pagemap.h>
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/atomic.h> #include <linux/atomic.h>
#include <linux/page-flags.h> #include <linux/page-flags.h>
#include <linux/blk_types.h>
#include <asm/page.h> #include <asm/page.h>
struct notifier_block; struct notifier_block;
...@@ -352,6 +351,9 @@ extern int kswapd_run(int nid); ...@@ -352,6 +351,9 @@ extern int kswapd_run(int nid);
extern void kswapd_stop(int nid); extern void kswapd_stop(int nid);
#ifdef CONFIG_SWAP #ifdef CONFIG_SWAP
#include <linux/blk_types.h> /* for bio_end_io_t */
/* linux/mm/page_io.c */ /* linux/mm/page_io.c */
extern int swap_readpage(struct page *); extern int swap_readpage(struct page *);
extern int swap_writepage(struct page *page, struct writeback_control *wbc); extern int swap_writepage(struct page *page, struct writeback_control *wbc);
......
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