From bd6eb7a68dfa796e4029c8d75219b0a13af9e841 Mon Sep 17 00:00:00 2001 From: patiencew Date: Tue, 16 Oct 2007 19:38:36 +0000 Subject: [PATCH] syntax fixes builds now git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1955 29311d96-e01e-0410-9327-a35deaab8ce9 --- trunk/ceph/kernel/mds_client.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/trunk/ceph/kernel/mds_client.h b/trunk/ceph/kernel/mds_client.h index 6c7296aba4c10..764d7ccd6bdf6 100644 --- a/trunk/ceph/kernel/mds_client.h +++ b/trunk/ceph/kernel/mds_client.h @@ -1,6 +1,9 @@ #ifndef _FS_CEPH_MDS_CLIENT_H #define _FS_CEPH_MDS_CLIENT_H +#include +#include "kmsg.h" + /* * state associated with an individual MDS<->client session */ @@ -11,7 +14,7 @@ struct ceph_mds_session { struct ceph_mds_request { __u64 r_tid; - ceph_message *r_msg; + struct ceph_message *r_msg; __u8 r_idempotent; __u32 r_mds[4]; /* set of mds's with whom request may be outstanding */ @@ -32,7 +35,7 @@ struct ceph_mds_client { int s_max_mds_sessions; /* size of s_mds_sessions array */ __u64 s_last_mds_tid; /* id of last mds request */ - struct radix_tree s_mds_requests; /* in-flight mds requests */ + struct radix_tree_root s_mds_requests; /* in-flight mds requests */ }; -- 2.39.5