Whamcloud - gitweb
ORNL-2 Enable OBD_CONNECT_ATTRFID supporting on lustre-2.x
[fs/lustre-release.git] / lustre / fid / fid_internal.h
index 2aec259..96fb114 100644 (file)
@@ -16,8 +16,8 @@
  * in the LICENSE file that accompanied this code).
  *
  * You should have received a copy of the GNU General Public License
- * version 2 along with this program; If not, see [sun.com URL with a
- * copy of GPLv2].
+ * version 2 along with this program; If not, see
+ * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
  *
  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  * CA 95054 USA or visit www.sun.com if you need additional information or
@@ -26,7 +26,7 @@
  * GPL HEADER END
  */
 /*
- * Copyright  2008 Sun Microsystems, Inc. All rights reserved
+ * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
  * Use is subject to license terms.
  */
 /*
 struct seq_thread_info {
         struct req_capsule     *sti_pill;
         struct txn_param        sti_txn;
-        struct lu_range         sti_space;
+        struct lu_seq_range     sti_space;
         struct lu_buf           sti_buf;
 };
 
+enum {
+        SEQ_TXN_STORE_CREDITS = 20
+};
+
 extern struct lu_context_key seq_thread_key;
 
 /* Functions used internally in module. */
@@ -60,7 +64,7 @@ int seq_client_alloc_super(struct lu_client_seq *seq,
                            const struct lu_env *env);
 
 int seq_client_replay_super(struct lu_client_seq *seq,
-                            struct lu_range *range,
+                            struct lu_seq_range *range,
                             const struct lu_env *env);
 
 /* Store API functions. */
@@ -71,12 +75,12 @@ int seq_store_init(struct lu_server_seq *seq,
 void seq_store_fini(struct lu_server_seq *seq,
                     const struct lu_env *env);
 
-int seq_store_write(struct lu_server_seq *seq,
-                    const struct lu_env *env);
-
 int seq_store_read(struct lu_server_seq *seq,
                    const struct lu_env *env);
 
+int seq_store_update(const struct lu_env *env, struct lu_server_seq *seq,
+                     struct lu_seq_range *out, int sync);
+
 #ifdef LPROCFS
 extern struct lprocfs_vars seq_server_proc_list[];
 extern struct lprocfs_vars seq_client_proc_list[];