diff options
| author | Jens Axboe <jens.axboe@oracle.com> | 2010-04-29 14:33:35 -0400 |
|---|---|---|
| committer | Jens Axboe <jens.axboe@oracle.com> | 2010-04-29 14:33:35 -0400 |
| commit | 5477d0face8a3ba4e9a1e7283692fff9c92f8e5e (patch) | |
| tree | 59bdad300f2be01911f9120e349b22664f199387 | |
| parent | 79dba2eaa771c3173957eccfd288e0e0d12e4d3f (diff) | |
fs: fs/super.c needs to include backing-dev.h for !CONFIG_BLOCK
When CONFIG_BLOCK is set, it ends up getting backing-dev.h included.
But for !CONFIG_BLOCK, it isn't so lucky. The proper thing to do is
include <linux/backing-dev.h> directly from the file it's used from,
so do that.
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
| -rw-r--r-- | fs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/super.c b/fs/super.c index dc72491a19f9..1527e6a0ee35 100644 --- a/fs/super.c +++ b/fs/super.c | |||
| @@ -37,6 +37,7 @@ | |||
| 37 | #include <linux/kobject.h> | 37 | #include <linux/kobject.h> |
| 38 | #include <linux/mutex.h> | 38 | #include <linux/mutex.h> |
| 39 | #include <linux/file.h> | 39 | #include <linux/file.h> |
| 40 | #include <linux/backing-dev.h> | ||
| 40 | #include <asm/uaccess.h> | 41 | #include <asm/uaccess.h> |
| 41 | #include "internal.h" | 42 | #include "internal.h" |
| 42 | 43 | ||
