Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+3 -1
+3 -1
include/linux/ceph/pagelist.h
··· 1 1 #ifndef __FS_CEPH_PAGELIST_H 2 2 #define __FS_CEPH_PAGELIST_H 3 3 4 - #include <linux/list.h> 4 + #include <asm/byteorder.h> 5 5 #include <linux/atomic.h> 6 + #include <linux/list.h> 7 + #include <linux/types.h> 6 8 7 9 struct ceph_pagelist { 8 10 struct list_head head;