]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
syntax fixes builds now
authorpatiencew <patiencew@29311d96-e01e-0410-9327-a35deaab8ce9>
Tue, 16 Oct 2007 19:30:43 +0000 (19:30 +0000)
committerpatiencew <patiencew@29311d96-e01e-0410-9327-a35deaab8ce9>
Tue, 16 Oct 2007 19:30:43 +0000 (19:30 +0000)
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1954 29311d96-e01e-0410-9327-a35deaab8ce9

trunk/ceph/kernel/monmap.h

index b19794515b6337366efbf93f321694e9cd6d5068..2f60c8a0c343666d853891936e792c6955e1d962 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef _FS_CEPH_MONMAP_H
 #define _FS_CEPH_MONMAP_H
 
+#include <linux/uio.h>
+
 /*
  * monitor map
  */
@@ -11,7 +13,7 @@ struct ceph_monmap {
   struct ceph_entity_inst m_mon_inst;
 };
 
-extern int ceph_monmap_pick_mon(ceph_monmap *m);
-extern int ceph_monmap_decode(ceph_monmap *m, iovec *v);
+extern int ceph_monmap_pick_mon(struct ceph_monmap *m);
+extern int ceph_monmap_decode(struct ceph_monmap *m, struct kvec *v);
 
 #endif