aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@redhat.com>2014-11-17 13:45:24 -0500
committerIlya Dryomov <idryomov@redhat.com>2014-12-17 12:09:53 -0500
commit84a1d2d1ecd9ae2fc1ae51d8529090000e88a210 (patch)
treeb870bb3bba834ca4aa10cb6997fc003a5e9bfe3d
parent65a22662bfe1a84d72b9bbd9146b6782b9e53478 (diff)
libceph: fixup includes in pagelist.h
pagelist.h needs to include linux/types.h and asm/byteorder.h and not rely on other headers pulling yet another set of headers. Signed-off-by: Ilya Dryomov <idryomov@redhat.com>
-rw-r--r--include/linux/ceph/pagelist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/ceph/pagelist.h b/include/linux/ceph/pagelist.h
index 5f871d84ddce..13d71fe18b0c 100644
--- a/include/linux/ceph/pagelist.h
+++ b/include/linux/ceph/pagelist.h
@@ -1,8 +1,10 @@
1#ifndef __FS_CEPH_PAGELIST_H 1#ifndef __FS_CEPH_PAGELIST_H
2#define __FS_CEPH_PAGELIST_H 2#define __FS_CEPH_PAGELIST_H
3 3
4#include <linux/list.h> 4#include <asm/byteorder.h>
5#include <linux/atomic.h> 5#include <linux/atomic.h>
6#include <linux/list.h>
7#include <linux/types.h>
6 8
7struct ceph_pagelist { 9struct ceph_pagelist {
8 struct list_head head; 10 struct list_head head;