From 2d77afbea752139ad3b94f7bf8b410b4e167a5df Mon Sep 17 00:00:00 2001 From: braam Date: Tue, 5 Mar 2002 18:13:18 +0000 Subject: [PATCH] max offset patch for request headers, missing obd_echo --- lustre/include/linux/obd_echo.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 lustre/include/linux/obd_echo.h diff --git a/lustre/include/linux/obd_echo.h b/lustre/include/linux/obd_echo.h new file mode 100644 index 0000000..c5a98c3 --- /dev/null +++ b/lustre/include/linux/obd_echo.h @@ -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 + -- 1.8.3.1