Whamcloud - gitweb
b=19505 changelogs - distinguish between SETATTR and [acm]time changes
[fs/lustre-release.git] / lustre / fid / fid_internal.h
index 3d0f604..03c5227 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
 
 #include <libcfs/libcfs.h>
 
-#include <linux/types.h>
-
 #ifdef __KERNEL__
 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. */
@@ -62,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. */
@@ -74,11 +76,19 @@ 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);
+                    const struct lu_env *env,
+                    struct thandle *th);
 
 int seq_store_read(struct lu_server_seq *seq,
                    const struct lu_env *env);
 
+struct thandle * seq_store_trans_start(struct lu_server_seq *seq,
+                                       const struct lu_env *env,
+                                       int credits);
+void seq_store_trans_stop(struct lu_server_seq *seq,
+                          const struct lu_env *env,
+                          struct thandle *th);
+
 #ifdef LPROCFS
 extern struct lprocfs_vars seq_server_proc_list[];
 extern struct lprocfs_vars seq_client_proc_list[];