aboutsummaryrefslogtreecommitdiffstats
path: root/net/ceph
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2016-06-07 21:57:15 +0200
committerIlya Dryomov <idryomov@gmail.com>2016-07-28 02:55:35 +0200
commitb2aa5d0bc86cb901cc6c8737cfff66360cbff00c (patch)
tree317ea3ba399ae9eb004b6552cddeb561190101ec /net/ceph
parentLinux 4.7 (diff)
downloadlinux-dev-b2aa5d0bc86cb901cc6c8737cfff66360cbff00c.tar.xz
linux-dev-b2aa5d0bc86cb901cc6c8737cfff66360cbff00c.zip
libceph: fix some missing includes
- decode.h needs slab.h for kmalloc() - osd_client.h needs msgpool.h for struct ceph_msgpool - msgpool.h doesn't need messenger.h Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net/ceph')
-rw-r--r--net/ceph/msgpool.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ceph/msgpool.c b/net/ceph/msgpool.c
index ddec1c10ac80..aaed59a47b1d 100644
--- a/net/ceph/msgpool.c
+++ b/net/ceph/msgpool.c
@@ -5,6 +5,7 @@
#include <linux/types.h>
#include <linux/vmalloc.h>
+#include <linux/ceph/messenger.h>
#include <linux/ceph/msgpool.h>
static void *msgpool_alloc(gfp_t gfp_mask, void *arg)