Whamcloud - gitweb
max offset patch for request headers,
authorbraam <braam>
Tue, 5 Mar 2002 18:13:18 +0000 (18:13 +0000)
committerbraam <braam>
Tue, 5 Mar 2002 18:13:18 +0000 (18:13 +0000)
missing obd_echo

lustre/include/linux/obd_echo.h [new file with mode: 0644]

diff --git a/lustre/include/linux/obd_echo.h b/lustre/include/linux/obd_echo.h
new file mode 100644 (file)
index 0000000..c5a98c3
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef _OBD_ECHO_H
+#define _OBD_ECHO_H
+/*
+ * Copyright (C) 2001  Cluster File Systems, Inc.
+ *
+ * This code is issued under the GNU General Public License.
+ * See the file COPYING in this distribution
+ */
+
+
+#ifndef OBD_ECHO_DEVICENAME
+#define OBD_ECHO_DEVICENAME "obdecho"
+#endif
+
+struct echo_obd {
+       char *eo_fstype;
+        struct super_block *eo_sb;
+       struct vfsmount *eo_vfsmnt;
+       struct run_ctxt  eo_ctxt;
+       spinlock_t eo_lock;
+       __u64 eo_lastino;
+       struct file_operations *eo_fop; 
+       struct inode_operations *eo_iop;
+       struct address_space_operations *eo_aops;
+};
+
+
+extern struct obd_ops echo_obd_ops;
+
+#endif
+