From: Ilya Dryomov Date: Mon, 17 Nov 2014 18:45:24 +0000 (+0300) Subject: libceph: fixup includes in pagelist.h X-Git-Tag: Ubuntu-5.2.0-15.16~12213^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=84a1d2d1ecd9ae2fc1ae51d8529090000e88a210;p=mirror_ubuntu-eoan-kernel.git 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 --- 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 @@ #ifndef __FS_CEPH_PAGELIST_H #define __FS_CEPH_PAGELIST_H -#include +#include #include +#include +#include struct ceph_pagelist { struct list_head head;